package gcs
import (
"alpha.dagger.io/alpine"
"alpha.dagger.io/dagger/op"
"alpha.dagger.io/gcp"
)
#List: {
// GCP Config
config: gcp.#Config
// Target GCP URL (e.g. gs://<bucket-name>/<path>/<sub-path>)
target?: string
contents: {
string
#up: [
op.#Load & {
from: gcp.#GCloud & {
"config": config
}
},
op.#Exec & {
args: [
"/bin/bash",
"--noprofile",
"--norc",
"-eo",
"pipefail",
"-c",
#"""
gsutil ls -r \#(target) > /contents
"""#,
]
op.#Export & {
source: "/contents"
format: "string"
#VerifyGCS: {
file: string
target: string
lists: #List & {
"target": target
test: #up: [
from: alpine.#Image & {
package: bash: "~5.1"
op.#WriteFile & {
dest: "/test"
content: lists.contents
always: true
"grep -q \(file) /test",