1. Packages
  2. Google Cloud Native
  3. API Docs
  4. cloudbuild
  5. cloudbuild/v1
  6. Build

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.cloudbuild/v1.Build

Explore with Pulumi AI

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

Starts a build with the specified configuration. This method returns a long-running Operation, which includes the build ID. Pass the build ID to GetBuild to determine the build status (such as SUCCESS or FAILURE). Auto-naming is currently not supported for this resource. Note - this resource’s API doesn’t support deletion. When deleted, the resource will persist on Google Cloud even though it will be deleted from Pulumi state.

Create Build Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Build(name: string, args: BuildArgs, opts?: CustomResourceOptions);
@overload
def Build(resource_name: str,
          args: BuildInitArgs,
          opts: Optional[ResourceOptions] = None)

@overload
def Build(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          project_id: Optional[str] = None,
          steps: Optional[Sequence[BuildStepArgs]] = None,
          logs_bucket: Optional[str] = None,
          secrets: Optional[Sequence[SecretArgs]] = None,
          artifacts: Optional[ArtifactsArgs] = None,
          options: Optional[BuildOptionsArgs] = None,
          project: Optional[str] = None,
          images: Optional[Sequence[str]] = None,
          queue_ttl: Optional[str] = None,
          location: Optional[str] = None,
          service_account: Optional[str] = None,
          source: Optional[SourceArgs] = None,
          available_secrets: Optional[SecretsArgs] = None,
          substitutions: Optional[Mapping[str, str]] = None,
          tags: Optional[Sequence[str]] = None,
          timeout: Optional[str] = None)
func NewBuild(ctx *Context, name string, args BuildArgs, opts ...ResourceOption) (*Build, error)
public Build(string name, BuildArgs args, CustomResourceOptions? opts = null)
public Build(String name, BuildArgs args)
public Build(String name, BuildArgs args, CustomResourceOptions options)
type: google-native:cloudbuild/v1:Build
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. BuildArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. BuildInitArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. BuildArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. BuildArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. BuildArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var buildResource = new GoogleNative.CloudBuild.V1.Build("buildResource", new()
{
    ProjectId = "string",
    Steps = new[]
    {
        new GoogleNative.CloudBuild.V1.Inputs.BuildStepArgs
        {
            Name = "string",
            Env = new[]
            {
                "string",
            },
            Args = new[]
            {
                "string",
            },
            AutomapSubstitutions = false,
            Dir = "string",
            Entrypoint = "string",
            AllowExitCodes = new[]
            {
                0,
            },
            Id = "string",
            AllowFailure = false,
            Script = "string",
            SecretEnv = new[]
            {
                "string",
            },
            Timeout = "string",
            Volumes = new[]
            {
                new GoogleNative.CloudBuild.V1.Inputs.VolumeArgs
                {
                    Name = "string",
                    Path = "string",
                },
            },
            WaitFor = new[]
            {
                "string",
            },
        },
    },
    LogsBucket = "string",
    Secrets = new[]
    {
        new GoogleNative.CloudBuild.V1.Inputs.SecretArgs
        {
            KmsKeyName = "string",
            SecretEnv = 
            {
                { "string", "string" },
            },
        },
    },
    Artifacts = new GoogleNative.CloudBuild.V1.Inputs.ArtifactsArgs
    {
        Images = new[]
        {
            "string",
        },
        MavenArtifacts = new[]
        {
            new GoogleNative.CloudBuild.V1.Inputs.MavenArtifactArgs
            {
                ArtifactId = "string",
                GroupId = "string",
                Path = "string",
                Repository = "string",
                Version = "string",
            },
        },
        NpmPackages = new[]
        {
            new GoogleNative.CloudBuild.V1.Inputs.NpmPackageArgs
            {
                PackagePath = "string",
                Repository = "string",
            },
        },
        Objects = new GoogleNative.CloudBuild.V1.Inputs.ArtifactObjectsArgs
        {
            Location = "string",
            Paths = new[]
            {
                "string",
            },
        },
        PythonPackages = new[]
        {
            new GoogleNative.CloudBuild.V1.Inputs.PythonPackageArgs
            {
                Paths = new[]
                {
                    "string",
                },
                Repository = "string",
            },
        },
    },
    Options = new GoogleNative.CloudBuild.V1.Inputs.BuildOptionsArgs
    {
        AutomapSubstitutions = false,
        DefaultLogsBucketBehavior = GoogleNative.CloudBuild.V1.BuildOptionsDefaultLogsBucketBehavior.DefaultLogsBucketBehaviorUnspecified,
        DiskSizeGb = "string",
        DynamicSubstitutions = false,
        Env = new[]
        {
            "string",
        },
        LogStreamingOption = GoogleNative.CloudBuild.V1.BuildOptionsLogStreamingOption.StreamDefault,
        Logging = GoogleNative.CloudBuild.V1.BuildOptionsLogging.LoggingUnspecified,
        MachineType = GoogleNative.CloudBuild.V1.BuildOptionsMachineType.Unspecified,
        Pool = new GoogleNative.CloudBuild.V1.Inputs.PoolOptionArgs
        {
            Name = "string",
        },
        RequestedVerifyOption = GoogleNative.CloudBuild.V1.BuildOptionsRequestedVerifyOption.NotVerified,
        SecretEnv = new[]
        {
            "string",
        },
        SourceProvenanceHash = new[]
        {
            GoogleNative.CloudBuild.V1.BuildOptionsSourceProvenanceHashItem.None,
        },
        SubstitutionOption = GoogleNative.CloudBuild.V1.BuildOptionsSubstitutionOption.MustMatch,
        Volumes = new[]
        {
            new GoogleNative.CloudBuild.V1.Inputs.VolumeArgs
            {
                Name = "string",
                Path = "string",
            },
        },
        WorkerPool = "string",
    },
    Project = "string",
    Images = new[]
    {
        "string",
    },
    QueueTtl = "string",
    Location = "string",
    ServiceAccount = "string",
    Source = new GoogleNative.CloudBuild.V1.Inputs.SourceArgs
    {
        ConnectedRepository = new GoogleNative.CloudBuild.V1.Inputs.ConnectedRepositoryArgs
        {
            Repository = "string",
            Dir = "string",
            Revision = "string",
        },
        GitSource = new GoogleNative.CloudBuild.V1.Inputs.GitSourceArgs
        {
            Dir = "string",
            Revision = "string",
            Url = "string",
        },
        RepoSource = new GoogleNative.CloudBuild.V1.Inputs.RepoSourceArgs
        {
            BranchName = "string",
            CommitSha = "string",
            Dir = "string",
            InvertRegex = false,
            Project = "string",
            RepoName = "string",
            Substitutions = 
            {
                { "string", "string" },
            },
            TagName = "string",
        },
        StorageSource = new GoogleNative.CloudBuild.V1.Inputs.StorageSourceArgs
        {
            Bucket = "string",
            Generation = "string",
            Object = "string",
            SourceFetcher = GoogleNative.CloudBuild.V1.StorageSourceSourceFetcher.SourceFetcherUnspecified,
        },
        StorageSourceManifest = new GoogleNative.CloudBuild.V1.Inputs.StorageSourceManifestArgs
        {
            Bucket = "string",
            Generation = "string",
            Object = "string",
        },
    },
    AvailableSecrets = new GoogleNative.CloudBuild.V1.Inputs.SecretsArgs
    {
        Inline = new[]
        {
            new GoogleNative.CloudBuild.V1.Inputs.InlineSecretArgs
            {
                EnvMap = 
                {
                    { "string", "string" },
                },
                KmsKeyName = "string",
            },
        },
        SecretManager = new[]
        {
            new GoogleNative.CloudBuild.V1.Inputs.SecretManagerSecretArgs
            {
                Env = "string",
                VersionName = "string",
            },
        },
    },
    Substitutions = 
    {
        { "string", "string" },
    },
    Tags = new[]
    {
        "string",
    },
    Timeout = "string",
});
Copy
example, err := cloudbuild.NewBuild(ctx, "buildResource", &cloudbuild.BuildArgs{
	ProjectId: pulumi.String("string"),
	Steps: cloudbuild.BuildStepArray{
		&cloudbuild.BuildStepArgs{
			Name: pulumi.String("string"),
			Env: pulumi.StringArray{
				pulumi.String("string"),
			},
			Args: pulumi.StringArray{
				pulumi.String("string"),
			},
			AutomapSubstitutions: pulumi.Bool(false),
			Dir:                  pulumi.String("string"),
			Entrypoint:           pulumi.String("string"),
			AllowExitCodes: pulumi.IntArray{
				pulumi.Int(0),
			},
			Id:           pulumi.String("string"),
			AllowFailure: pulumi.Bool(false),
			Script:       pulumi.String("string"),
			SecretEnv: pulumi.StringArray{
				pulumi.String("string"),
			},
			Timeout: pulumi.String("string"),
			Volumes: cloudbuild.VolumeArray{
				&cloudbuild.VolumeArgs{
					Name: pulumi.String("string"),
					Path: pulumi.String("string"),
				},
			},
			WaitFor: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
	},
	LogsBucket: pulumi.String("string"),
	Secrets: cloudbuild.SecretArray{
		&cloudbuild.SecretArgs{
			KmsKeyName: pulumi.String("string"),
			SecretEnv: pulumi.StringMap{
				"string": pulumi.String("string"),
			},
		},
	},
	Artifacts: &cloudbuild.ArtifactsArgs{
		Images: pulumi.StringArray{
			pulumi.String("string"),
		},
		MavenArtifacts: cloudbuild.MavenArtifactArray{
			&cloudbuild.MavenArtifactArgs{
				ArtifactId: pulumi.String("string"),
				GroupId:    pulumi.String("string"),
				Path:       pulumi.String("string"),
				Repository: pulumi.String("string"),
				Version:    pulumi.String("string"),
			},
		},
		NpmPackages: cloudbuild.NpmPackageArray{
			&cloudbuild.NpmPackageArgs{
				PackagePath: pulumi.String("string"),
				Repository:  pulumi.String("string"),
			},
		},
		Objects: &cloudbuild.ArtifactObjectsArgs{
			Location: pulumi.String("string"),
			Paths: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
		PythonPackages: cloudbuild.PythonPackageArray{
			&cloudbuild.PythonPackageArgs{
				Paths: pulumi.StringArray{
					pulumi.String("string"),
				},
				Repository: pulumi.String("string"),
			},
		},
	},
	Options: &cloudbuild.BuildOptionsArgs{
		AutomapSubstitutions:      pulumi.Bool(false),
		DefaultLogsBucketBehavior: cloudbuild.BuildOptionsDefaultLogsBucketBehaviorDefaultLogsBucketBehaviorUnspecified,
		DiskSizeGb:                pulumi.String("string"),
		DynamicSubstitutions:      pulumi.Bool(false),
		Env: pulumi.StringArray{
			pulumi.String("string"),
		},
		LogStreamingOption: cloudbuild.BuildOptionsLogStreamingOptionStreamDefault,
		Logging:            cloudbuild.BuildOptionsLoggingLoggingUnspecified,
		MachineType:        cloudbuild.BuildOptionsMachineTypeUnspecified,
		Pool: &cloudbuild.PoolOptionArgs{
			Name: pulumi.String("string"),
		},
		RequestedVerifyOption: cloudbuild.BuildOptionsRequestedVerifyOptionNotVerified,
		SecretEnv: pulumi.StringArray{
			pulumi.String("string"),
		},
		SourceProvenanceHash: cloudbuild.BuildOptionsSourceProvenanceHashItemArray{
			cloudbuild.BuildOptionsSourceProvenanceHashItemNone,
		},
		SubstitutionOption: cloudbuild.BuildOptionsSubstitutionOptionMustMatch,
		Volumes: cloudbuild.VolumeArray{
			&cloudbuild.VolumeArgs{
				Name: pulumi.String("string"),
				Path: pulumi.String("string"),
			},
		},
		WorkerPool: pulumi.String("string"),
	},
	Project: pulumi.String("string"),
	Images: pulumi.StringArray{
		pulumi.String("string"),
	},
	QueueTtl:       pulumi.String("string"),
	Location:       pulumi.String("string"),
	ServiceAccount: pulumi.String("string"),
	Source: &cloudbuild.SourceArgs{
		ConnectedRepository: &cloudbuild.ConnectedRepositoryArgs{
			Repository: pulumi.String("string"),
			Dir:        pulumi.String("string"),
			Revision:   pulumi.String("string"),
		},
		GitSource: &cloudbuild.GitSourceArgs{
			Dir:      pulumi.String("string"),
			Revision: pulumi.String("string"),
			Url:      pulumi.String("string"),
		},
		RepoSource: &cloudbuild.RepoSourceArgs{
			BranchName:  pulumi.String("string"),
			CommitSha:   pulumi.String("string"),
			Dir:         pulumi.String("string"),
			InvertRegex: pulumi.Bool(false),
			Project:     pulumi.String("string"),
			RepoName:    pulumi.String("string"),
			Substitutions: pulumi.StringMap{
				"string": pulumi.String("string"),
			},
			TagName: pulumi.String("string"),
		},
		StorageSource: &cloudbuild.StorageSourceArgs{
			Bucket:        pulumi.String("string"),
			Generation:    pulumi.String("string"),
			Object:        pulumi.String("string"),
			SourceFetcher: cloudbuild.StorageSourceSourceFetcherSourceFetcherUnspecified,
		},
		StorageSourceManifest: &cloudbuild.StorageSourceManifestArgs{
			Bucket:     pulumi.String("string"),
			Generation: pulumi.String("string"),
			Object:     pulumi.String("string"),
		},
	},
	AvailableSecrets: &cloudbuild.SecretsArgs{
		Inline: cloudbuild.InlineSecretArray{
			&cloudbuild.InlineSecretArgs{
				EnvMap: pulumi.StringMap{
					"string": pulumi.String("string"),
				},
				KmsKeyName: pulumi.String("string"),
			},
		},
		SecretManager: cloudbuild.SecretManagerSecretArray{
			&cloudbuild.SecretManagerSecretArgs{
				Env:         pulumi.String("string"),
				VersionName: pulumi.String("string"),
			},
		},
	},
	Substitutions: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Tags: pulumi.StringArray{
		pulumi.String("string"),
	},
	Timeout: pulumi.String("string"),
})
Copy
var buildResource = new Build("buildResource", BuildArgs.builder()
    .projectId("string")
    .steps(BuildStepArgs.builder()
        .name("string")
        .env("string")
        .args("string")
        .automapSubstitutions(false)
        .dir("string")
        .entrypoint("string")
        .allowExitCodes(0)
        .id("string")
        .allowFailure(false)
        .script("string")
        .secretEnv("string")
        .timeout("string")
        .volumes(VolumeArgs.builder()
            .name("string")
            .path("string")
            .build())
        .waitFor("string")
        .build())
    .logsBucket("string")
    .secrets(SecretArgs.builder()
        .kmsKeyName("string")
        .secretEnv(Map.of("string", "string"))
        .build())
    .artifacts(ArtifactsArgs.builder()
        .images("string")
        .mavenArtifacts(MavenArtifactArgs.builder()
            .artifactId("string")
            .groupId("string")
            .path("string")
            .repository("string")
            .version("string")
            .build())
        .npmPackages(NpmPackageArgs.builder()
            .packagePath("string")
            .repository("string")
            .build())
        .objects(ArtifactObjectsArgs.builder()
            .location("string")
            .paths("string")
            .build())
        .pythonPackages(PythonPackageArgs.builder()
            .paths("string")
            .repository("string")
            .build())
        .build())
    .options(BuildOptionsArgs.builder()
        .automapSubstitutions(false)
        .defaultLogsBucketBehavior("DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIED")
        .diskSizeGb("string")
        .dynamicSubstitutions(false)
        .env("string")
        .logStreamingOption("STREAM_DEFAULT")
        .logging("LOGGING_UNSPECIFIED")
        .machineType("UNSPECIFIED")
        .pool(PoolOptionArgs.builder()
            .name("string")
            .build())
        .requestedVerifyOption("NOT_VERIFIED")
        .secretEnv("string")
        .sourceProvenanceHash("NONE")
        .substitutionOption("MUST_MATCH")
        .volumes(VolumeArgs.builder()
            .name("string")
            .path("string")
            .build())
        .workerPool("string")
        .build())
    .project("string")
    .images("string")
    .queueTtl("string")
    .location("string")
    .serviceAccount("string")
    .source(SourceArgs.builder()
        .connectedRepository(ConnectedRepositoryArgs.builder()
            .repository("string")
            .dir("string")
            .revision("string")
            .build())
        .gitSource(GitSourceArgs.builder()
            .dir("string")
            .revision("string")
            .url("string")
            .build())
        .repoSource(RepoSourceArgs.builder()
            .branchName("string")
            .commitSha("string")
            .dir("string")
            .invertRegex(false)
            .project("string")
            .repoName("string")
            .substitutions(Map.of("string", "string"))
            .tagName("string")
            .build())
        .storageSource(StorageSourceArgs.builder()
            .bucket("string")
            .generation("string")
            .object("string")
            .sourceFetcher("SOURCE_FETCHER_UNSPECIFIED")
            .build())
        .storageSourceManifest(StorageSourceManifestArgs.builder()
            .bucket("string")
            .generation("string")
            .object("string")
            .build())
        .build())
    .availableSecrets(SecretsArgs.builder()
        .inline(InlineSecretArgs.builder()
            .envMap(Map.of("string", "string"))
            .kmsKeyName("string")
            .build())
        .secretManager(SecretManagerSecretArgs.builder()
            .env("string")
            .versionName("string")
            .build())
        .build())
    .substitutions(Map.of("string", "string"))
    .tags("string")
    .timeout("string")
    .build());
Copy
build_resource = google_native.cloudbuild.v1.Build("buildResource",
    project_id="string",
    steps=[{
        "name": "string",
        "env": ["string"],
        "args": ["string"],
        "automap_substitutions": False,
        "dir": "string",
        "entrypoint": "string",
        "allow_exit_codes": [0],
        "id": "string",
        "allow_failure": False,
        "script": "string",
        "secret_env": ["string"],
        "timeout": "string",
        "volumes": [{
            "name": "string",
            "path": "string",
        }],
        "wait_for": ["string"],
    }],
    logs_bucket="string",
    secrets=[{
        "kms_key_name": "string",
        "secret_env": {
            "string": "string",
        },
    }],
    artifacts={
        "images": ["string"],
        "maven_artifacts": [{
            "artifact_id": "string",
            "group_id": "string",
            "path": "string",
            "repository": "string",
            "version": "string",
        }],
        "npm_packages": [{
            "package_path": "string",
            "repository": "string",
        }],
        "objects": {
            "location": "string",
            "paths": ["string"],
        },
        "python_packages": [{
            "paths": ["string"],
            "repository": "string",
        }],
    },
    options={
        "automap_substitutions": False,
        "default_logs_bucket_behavior": google_native.cloudbuild.v1.BuildOptionsDefaultLogsBucketBehavior.DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIED,
        "disk_size_gb": "string",
        "dynamic_substitutions": False,
        "env": ["string"],
        "log_streaming_option": google_native.cloudbuild.v1.BuildOptionsLogStreamingOption.STREAM_DEFAULT,
        "logging": google_native.cloudbuild.v1.BuildOptionsLogging.LOGGING_UNSPECIFIED,
        "machine_type": google_native.cloudbuild.v1.BuildOptionsMachineType.UNSPECIFIED,
        "pool": {
            "name": "string",
        },
        "requested_verify_option": google_native.cloudbuild.v1.BuildOptionsRequestedVerifyOption.NOT_VERIFIED,
        "secret_env": ["string"],
        "source_provenance_hash": [google_native.cloudbuild.v1.BuildOptionsSourceProvenanceHashItem.NONE],
        "substitution_option": google_native.cloudbuild.v1.BuildOptionsSubstitutionOption.MUST_MATCH,
        "volumes": [{
            "name": "string",
            "path": "string",
        }],
        "worker_pool": "string",
    },
    project="string",
    images=["string"],
    queue_ttl="string",
    location="string",
    service_account="string",
    source={
        "connected_repository": {
            "repository": "string",
            "dir": "string",
            "revision": "string",
        },
        "git_source": {
            "dir": "string",
            "revision": "string",
            "url": "string",
        },
        "repo_source": {
            "branch_name": "string",
            "commit_sha": "string",
            "dir": "string",
            "invert_regex": False,
            "project": "string",
            "repo_name": "string",
            "substitutions": {
                "string": "string",
            },
            "tag_name": "string",
        },
        "storage_source": {
            "bucket": "string",
            "generation": "string",
            "object": "string",
            "source_fetcher": google_native.cloudbuild.v1.StorageSourceSourceFetcher.SOURCE_FETCHER_UNSPECIFIED,
        },
        "storage_source_manifest": {
            "bucket": "string",
            "generation": "string",
            "object": "string",
        },
    },
    available_secrets={
        "inline": [{
            "env_map": {
                "string": "string",
            },
            "kms_key_name": "string",
        }],
        "secret_manager": [{
            "env": "string",
            "version_name": "string",
        }],
    },
    substitutions={
        "string": "string",
    },
    tags=["string"],
    timeout="string")
Copy
const buildResource = new google_native.cloudbuild.v1.Build("buildResource", {
    projectId: "string",
    steps: [{
        name: "string",
        env: ["string"],
        args: ["string"],
        automapSubstitutions: false,
        dir: "string",
        entrypoint: "string",
        allowExitCodes: [0],
        id: "string",
        allowFailure: false,
        script: "string",
        secretEnv: ["string"],
        timeout: "string",
        volumes: [{
            name: "string",
            path: "string",
        }],
        waitFor: ["string"],
    }],
    logsBucket: "string",
    secrets: [{
        kmsKeyName: "string",
        secretEnv: {
            string: "string",
        },
    }],
    artifacts: {
        images: ["string"],
        mavenArtifacts: [{
            artifactId: "string",
            groupId: "string",
            path: "string",
            repository: "string",
            version: "string",
        }],
        npmPackages: [{
            packagePath: "string",
            repository: "string",
        }],
        objects: {
            location: "string",
            paths: ["string"],
        },
        pythonPackages: [{
            paths: ["string"],
            repository: "string",
        }],
    },
    options: {
        automapSubstitutions: false,
        defaultLogsBucketBehavior: google_native.cloudbuild.v1.BuildOptionsDefaultLogsBucketBehavior.DefaultLogsBucketBehaviorUnspecified,
        diskSizeGb: "string",
        dynamicSubstitutions: false,
        env: ["string"],
        logStreamingOption: google_native.cloudbuild.v1.BuildOptionsLogStreamingOption.StreamDefault,
        logging: google_native.cloudbuild.v1.BuildOptionsLogging.LoggingUnspecified,
        machineType: google_native.cloudbuild.v1.BuildOptionsMachineType.Unspecified,
        pool: {
            name: "string",
        },
        requestedVerifyOption: google_native.cloudbuild.v1.BuildOptionsRequestedVerifyOption.NotVerified,
        secretEnv: ["string"],
        sourceProvenanceHash: [google_native.cloudbuild.v1.BuildOptionsSourceProvenanceHashItem.None],
        substitutionOption: google_native.cloudbuild.v1.BuildOptionsSubstitutionOption.MustMatch,
        volumes: [{
            name: "string",
            path: "string",
        }],
        workerPool: "string",
    },
    project: "string",
    images: ["string"],
    queueTtl: "string",
    location: "string",
    serviceAccount: "string",
    source: {
        connectedRepository: {
            repository: "string",
            dir: "string",
            revision: "string",
        },
        gitSource: {
            dir: "string",
            revision: "string",
            url: "string",
        },
        repoSource: {
            branchName: "string",
            commitSha: "string",
            dir: "string",
            invertRegex: false,
            project: "string",
            repoName: "string",
            substitutions: {
                string: "string",
            },
            tagName: "string",
        },
        storageSource: {
            bucket: "string",
            generation: "string",
            object: "string",
            sourceFetcher: google_native.cloudbuild.v1.StorageSourceSourceFetcher.SourceFetcherUnspecified,
        },
        storageSourceManifest: {
            bucket: "string",
            generation: "string",
            object: "string",
        },
    },
    availableSecrets: {
        inline: [{
            envMap: {
                string: "string",
            },
            kmsKeyName: "string",
        }],
        secretManager: [{
            env: "string",
            versionName: "string",
        }],
    },
    substitutions: {
        string: "string",
    },
    tags: ["string"],
    timeout: "string",
});
Copy
type: google-native:cloudbuild/v1:Build
properties:
    artifacts:
        images:
            - string
        mavenArtifacts:
            - artifactId: string
              groupId: string
              path: string
              repository: string
              version: string
        npmPackages:
            - packagePath: string
              repository: string
        objects:
            location: string
            paths:
                - string
        pythonPackages:
            - paths:
                - string
              repository: string
    availableSecrets:
        inline:
            - envMap:
                string: string
              kmsKeyName: string
        secretManager:
            - env: string
              versionName: string
    images:
        - string
    location: string
    logsBucket: string
    options:
        automapSubstitutions: false
        defaultLogsBucketBehavior: DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIED
        diskSizeGb: string
        dynamicSubstitutions: false
        env:
            - string
        logStreamingOption: STREAM_DEFAULT
        logging: LOGGING_UNSPECIFIED
        machineType: UNSPECIFIED
        pool:
            name: string
        requestedVerifyOption: NOT_VERIFIED
        secretEnv:
            - string
        sourceProvenanceHash:
            - NONE
        substitutionOption: MUST_MATCH
        volumes:
            - name: string
              path: string
        workerPool: string
    project: string
    projectId: string
    queueTtl: string
    secrets:
        - kmsKeyName: string
          secretEnv:
            string: string
    serviceAccount: string
    source:
        connectedRepository:
            dir: string
            repository: string
            revision: string
        gitSource:
            dir: string
            revision: string
            url: string
        repoSource:
            branchName: string
            commitSha: string
            dir: string
            invertRegex: false
            project: string
            repoName: string
            substitutions:
                string: string
            tagName: string
        storageSource:
            bucket: string
            generation: string
            object: string
            sourceFetcher: SOURCE_FETCHER_UNSPECIFIED
        storageSourceManifest:
            bucket: string
            generation: string
            object: string
    steps:
        - allowExitCodes:
            - 0
          allowFailure: false
          args:
            - string
          automapSubstitutions: false
          dir: string
          entrypoint: string
          env:
            - string
          id: string
          name: string
          script: string
          secretEnv:
            - string
          timeout: string
          volumes:
            - name: string
              path: string
          waitFor:
            - string
    substitutions:
        string: string
    tags:
        - string
    timeout: string
Copy

Build Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Build resource accepts the following input properties:

ProjectId
This property is required.
Changes to this property will trigger replacement.
string
Required. ID of the project.
Steps This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.BuildStep>
The operations to be performed on the workspace.
Artifacts Pulumi.GoogleNative.CloudBuild.V1.Inputs.Artifacts
Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
AvailableSecrets Pulumi.GoogleNative.CloudBuild.V1.Inputs.Secrets
Secrets and secret environment variables.
Images List<string>
A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build status is marked FAILURE.
Location Changes to this property will trigger replacement. string
LogsBucket string
Cloud Storage bucket where logs should be written (see Bucket Name Requirements). Logs file names will be of the format ${logs_bucket}/log-${build_id}.txt.
Options Pulumi.GoogleNative.CloudBuild.V1.Inputs.BuildOptions
Special options for this build.
Project Changes to this property will trigger replacement. string
QueueTtl string
TTL in queue for this build. If provided and the build is enqueued longer than this value, the build will expire and the build status will be EXPIRED. The TTL starts ticking from create_time.
Secrets List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.Secret>
Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secrets to configure builds to access secrets from Secret Manager. For instructions, see: https://cloud.google.com/cloud-build/docs/securing-builds/use-secrets
ServiceAccount string
IAM service account whose credentials will be used at build runtime. Must be of the format projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}. ACCOUNT can be email address or uniqueId of the service account.
Source Pulumi.GoogleNative.CloudBuild.V1.Inputs.Source
The location of the source files to build.
Substitutions Dictionary<string, string>
Substitutions data for Build resource.
Tags List<string>
Tags for annotation of a Build. These are not docker tags.
Timeout string
Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be TIMEOUT. timeout starts ticking from startTime. Default time is 60 minutes.
ProjectId
This property is required.
Changes to this property will trigger replacement.
string
Required. ID of the project.
Steps This property is required. []BuildStepArgs
The operations to be performed on the workspace.
Artifacts ArtifactsArgs
Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
AvailableSecrets SecretsArgs
Secrets and secret environment variables.
Images []string
A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build status is marked FAILURE.
Location Changes to this property will trigger replacement. string
LogsBucket string
Cloud Storage bucket where logs should be written (see Bucket Name Requirements). Logs file names will be of the format ${logs_bucket}/log-${build_id}.txt.
Options BuildOptionsArgs
Special options for this build.
Project Changes to this property will trigger replacement. string
QueueTtl string
TTL in queue for this build. If provided and the build is enqueued longer than this value, the build will expire and the build status will be EXPIRED. The TTL starts ticking from create_time.
Secrets []SecretArgs
Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secrets to configure builds to access secrets from Secret Manager. For instructions, see: https://cloud.google.com/cloud-build/docs/securing-builds/use-secrets
ServiceAccount string
IAM service account whose credentials will be used at build runtime. Must be of the format projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}. ACCOUNT can be email address or uniqueId of the service account.
Source SourceArgs
The location of the source files to build.
Substitutions map[string]string
Substitutions data for Build resource.
Tags []string
Tags for annotation of a Build. These are not docker tags.
Timeout string
Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be TIMEOUT. timeout starts ticking from startTime. Default time is 60 minutes.
projectId
This property is required.
Changes to this property will trigger replacement.
String
Required. ID of the project.
steps This property is required. List<BuildStep>
The operations to be performed on the workspace.
artifacts Artifacts
Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
availableSecrets Secrets
Secrets and secret environment variables.
images List<String>
A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build status is marked FAILURE.
location Changes to this property will trigger replacement. String
logsBucket String
Cloud Storage bucket where logs should be written (see Bucket Name Requirements). Logs file names will be of the format ${logs_bucket}/log-${build_id}.txt.
options BuildOptions
Special options for this build.
project Changes to this property will trigger replacement. String
queueTtl String
TTL in queue for this build. If provided and the build is enqueued longer than this value, the build will expire and the build status will be EXPIRED. The TTL starts ticking from create_time.
secrets List<Secret>
Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secrets to configure builds to access secrets from Secret Manager. For instructions, see: https://cloud.google.com/cloud-build/docs/securing-builds/use-secrets
serviceAccount String
IAM service account whose credentials will be used at build runtime. Must be of the format projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}. ACCOUNT can be email address or uniqueId of the service account.
source Source
The location of the source files to build.
substitutions Map<String,String>
Substitutions data for Build resource.
tags List<String>
Tags for annotation of a Build. These are not docker tags.
timeout String
Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be TIMEOUT. timeout starts ticking from startTime. Default time is 60 minutes.
projectId
This property is required.
Changes to this property will trigger replacement.
string
Required. ID of the project.
steps This property is required. BuildStep[]
The operations to be performed on the workspace.
artifacts Artifacts
Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
availableSecrets Secrets
Secrets and secret environment variables.
images string[]
A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build status is marked FAILURE.
location Changes to this property will trigger replacement. string
logsBucket string
Cloud Storage bucket where logs should be written (see Bucket Name Requirements). Logs file names will be of the format ${logs_bucket}/log-${build_id}.txt.
options BuildOptions
Special options for this build.
project Changes to this property will trigger replacement. string
queueTtl string
TTL in queue for this build. If provided and the build is enqueued longer than this value, the build will expire and the build status will be EXPIRED. The TTL starts ticking from create_time.
secrets Secret[]
Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secrets to configure builds to access secrets from Secret Manager. For instructions, see: https://cloud.google.com/cloud-build/docs/securing-builds/use-secrets
serviceAccount string
IAM service account whose credentials will be used at build runtime. Must be of the format projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}. ACCOUNT can be email address or uniqueId of the service account.
source Source
The location of the source files to build.
substitutions {[key: string]: string}
Substitutions data for Build resource.
tags string[]
Tags for annotation of a Build. These are not docker tags.
timeout string
Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be TIMEOUT. timeout starts ticking from startTime. Default time is 60 minutes.
project_id
This property is required.
Changes to this property will trigger replacement.
str
Required. ID of the project.
steps This property is required. Sequence[BuildStepArgs]
The operations to be performed on the workspace.
artifacts ArtifactsArgs
Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
available_secrets SecretsArgs
Secrets and secret environment variables.
images Sequence[str]
A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build status is marked FAILURE.
location Changes to this property will trigger replacement. str
logs_bucket str
Cloud Storage bucket where logs should be written (see Bucket Name Requirements). Logs file names will be of the format ${logs_bucket}/log-${build_id}.txt.
options BuildOptionsArgs
Special options for this build.
project Changes to this property will trigger replacement. str
queue_ttl str
TTL in queue for this build. If provided and the build is enqueued longer than this value, the build will expire and the build status will be EXPIRED. The TTL starts ticking from create_time.
secrets Sequence[SecretArgs]
Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secrets to configure builds to access secrets from Secret Manager. For instructions, see: https://cloud.google.com/cloud-build/docs/securing-builds/use-secrets
service_account str
IAM service account whose credentials will be used at build runtime. Must be of the format projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}. ACCOUNT can be email address or uniqueId of the service account.
source SourceArgs
The location of the source files to build.
substitutions Mapping[str, str]
Substitutions data for Build resource.
tags Sequence[str]
Tags for annotation of a Build. These are not docker tags.
timeout str
Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be TIMEOUT. timeout starts ticking from startTime. Default time is 60 minutes.
projectId
This property is required.
Changes to this property will trigger replacement.
String
Required. ID of the project.
steps This property is required. List<Property Map>
The operations to be performed on the workspace.
artifacts Property Map
Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
availableSecrets Property Map
Secrets and secret environment variables.
images List<String>
A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build status is marked FAILURE.
location Changes to this property will trigger replacement. String
logsBucket String
Cloud Storage bucket where logs should be written (see Bucket Name Requirements). Logs file names will be of the format ${logs_bucket}/log-${build_id}.txt.
options Property Map
Special options for this build.
project Changes to this property will trigger replacement. String
queueTtl String
TTL in queue for this build. If provided and the build is enqueued longer than this value, the build will expire and the build status will be EXPIRED. The TTL starts ticking from create_time.
secrets List<Property Map>
Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secrets to configure builds to access secrets from Secret Manager. For instructions, see: https://cloud.google.com/cloud-build/docs/securing-builds/use-secrets
serviceAccount String
IAM service account whose credentials will be used at build runtime. Must be of the format projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}. ACCOUNT can be email address or uniqueId of the service account.
source Property Map
The location of the source files to build.
substitutions Map<String>
Substitutions data for Build resource.
tags List<String>
Tags for annotation of a Build. These are not docker tags.
timeout String
Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be TIMEOUT. timeout starts ticking from startTime. Default time is 60 minutes.

Outputs

All input properties are implicitly available as output properties. Additionally, the Build resource produces the following output properties:

Approval Pulumi.GoogleNative.CloudBuild.V1.Outputs.BuildApprovalResponse
Describes this build's approval configuration, status, and result.
BuildTriggerId string
The ID of the BuildTrigger that triggered this build, if it was triggered automatically.
CreateTime string
Time at which the request to create the build was received.
FailureInfo Pulumi.GoogleNative.CloudBuild.V1.Outputs.FailureInfoResponse
Contains information about the build when status=FAILURE.
FinishTime string
Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution.
Id string
The provider-assigned unique ID for this managed resource.
LogUrl string
URL to logs for this build in Google Cloud Console.
Name string
The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
Results Pulumi.GoogleNative.CloudBuild.V1.Outputs.ResultsResponse
Results of the build.
SourceProvenance Pulumi.GoogleNative.CloudBuild.V1.Outputs.SourceProvenanceResponse
A permanent fixed identifier for source.
StartTime string
Time at which execution of the build was started.
Status string
Status of the build.
StatusDetail string
Customer-readable message about the current status.
Timing Dictionary<string, string>
Stores timing information for phases of the build. Valid keys are: * BUILD: time to execute all build steps. * PUSH: time to push all artifacts including docker images and non docker artifacts. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up build. If the build does not specify source or images, these keys will not be included.
Warnings List<Pulumi.GoogleNative.CloudBuild.V1.Outputs.WarningResponse>
Non-fatal problems encountered during the execution of the build.
Approval BuildApprovalResponse
Describes this build's approval configuration, status, and result.
BuildTriggerId string
The ID of the BuildTrigger that triggered this build, if it was triggered automatically.
CreateTime string
Time at which the request to create the build was received.
FailureInfo FailureInfoResponse
Contains information about the build when status=FAILURE.
FinishTime string
Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution.
Id string
The provider-assigned unique ID for this managed resource.
LogUrl string
URL to logs for this build in Google Cloud Console.
Name string
The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
Results ResultsResponse
Results of the build.
SourceProvenance SourceProvenanceResponse
A permanent fixed identifier for source.
StartTime string
Time at which execution of the build was started.
Status string
Status of the build.
StatusDetail string
Customer-readable message about the current status.
Timing map[string]string
Stores timing information for phases of the build. Valid keys are: * BUILD: time to execute all build steps. * PUSH: time to push all artifacts including docker images and non docker artifacts. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up build. If the build does not specify source or images, these keys will not be included.
Warnings []WarningResponse
Non-fatal problems encountered during the execution of the build.
approval BuildApprovalResponse
Describes this build's approval configuration, status, and result.
buildTriggerId String
The ID of the BuildTrigger that triggered this build, if it was triggered automatically.
createTime String
Time at which the request to create the build was received.
failureInfo FailureInfoResponse
Contains information about the build when status=FAILURE.
finishTime String
Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution.
id String
The provider-assigned unique ID for this managed resource.
logUrl String
URL to logs for this build in Google Cloud Console.
name String
The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
results ResultsResponse
Results of the build.
sourceProvenance SourceProvenanceResponse
A permanent fixed identifier for source.
startTime String
Time at which execution of the build was started.
status String
Status of the build.
statusDetail String
Customer-readable message about the current status.
timing Map<String,String>
Stores timing information for phases of the build. Valid keys are: * BUILD: time to execute all build steps. * PUSH: time to push all artifacts including docker images and non docker artifacts. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up build. If the build does not specify source or images, these keys will not be included.
warnings List<WarningResponse>
Non-fatal problems encountered during the execution of the build.
approval BuildApprovalResponse
Describes this build's approval configuration, status, and result.
buildTriggerId string
The ID of the BuildTrigger that triggered this build, if it was triggered automatically.
createTime string
Time at which the request to create the build was received.
failureInfo FailureInfoResponse
Contains information about the build when status=FAILURE.
finishTime string
Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution.
id string
The provider-assigned unique ID for this managed resource.
logUrl string
URL to logs for this build in Google Cloud Console.
name string
The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
results ResultsResponse
Results of the build.
sourceProvenance SourceProvenanceResponse
A permanent fixed identifier for source.
startTime string
Time at which execution of the build was started.
status string
Status of the build.
statusDetail string
Customer-readable message about the current status.
timing {[key: string]: string}
Stores timing information for phases of the build. Valid keys are: * BUILD: time to execute all build steps. * PUSH: time to push all artifacts including docker images and non docker artifacts. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up build. If the build does not specify source or images, these keys will not be included.
warnings WarningResponse[]
Non-fatal problems encountered during the execution of the build.
approval BuildApprovalResponse
Describes this build's approval configuration, status, and result.
build_trigger_id str
The ID of the BuildTrigger that triggered this build, if it was triggered automatically.
create_time str
Time at which the request to create the build was received.
failure_info FailureInfoResponse
Contains information about the build when status=FAILURE.
finish_time str
Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution.
id str
The provider-assigned unique ID for this managed resource.
log_url str
URL to logs for this build in Google Cloud Console.
name str
The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
results ResultsResponse
Results of the build.
source_provenance SourceProvenanceResponse
A permanent fixed identifier for source.
start_time str
Time at which execution of the build was started.
status str
Status of the build.
status_detail str
Customer-readable message about the current status.
timing Mapping[str, str]
Stores timing information for phases of the build. Valid keys are: * BUILD: time to execute all build steps. * PUSH: time to push all artifacts including docker images and non docker artifacts. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up build. If the build does not specify source or images, these keys will not be included.
warnings Sequence[WarningResponse]
Non-fatal problems encountered during the execution of the build.
approval Property Map
Describes this build's approval configuration, status, and result.
buildTriggerId String
The ID of the BuildTrigger that triggered this build, if it was triggered automatically.
createTime String
Time at which the request to create the build was received.
failureInfo Property Map
Contains information about the build when status=FAILURE.
finishTime String
Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution.
id String
The provider-assigned unique ID for this managed resource.
logUrl String
URL to logs for this build in Google Cloud Console.
name String
The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
results Property Map
Results of the build.
sourceProvenance Property Map
A permanent fixed identifier for source.
startTime String
Time at which execution of the build was started.
status String
Status of the build.
statusDetail String
Customer-readable message about the current status.
timing Map<String>
Stores timing information for phases of the build. Valid keys are: * BUILD: time to execute all build steps. * PUSH: time to push all artifacts including docker images and non docker artifacts. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up build. If the build does not specify source or images, these keys will not be included.
warnings List<Property Map>
Non-fatal problems encountered during the execution of the build.

Supporting Types

ApprovalConfigResponse
, ApprovalConfigResponseArgs

ApprovalRequired This property is required. bool
Whether or not approval is needed. If this is set on a build, it will become pending when created, and will need to be explicitly approved to start.
ApprovalRequired This property is required. bool
Whether or not approval is needed. If this is set on a build, it will become pending when created, and will need to be explicitly approved to start.
approvalRequired This property is required. Boolean
Whether or not approval is needed. If this is set on a build, it will become pending when created, and will need to be explicitly approved to start.
approvalRequired This property is required. boolean
Whether or not approval is needed. If this is set on a build, it will become pending when created, and will need to be explicitly approved to start.
approval_required This property is required. bool
Whether or not approval is needed. If this is set on a build, it will become pending when created, and will need to be explicitly approved to start.
approvalRequired This property is required. Boolean
Whether or not approval is needed. If this is set on a build, it will become pending when created, and will need to be explicitly approved to start.

ApprovalResultResponse
, ApprovalResultResponseArgs

ApprovalTime This property is required. string
The time when the approval decision was made.
ApproverAccount This property is required. string
Email of the user that called the ApproveBuild API to approve or reject a build at the time that the API was called.
Comment This property is required. string
Optional. An optional comment for this manual approval result.
Decision This property is required. string
The decision of this manual approval.
Url This property is required. string
Optional. An optional URL tied to this manual approval result. This field is essentially the same as comment, except that it will be rendered by the UI differently. An example use case is a link to an external job that approved this Build.
ApprovalTime This property is required. string
The time when the approval decision was made.
ApproverAccount This property is required. string
Email of the user that called the ApproveBuild API to approve or reject a build at the time that the API was called.
Comment This property is required. string
Optional. An optional comment for this manual approval result.
Decision This property is required. string
The decision of this manual approval.
Url This property is required. string
Optional. An optional URL tied to this manual approval result. This field is essentially the same as comment, except that it will be rendered by the UI differently. An example use case is a link to an external job that approved this Build.
approvalTime This property is required. String
The time when the approval decision was made.
approverAccount This property is required. String
Email of the user that called the ApproveBuild API to approve or reject a build at the time that the API was called.
comment This property is required. String
Optional. An optional comment for this manual approval result.
decision This property is required. String
The decision of this manual approval.
url This property is required. String
Optional. An optional URL tied to this manual approval result. This field is essentially the same as comment, except that it will be rendered by the UI differently. An example use case is a link to an external job that approved this Build.
approvalTime This property is required. string
The time when the approval decision was made.
approverAccount This property is required. string
Email of the user that called the ApproveBuild API to approve or reject a build at the time that the API was called.
comment This property is required. string
Optional. An optional comment for this manual approval result.
decision This property is required. string
The decision of this manual approval.
url This property is required. string
Optional. An optional URL tied to this manual approval result. This field is essentially the same as comment, except that it will be rendered by the UI differently. An example use case is a link to an external job that approved this Build.
approval_time This property is required. str
The time when the approval decision was made.
approver_account This property is required. str
Email of the user that called the ApproveBuild API to approve or reject a build at the time that the API was called.
comment This property is required. str
Optional. An optional comment for this manual approval result.
decision This property is required. str
The decision of this manual approval.
url This property is required. str
Optional. An optional URL tied to this manual approval result. This field is essentially the same as comment, except that it will be rendered by the UI differently. An example use case is a link to an external job that approved this Build.
approvalTime This property is required. String
The time when the approval decision was made.
approverAccount This property is required. String
Email of the user that called the ApproveBuild API to approve or reject a build at the time that the API was called.
comment This property is required. String
Optional. An optional comment for this manual approval result.
decision This property is required. String
The decision of this manual approval.
url This property is required. String
Optional. An optional URL tied to this manual approval result. This field is essentially the same as comment, except that it will be rendered by the UI differently. An example use case is a link to an external job that approved this Build.

ArtifactObjects
, ArtifactObjectsArgs

Location string
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
Paths List<string>
Path globs used to match files in the build's workspace.
Location string
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
Paths []string
Path globs used to match files in the build's workspace.
location String
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
paths List<String>
Path globs used to match files in the build's workspace.
location string
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
paths string[]
Path globs used to match files in the build's workspace.
location str
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
paths Sequence[str]
Path globs used to match files in the build's workspace.
location String
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
paths List<String>
Path globs used to match files in the build's workspace.

ArtifactObjectsResponse
, ArtifactObjectsResponseArgs

Location This property is required. string
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
Paths This property is required. List<string>
Path globs used to match files in the build's workspace.
Timing This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.TimeSpanResponse
Stores timing information for pushing all artifact objects.
Location This property is required. string
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
Paths This property is required. []string
Path globs used to match files in the build's workspace.
Timing This property is required. TimeSpanResponse
Stores timing information for pushing all artifact objects.
location This property is required. String
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
paths This property is required. List<String>
Path globs used to match files in the build's workspace.
timing This property is required. TimeSpanResponse
Stores timing information for pushing all artifact objects.
location This property is required. string
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
paths This property is required. string[]
Path globs used to match files in the build's workspace.
timing This property is required. TimeSpanResponse
Stores timing information for pushing all artifact objects.
location This property is required. str
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
paths This property is required. Sequence[str]
Path globs used to match files in the build's workspace.
timing This property is required. TimeSpanResponse
Stores timing information for pushing all artifact objects.
location This property is required. String
Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements). Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.
paths This property is required. List<String>
Path globs used to match files in the build's workspace.
timing This property is required. Property Map
Stores timing information for pushing all artifact objects.

Artifacts
, ArtifactsArgs

Images List<string>
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
MavenArtifacts List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.MavenArtifact>
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
NpmPackages List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.NpmPackage>
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
Objects Pulumi.GoogleNative.CloudBuild.V1.Inputs.ArtifactObjects
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
PythonPackages List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.PythonPackage>
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.
Images []string
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
MavenArtifacts []MavenArtifact
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
NpmPackages []NpmPackage
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
Objects ArtifactObjects
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
PythonPackages []PythonPackage
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.
images List<String>
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
mavenArtifacts List<MavenArtifact>
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
npmPackages List<NpmPackage>
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
objects ArtifactObjects
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
pythonPackages List<PythonPackage>
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.
images string[]
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
mavenArtifacts MavenArtifact[]
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
npmPackages NpmPackage[]
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
objects ArtifactObjects
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
pythonPackages PythonPackage[]
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.
images Sequence[str]
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
maven_artifacts Sequence[MavenArtifact]
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
npm_packages Sequence[NpmPackage]
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
objects ArtifactObjects
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
python_packages Sequence[PythonPackage]
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.
images List<String>
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
mavenArtifacts List<Property Map>
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
npmPackages List<Property Map>
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
objects Property Map
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
pythonPackages List<Property Map>
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.

ArtifactsResponse
, ArtifactsResponseArgs

Images This property is required. List<string>
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
MavenArtifacts This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.MavenArtifactResponse>
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
NpmPackages This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.NpmPackageResponse>
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
Objects This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.ArtifactObjectsResponse
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
PythonPackages This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.PythonPackageResponse>
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.
Images This property is required. []string
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
MavenArtifacts This property is required. []MavenArtifactResponse
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
NpmPackages This property is required. []NpmPackageResponse
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
Objects This property is required. ArtifactObjectsResponse
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
PythonPackages This property is required. []PythonPackageResponse
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.
images This property is required. List<String>
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
mavenArtifacts This property is required. List<MavenArtifactResponse>
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
npmPackages This property is required. List<NpmPackageResponse>
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
objects This property is required. ArtifactObjectsResponse
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
pythonPackages This property is required. List<PythonPackageResponse>
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.
images This property is required. string[]
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
mavenArtifacts This property is required. MavenArtifactResponse[]
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
npmPackages This property is required. NpmPackageResponse[]
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
objects This property is required. ArtifactObjectsResponse
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
pythonPackages This property is required. PythonPackageResponse[]
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.
images This property is required. Sequence[str]
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
maven_artifacts This property is required. Sequence[MavenArtifactResponse]
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
npm_packages This property is required. Sequence[NpmPackageResponse]
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
objects This property is required. ArtifactObjectsResponse
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
python_packages This property is required. Sequence[PythonPackageResponse]
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.
images This property is required. List<String>
A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.
mavenArtifacts This property is required. List<Property Map>
A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.
npmPackages This property is required. List<Property Map>
A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.
objects This property is required. Property Map
A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.
pythonPackages This property is required. List<Property Map>
A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.

BuildApprovalResponse
, BuildApprovalResponseArgs

Config This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.ApprovalConfigResponse
Configuration for manual approval of this build.
Result This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.ApprovalResultResponse
Result of manual approval for this Build.
State This property is required. string
The state of this build's approval.
Config This property is required. ApprovalConfigResponse
Configuration for manual approval of this build.
Result This property is required. ApprovalResultResponse
Result of manual approval for this Build.
State This property is required. string
The state of this build's approval.
config This property is required. ApprovalConfigResponse
Configuration for manual approval of this build.
result This property is required. ApprovalResultResponse
Result of manual approval for this Build.
state This property is required. String
The state of this build's approval.
config This property is required. ApprovalConfigResponse
Configuration for manual approval of this build.
result This property is required. ApprovalResultResponse
Result of manual approval for this Build.
state This property is required. string
The state of this build's approval.
config This property is required. ApprovalConfigResponse
Configuration for manual approval of this build.
result This property is required. ApprovalResultResponse
Result of manual approval for this Build.
state This property is required. str
The state of this build's approval.
config This property is required. Property Map
Configuration for manual approval of this build.
result This property is required. Property Map
Result of manual approval for this Build.
state This property is required. String
The state of this build's approval.

BuildOptions
, BuildOptionsArgs

AutomapSubstitutions bool
Option to include built-in and custom substitutions as env variables for all build steps.
DefaultLogsBucketBehavior Pulumi.GoogleNative.CloudBuild.V1.BuildOptionsDefaultLogsBucketBehavior
Optional. Option to specify how default logs buckets are setup.
DiskSizeGb string
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
DynamicSubstitutions bool
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
Env List<string>
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
LogStreamingOption Pulumi.GoogleNative.CloudBuild.V1.BuildOptionsLogStreamingOption
Option to define build log streaming behavior to Cloud Storage.
Logging Pulumi.GoogleNative.CloudBuild.V1.BuildOptionsLogging
Option to specify the logging mode, which determines if and where build logs are stored.
MachineType Pulumi.GoogleNative.CloudBuild.V1.BuildOptionsMachineType
Compute Engine machine type on which to run the build.
Pool Pulumi.GoogleNative.CloudBuild.V1.Inputs.PoolOption
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
RequestedVerifyOption Pulumi.GoogleNative.CloudBuild.V1.BuildOptionsRequestedVerifyOption
Requested verifiability options.
SecretEnv List<string>
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
SourceProvenanceHash List<Pulumi.GoogleNative.CloudBuild.V1.BuildOptionsSourceProvenanceHashItem>
Requested hash for SourceProvenance.
SubstitutionOption Pulumi.GoogleNative.CloudBuild.V1.BuildOptionsSubstitutionOption
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
Volumes List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.Volume>
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
WorkerPool string
This field deprecated; please use pool.name instead.
AutomapSubstitutions bool
Option to include built-in and custom substitutions as env variables for all build steps.
DefaultLogsBucketBehavior BuildOptionsDefaultLogsBucketBehavior
Optional. Option to specify how default logs buckets are setup.
DiskSizeGb string
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
DynamicSubstitutions bool
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
Env []string
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
LogStreamingOption BuildOptionsLogStreamingOption
Option to define build log streaming behavior to Cloud Storage.
Logging BuildOptionsLogging
Option to specify the logging mode, which determines if and where build logs are stored.
MachineType BuildOptionsMachineType
Compute Engine machine type on which to run the build.
Pool PoolOption
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
RequestedVerifyOption BuildOptionsRequestedVerifyOption
Requested verifiability options.
SecretEnv []string
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
SourceProvenanceHash []BuildOptionsSourceProvenanceHashItem
Requested hash for SourceProvenance.
SubstitutionOption BuildOptionsSubstitutionOption
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
Volumes []Volume
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
WorkerPool string
This field deprecated; please use pool.name instead.
automapSubstitutions Boolean
Option to include built-in and custom substitutions as env variables for all build steps.
defaultLogsBucketBehavior BuildOptionsDefaultLogsBucketBehavior
Optional. Option to specify how default logs buckets are setup.
diskSizeGb String
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
dynamicSubstitutions Boolean
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
env List<String>
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
logStreamingOption BuildOptionsLogStreamingOption
Option to define build log streaming behavior to Cloud Storage.
logging BuildOptionsLogging
Option to specify the logging mode, which determines if and where build logs are stored.
machineType BuildOptionsMachineType
Compute Engine machine type on which to run the build.
pool PoolOption
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
requestedVerifyOption BuildOptionsRequestedVerifyOption
Requested verifiability options.
secretEnv List<String>
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
sourceProvenanceHash List<BuildOptionsSourceProvenanceHashItem>
Requested hash for SourceProvenance.
substitutionOption BuildOptionsSubstitutionOption
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
volumes List<Volume>
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
workerPool String
This field deprecated; please use pool.name instead.
automapSubstitutions boolean
Option to include built-in and custom substitutions as env variables for all build steps.
defaultLogsBucketBehavior BuildOptionsDefaultLogsBucketBehavior
Optional. Option to specify how default logs buckets are setup.
diskSizeGb string
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
dynamicSubstitutions boolean
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
env string[]
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
logStreamingOption BuildOptionsLogStreamingOption
Option to define build log streaming behavior to Cloud Storage.
logging BuildOptionsLogging
Option to specify the logging mode, which determines if and where build logs are stored.
machineType BuildOptionsMachineType
Compute Engine machine type on which to run the build.
pool PoolOption
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
requestedVerifyOption BuildOptionsRequestedVerifyOption
Requested verifiability options.
secretEnv string[]
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
sourceProvenanceHash BuildOptionsSourceProvenanceHashItem[]
Requested hash for SourceProvenance.
substitutionOption BuildOptionsSubstitutionOption
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
volumes Volume[]
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
workerPool string
This field deprecated; please use pool.name instead.
automap_substitutions bool
Option to include built-in and custom substitutions as env variables for all build steps.
default_logs_bucket_behavior BuildOptionsDefaultLogsBucketBehavior
Optional. Option to specify how default logs buckets are setup.
disk_size_gb str
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
dynamic_substitutions bool
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
env Sequence[str]
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
log_streaming_option BuildOptionsLogStreamingOption
Option to define build log streaming behavior to Cloud Storage.
logging BuildOptionsLogging
Option to specify the logging mode, which determines if and where build logs are stored.
machine_type BuildOptionsMachineType
Compute Engine machine type on which to run the build.
pool PoolOption
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
requested_verify_option BuildOptionsRequestedVerifyOption
Requested verifiability options.
secret_env Sequence[str]
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
source_provenance_hash Sequence[BuildOptionsSourceProvenanceHashItem]
Requested hash for SourceProvenance.
substitution_option BuildOptionsSubstitutionOption
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
volumes Sequence[Volume]
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
worker_pool str
This field deprecated; please use pool.name instead.
automapSubstitutions Boolean
Option to include built-in and custom substitutions as env variables for all build steps.
defaultLogsBucketBehavior "DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIED" | "REGIONAL_USER_OWNED_BUCKET"
Optional. Option to specify how default logs buckets are setup.
diskSizeGb String
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
dynamicSubstitutions Boolean
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
env List<String>
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
logStreamingOption "STREAM_DEFAULT" | "STREAM_ON" | "STREAM_OFF"
Option to define build log streaming behavior to Cloud Storage.
logging "LOGGING_UNSPECIFIED" | "LEGACY" | "GCS_ONLY" | "STACKDRIVER_ONLY" | "CLOUD_LOGGING_ONLY" | "NONE"
Option to specify the logging mode, which determines if and where build logs are stored.
machineType "UNSPECIFIED" | "N1_HIGHCPU_8" | "N1_HIGHCPU_32" | "E2_HIGHCPU_8" | "E2_HIGHCPU_32" | "E2_MEDIUM"
Compute Engine machine type on which to run the build.
pool Property Map
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
requestedVerifyOption "NOT_VERIFIED" | "VERIFIED"
Requested verifiability options.
secretEnv List<String>
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
sourceProvenanceHash List<"NONE" | "SHA256" | "MD5" | "SHA512">
Requested hash for SourceProvenance.
substitutionOption "MUST_MATCH" | "ALLOW_LOOSE"
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
volumes List<Property Map>
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
workerPool String
This field deprecated; please use pool.name instead.

BuildOptionsDefaultLogsBucketBehavior
, BuildOptionsDefaultLogsBucketBehaviorArgs

DefaultLogsBucketBehaviorUnspecified
DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIEDUnspecified.
RegionalUserOwnedBucket
REGIONAL_USER_OWNED_BUCKETBucket is located in user-owned project in the same region as the build. The builder service account must have access to create and write to Cloud Storage buckets in the build project.
BuildOptionsDefaultLogsBucketBehaviorDefaultLogsBucketBehaviorUnspecified
DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIEDUnspecified.
BuildOptionsDefaultLogsBucketBehaviorRegionalUserOwnedBucket
REGIONAL_USER_OWNED_BUCKETBucket is located in user-owned project in the same region as the build. The builder service account must have access to create and write to Cloud Storage buckets in the build project.
DefaultLogsBucketBehaviorUnspecified
DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIEDUnspecified.
RegionalUserOwnedBucket
REGIONAL_USER_OWNED_BUCKETBucket is located in user-owned project in the same region as the build. The builder service account must have access to create and write to Cloud Storage buckets in the build project.
DefaultLogsBucketBehaviorUnspecified
DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIEDUnspecified.
RegionalUserOwnedBucket
REGIONAL_USER_OWNED_BUCKETBucket is located in user-owned project in the same region as the build. The builder service account must have access to create and write to Cloud Storage buckets in the build project.
DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIED
DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIEDUnspecified.
REGIONAL_USER_OWNED_BUCKET
REGIONAL_USER_OWNED_BUCKETBucket is located in user-owned project in the same region as the build. The builder service account must have access to create and write to Cloud Storage buckets in the build project.
"DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIED"
DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIEDUnspecified.
"REGIONAL_USER_OWNED_BUCKET"
REGIONAL_USER_OWNED_BUCKETBucket is located in user-owned project in the same region as the build. The builder service account must have access to create and write to Cloud Storage buckets in the build project.

BuildOptionsLogStreamingOption
, BuildOptionsLogStreamingOptionArgs

StreamDefault
STREAM_DEFAULTService may automatically determine build log streaming behavior.
StreamOn
STREAM_ONBuild logs should be streamed to Cloud Storage.
StreamOff
STREAM_OFFBuild logs should not be streamed to Cloud Storage; they will be written when the build is completed.
BuildOptionsLogStreamingOptionStreamDefault
STREAM_DEFAULTService may automatically determine build log streaming behavior.
BuildOptionsLogStreamingOptionStreamOn
STREAM_ONBuild logs should be streamed to Cloud Storage.
BuildOptionsLogStreamingOptionStreamOff
STREAM_OFFBuild logs should not be streamed to Cloud Storage; they will be written when the build is completed.
StreamDefault
STREAM_DEFAULTService may automatically determine build log streaming behavior.
StreamOn
STREAM_ONBuild logs should be streamed to Cloud Storage.
StreamOff
STREAM_OFFBuild logs should not be streamed to Cloud Storage; they will be written when the build is completed.
StreamDefault
STREAM_DEFAULTService may automatically determine build log streaming behavior.
StreamOn
STREAM_ONBuild logs should be streamed to Cloud Storage.
StreamOff
STREAM_OFFBuild logs should not be streamed to Cloud Storage; they will be written when the build is completed.
STREAM_DEFAULT
STREAM_DEFAULTService may automatically determine build log streaming behavior.
STREAM_ON
STREAM_ONBuild logs should be streamed to Cloud Storage.
STREAM_OFF
STREAM_OFFBuild logs should not be streamed to Cloud Storage; they will be written when the build is completed.
"STREAM_DEFAULT"
STREAM_DEFAULTService may automatically determine build log streaming behavior.
"STREAM_ON"
STREAM_ONBuild logs should be streamed to Cloud Storage.
"STREAM_OFF"
STREAM_OFFBuild logs should not be streamed to Cloud Storage; they will be written when the build is completed.

BuildOptionsLogging
, BuildOptionsLoggingArgs

LoggingUnspecified
LOGGING_UNSPECIFIEDThe service determines the logging mode. The default is LEGACY. Do not rely on the default logging behavior as it may change in the future.
Legacy
LEGACYBuild logs are stored in Cloud Logging and Cloud Storage.
GcsOnly
GCS_ONLYBuild logs are stored in Cloud Storage.
StackdriverOnly
STACKDRIVER_ONLYThis option is the same as CLOUD_LOGGING_ONLY.
CloudLoggingOnly
CLOUD_LOGGING_ONLYBuild logs are stored in Cloud Logging. Selecting this option will not allow logs streaming.
None
NONETurn off all logging. No build logs will be captured.
BuildOptionsLoggingLoggingUnspecified
LOGGING_UNSPECIFIEDThe service determines the logging mode. The default is LEGACY. Do not rely on the default logging behavior as it may change in the future.
BuildOptionsLoggingLegacy
LEGACYBuild logs are stored in Cloud Logging and Cloud Storage.
BuildOptionsLoggingGcsOnly
GCS_ONLYBuild logs are stored in Cloud Storage.
BuildOptionsLoggingStackdriverOnly
STACKDRIVER_ONLYThis option is the same as CLOUD_LOGGING_ONLY.
BuildOptionsLoggingCloudLoggingOnly
CLOUD_LOGGING_ONLYBuild logs are stored in Cloud Logging. Selecting this option will not allow logs streaming.
BuildOptionsLoggingNone
NONETurn off all logging. No build logs will be captured.
LoggingUnspecified
LOGGING_UNSPECIFIEDThe service determines the logging mode. The default is LEGACY. Do not rely on the default logging behavior as it may change in the future.
Legacy
LEGACYBuild logs are stored in Cloud Logging and Cloud Storage.
GcsOnly
GCS_ONLYBuild logs are stored in Cloud Storage.
StackdriverOnly
STACKDRIVER_ONLYThis option is the same as CLOUD_LOGGING_ONLY.
CloudLoggingOnly
CLOUD_LOGGING_ONLYBuild logs are stored in Cloud Logging. Selecting this option will not allow logs streaming.
None
NONETurn off all logging. No build logs will be captured.
LoggingUnspecified
LOGGING_UNSPECIFIEDThe service determines the logging mode. The default is LEGACY. Do not rely on the default logging behavior as it may change in the future.
Legacy
LEGACYBuild logs are stored in Cloud Logging and Cloud Storage.
GcsOnly
GCS_ONLYBuild logs are stored in Cloud Storage.
StackdriverOnly
STACKDRIVER_ONLYThis option is the same as CLOUD_LOGGING_ONLY.
CloudLoggingOnly
CLOUD_LOGGING_ONLYBuild logs are stored in Cloud Logging. Selecting this option will not allow logs streaming.
None
NONETurn off all logging. No build logs will be captured.
LOGGING_UNSPECIFIED
LOGGING_UNSPECIFIEDThe service determines the logging mode. The default is LEGACY. Do not rely on the default logging behavior as it may change in the future.
LEGACY
LEGACYBuild logs are stored in Cloud Logging and Cloud Storage.
GCS_ONLY
GCS_ONLYBuild logs are stored in Cloud Storage.
STACKDRIVER_ONLY
STACKDRIVER_ONLYThis option is the same as CLOUD_LOGGING_ONLY.
CLOUD_LOGGING_ONLY
CLOUD_LOGGING_ONLYBuild logs are stored in Cloud Logging. Selecting this option will not allow logs streaming.
NONE
NONETurn off all logging. No build logs will be captured.
"LOGGING_UNSPECIFIED"
LOGGING_UNSPECIFIEDThe service determines the logging mode. The default is LEGACY. Do not rely on the default logging behavior as it may change in the future.
"LEGACY"
LEGACYBuild logs are stored in Cloud Logging and Cloud Storage.
"GCS_ONLY"
GCS_ONLYBuild logs are stored in Cloud Storage.
"STACKDRIVER_ONLY"
STACKDRIVER_ONLYThis option is the same as CLOUD_LOGGING_ONLY.
"CLOUD_LOGGING_ONLY"
CLOUD_LOGGING_ONLYBuild logs are stored in Cloud Logging. Selecting this option will not allow logs streaming.
"NONE"
NONETurn off all logging. No build logs will be captured.

BuildOptionsMachineType
, BuildOptionsMachineTypeArgs

Unspecified
UNSPECIFIEDStandard machine type.
N1Highcpu8
N1_HIGHCPU_8Highcpu machine with 8 CPUs.
N1Highcpu32
N1_HIGHCPU_32Highcpu machine with 32 CPUs.
E2Highcpu8
E2_HIGHCPU_8Highcpu e2 machine with 8 CPUs.
E2Highcpu32
E2_HIGHCPU_32Highcpu e2 machine with 32 CPUs.
E2Medium
E2_MEDIUME2 machine with 1 CPU.
BuildOptionsMachineTypeUnspecified
UNSPECIFIEDStandard machine type.
BuildOptionsMachineTypeN1Highcpu8
N1_HIGHCPU_8Highcpu machine with 8 CPUs.
BuildOptionsMachineTypeN1Highcpu32
N1_HIGHCPU_32Highcpu machine with 32 CPUs.
BuildOptionsMachineTypeE2Highcpu8
E2_HIGHCPU_8Highcpu e2 machine with 8 CPUs.
BuildOptionsMachineTypeE2Highcpu32
E2_HIGHCPU_32Highcpu e2 machine with 32 CPUs.
BuildOptionsMachineTypeE2Medium
E2_MEDIUME2 machine with 1 CPU.
Unspecified
UNSPECIFIEDStandard machine type.
N1Highcpu8
N1_HIGHCPU_8Highcpu machine with 8 CPUs.
N1Highcpu32
N1_HIGHCPU_32Highcpu machine with 32 CPUs.
E2Highcpu8
E2_HIGHCPU_8Highcpu e2 machine with 8 CPUs.
E2Highcpu32
E2_HIGHCPU_32Highcpu e2 machine with 32 CPUs.
E2Medium
E2_MEDIUME2 machine with 1 CPU.
Unspecified
UNSPECIFIEDStandard machine type.
N1Highcpu8
N1_HIGHCPU_8Highcpu machine with 8 CPUs.
N1Highcpu32
N1_HIGHCPU_32Highcpu machine with 32 CPUs.
E2Highcpu8
E2_HIGHCPU_8Highcpu e2 machine with 8 CPUs.
E2Highcpu32
E2_HIGHCPU_32Highcpu e2 machine with 32 CPUs.
E2Medium
E2_MEDIUME2 machine with 1 CPU.
UNSPECIFIED
UNSPECIFIEDStandard machine type.
N1_HIGHCPU8
N1_HIGHCPU_8Highcpu machine with 8 CPUs.
N1_HIGHCPU32
N1_HIGHCPU_32Highcpu machine with 32 CPUs.
E2_HIGHCPU8
E2_HIGHCPU_8Highcpu e2 machine with 8 CPUs.
E2_HIGHCPU32
E2_HIGHCPU_32Highcpu e2 machine with 32 CPUs.
E2_MEDIUM
E2_MEDIUME2 machine with 1 CPU.
"UNSPECIFIED"
UNSPECIFIEDStandard machine type.
"N1_HIGHCPU_8"
N1_HIGHCPU_8Highcpu machine with 8 CPUs.
"N1_HIGHCPU_32"
N1_HIGHCPU_32Highcpu machine with 32 CPUs.
"E2_HIGHCPU_8"
E2_HIGHCPU_8Highcpu e2 machine with 8 CPUs.
"E2_HIGHCPU_32"
E2_HIGHCPU_32Highcpu e2 machine with 32 CPUs.
"E2_MEDIUM"
E2_MEDIUME2 machine with 1 CPU.

BuildOptionsRequestedVerifyOption
, BuildOptionsRequestedVerifyOptionArgs

NotVerified
NOT_VERIFIEDNot a verifiable build (the default).
Verified
VERIFIEDBuild must be verified.
BuildOptionsRequestedVerifyOptionNotVerified
NOT_VERIFIEDNot a verifiable build (the default).
BuildOptionsRequestedVerifyOptionVerified
VERIFIEDBuild must be verified.
NotVerified
NOT_VERIFIEDNot a verifiable build (the default).
Verified
VERIFIEDBuild must be verified.
NotVerified
NOT_VERIFIEDNot a verifiable build (the default).
Verified
VERIFIEDBuild must be verified.
NOT_VERIFIED
NOT_VERIFIEDNot a verifiable build (the default).
VERIFIED
VERIFIEDBuild must be verified.
"NOT_VERIFIED"
NOT_VERIFIEDNot a verifiable build (the default).
"VERIFIED"
VERIFIEDBuild must be verified.

BuildOptionsResponse
, BuildOptionsResponseArgs

AutomapSubstitutions This property is required. bool
Option to include built-in and custom substitutions as env variables for all build steps.
DefaultLogsBucketBehavior This property is required. string
Optional. Option to specify how default logs buckets are setup.
DiskSizeGb This property is required. string
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
DynamicSubstitutions This property is required. bool
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
Env This property is required. List<string>
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
LogStreamingOption This property is required. string
Option to define build log streaming behavior to Cloud Storage.
Logging This property is required. string
Option to specify the logging mode, which determines if and where build logs are stored.
MachineType This property is required. string
Compute Engine machine type on which to run the build.
Pool This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.PoolOptionResponse
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
RequestedVerifyOption This property is required. string
Requested verifiability options.
SecretEnv This property is required. List<string>
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
SourceProvenanceHash This property is required. List<string>
Requested hash for SourceProvenance.
SubstitutionOption This property is required. string
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
Volumes This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.VolumeResponse>
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
WorkerPool This property is required. string
This field deprecated; please use pool.name instead.
AutomapSubstitutions This property is required. bool
Option to include built-in and custom substitutions as env variables for all build steps.
DefaultLogsBucketBehavior This property is required. string
Optional. Option to specify how default logs buckets are setup.
DiskSizeGb This property is required. string
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
DynamicSubstitutions This property is required. bool
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
Env This property is required. []string
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
LogStreamingOption This property is required. string
Option to define build log streaming behavior to Cloud Storage.
Logging This property is required. string
Option to specify the logging mode, which determines if and where build logs are stored.
MachineType This property is required. string
Compute Engine machine type on which to run the build.
Pool This property is required. PoolOptionResponse
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
RequestedVerifyOption This property is required. string
Requested verifiability options.
SecretEnv This property is required. []string
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
SourceProvenanceHash This property is required. []string
Requested hash for SourceProvenance.
SubstitutionOption This property is required. string
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
Volumes This property is required. []VolumeResponse
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
WorkerPool This property is required. string
This field deprecated; please use pool.name instead.
automapSubstitutions This property is required. Boolean
Option to include built-in and custom substitutions as env variables for all build steps.
defaultLogsBucketBehavior This property is required. String
Optional. Option to specify how default logs buckets are setup.
diskSizeGb This property is required. String
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
dynamicSubstitutions This property is required. Boolean
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
env This property is required. List<String>
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
logStreamingOption This property is required. String
Option to define build log streaming behavior to Cloud Storage.
logging This property is required. String
Option to specify the logging mode, which determines if and where build logs are stored.
machineType This property is required. String
Compute Engine machine type on which to run the build.
pool This property is required. PoolOptionResponse
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
requestedVerifyOption This property is required. String
Requested verifiability options.
secretEnv This property is required. List<String>
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
sourceProvenanceHash This property is required. List<String>
Requested hash for SourceProvenance.
substitutionOption This property is required. String
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
volumes This property is required. List<VolumeResponse>
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
workerPool This property is required. String
This field deprecated; please use pool.name instead.
automapSubstitutions This property is required. boolean
Option to include built-in and custom substitutions as env variables for all build steps.
defaultLogsBucketBehavior This property is required. string
Optional. Option to specify how default logs buckets are setup.
diskSizeGb This property is required. string
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
dynamicSubstitutions This property is required. boolean
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
env This property is required. string[]
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
logStreamingOption This property is required. string
Option to define build log streaming behavior to Cloud Storage.
logging This property is required. string
Option to specify the logging mode, which determines if and where build logs are stored.
machineType This property is required. string
Compute Engine machine type on which to run the build.
pool This property is required. PoolOptionResponse
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
requestedVerifyOption This property is required. string
Requested verifiability options.
secretEnv This property is required. string[]
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
sourceProvenanceHash This property is required. string[]
Requested hash for SourceProvenance.
substitutionOption This property is required. string
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
volumes This property is required. VolumeResponse[]
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
workerPool This property is required. string
This field deprecated; please use pool.name instead.
automap_substitutions This property is required. bool
Option to include built-in and custom substitutions as env variables for all build steps.
default_logs_bucket_behavior This property is required. str
Optional. Option to specify how default logs buckets are setup.
disk_size_gb This property is required. str
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
dynamic_substitutions This property is required. bool
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
env This property is required. Sequence[str]
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
log_streaming_option This property is required. str
Option to define build log streaming behavior to Cloud Storage.
logging This property is required. str
Option to specify the logging mode, which determines if and where build logs are stored.
machine_type This property is required. str
Compute Engine machine type on which to run the build.
pool This property is required. PoolOptionResponse
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
requested_verify_option This property is required. str
Requested verifiability options.
secret_env This property is required. Sequence[str]
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
source_provenance_hash This property is required. Sequence[str]
Requested hash for SourceProvenance.
substitution_option This property is required. str
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
volumes This property is required. Sequence[VolumeResponse]
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
worker_pool This property is required. str
This field deprecated; please use pool.name instead.
automapSubstitutions This property is required. Boolean
Option to include built-in and custom substitutions as env variables for all build steps.
defaultLogsBucketBehavior This property is required. String
Optional. Option to specify how default logs buckets are setup.
diskSizeGb This property is required. String
Requested disk size for the VM that runs the build. Note that this is NOT "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 2000GB; builds that request more than the maximum are rejected with an error.
dynamicSubstitutions This property is required. Boolean
Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file.
env This property is required. List<String>
A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
logStreamingOption This property is required. String
Option to define build log streaming behavior to Cloud Storage.
logging This property is required. String
Option to specify the logging mode, which determines if and where build logs are stored.
machineType This property is required. String
Compute Engine machine type on which to run the build.
pool This property is required. Property Map
Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
requestedVerifyOption This property is required. String
Requested verifiability options.
secretEnv This property is required. List<String>
A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret. These variables will be available to all build steps in this build.
sourceProvenanceHash This property is required. List<String>
Requested hash for SourceProvenance.
substitutionOption This property is required. String
Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file.
volumes This property is required. List<Property Map>
Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration.
workerPool This property is required. String
This field deprecated; please use pool.name instead.

BuildOptionsSourceProvenanceHashItem
, BuildOptionsSourceProvenanceHashItemArgs

None
NONENo hash requested.
Sha256
SHA256Use a sha256 hash.
Md5
MD5Use a md5 hash.
Sha512
SHA512Use a sha512 hash.
BuildOptionsSourceProvenanceHashItemNone
NONENo hash requested.
BuildOptionsSourceProvenanceHashItemSha256
SHA256Use a sha256 hash.
BuildOptionsSourceProvenanceHashItemMd5
MD5Use a md5 hash.
BuildOptionsSourceProvenanceHashItemSha512
SHA512Use a sha512 hash.
None
NONENo hash requested.
Sha256
SHA256Use a sha256 hash.
Md5
MD5Use a md5 hash.
Sha512
SHA512Use a sha512 hash.
None
NONENo hash requested.
Sha256
SHA256Use a sha256 hash.
Md5
MD5Use a md5 hash.
Sha512
SHA512Use a sha512 hash.
NONE
NONENo hash requested.
SHA256
SHA256Use a sha256 hash.
MD5
MD5Use a md5 hash.
SHA512
SHA512Use a sha512 hash.
"NONE"
NONENo hash requested.
"SHA256"
SHA256Use a sha256 hash.
"MD5"
MD5Use a md5 hash.
"SHA512"
SHA512Use a sha512 hash.

BuildOptionsSubstitutionOption
, BuildOptionsSubstitutionOptionArgs

MustMatch
MUST_MATCHFails the build if error in substitutions checks, like missing a substitution in the template or in the map.
AllowLoose
ALLOW_LOOSEDo not fail the build if error in substitutions checks.
BuildOptionsSubstitutionOptionMustMatch
MUST_MATCHFails the build if error in substitutions checks, like missing a substitution in the template or in the map.
BuildOptionsSubstitutionOptionAllowLoose
ALLOW_LOOSEDo not fail the build if error in substitutions checks.
MustMatch
MUST_MATCHFails the build if error in substitutions checks, like missing a substitution in the template or in the map.
AllowLoose
ALLOW_LOOSEDo not fail the build if error in substitutions checks.
MustMatch
MUST_MATCHFails the build if error in substitutions checks, like missing a substitution in the template or in the map.
AllowLoose
ALLOW_LOOSEDo not fail the build if error in substitutions checks.
MUST_MATCH
MUST_MATCHFails the build if error in substitutions checks, like missing a substitution in the template or in the map.
ALLOW_LOOSE
ALLOW_LOOSEDo not fail the build if error in substitutions checks.
"MUST_MATCH"
MUST_MATCHFails the build if error in substitutions checks, like missing a substitution in the template or in the map.
"ALLOW_LOOSE"
ALLOW_LOOSEDo not fail the build if error in substitutions checks.

BuildStep
, BuildStepArgs

Name This property is required. string
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
AllowExitCodes List<int>
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
AllowFailure bool
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
Args List<string>
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
AutomapSubstitutions bool
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
Dir string
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
Entrypoint string
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
Env List<string>
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
Id string
Unique identifier for this build step, used in wait_for to reference this build step as a dependency.
Script string
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
SecretEnv List<string>
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
Timeout string
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
Volumes List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.Volume>
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
WaitFor List<string>
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.
Name This property is required. string
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
AllowExitCodes []int
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
AllowFailure bool
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
Args []string
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
AutomapSubstitutions bool
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
Dir string
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
Entrypoint string
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
Env []string
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
Id string
Unique identifier for this build step, used in wait_for to reference this build step as a dependency.
Script string
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
SecretEnv []string
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
Timeout string
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
Volumes []Volume
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
WaitFor []string
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.
name This property is required. String
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
allowExitCodes List<Integer>
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
allowFailure Boolean
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
args List<String>
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
automapSubstitutions Boolean
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
dir String
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
entrypoint String
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
env List<String>
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
id String
Unique identifier for this build step, used in wait_for to reference this build step as a dependency.
script String
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
secretEnv List<String>
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
timeout String
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
volumes List<Volume>
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
waitFor List<String>
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.
name This property is required. string
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
allowExitCodes number[]
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
allowFailure boolean
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
args string[]
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
automapSubstitutions boolean
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
dir string
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
entrypoint string
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
env string[]
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
id string
Unique identifier for this build step, used in wait_for to reference this build step as a dependency.
script string
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
secretEnv string[]
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
timeout string
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
volumes Volume[]
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
waitFor string[]
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.
name This property is required. str
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
allow_exit_codes Sequence[int]
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
allow_failure bool
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
args Sequence[str]
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
automap_substitutions bool
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
dir str
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
entrypoint str
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
env Sequence[str]
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
id str
Unique identifier for this build step, used in wait_for to reference this build step as a dependency.
script str
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
secret_env Sequence[str]
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
timeout str
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
volumes Sequence[Volume]
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
wait_for Sequence[str]
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.
name This property is required. String
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
allowExitCodes List<Number>
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
allowFailure Boolean
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
args List<String>
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
automapSubstitutions Boolean
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
dir String
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
entrypoint String
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
env List<String>
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
id String
Unique identifier for this build step, used in wait_for to reference this build step as a dependency.
script String
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
secretEnv List<String>
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
timeout String
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
volumes List<Property Map>
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
waitFor List<String>
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.

BuildStepResponse
, BuildStepResponseArgs

AllowExitCodes This property is required. List<int>
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
AllowFailure This property is required. bool
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
Args This property is required. List<string>
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
AutomapSubstitutions This property is required. bool
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
Dir This property is required. string
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
Entrypoint This property is required. string
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
Env This property is required. List<string>
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
ExitCode This property is required. int
Return code from running the step.
Name This property is required. string
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
PullTiming This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.TimeSpanResponse
Stores timing information for pulling this build step's builder image only.
Script This property is required. string
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
SecretEnv This property is required. List<string>
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
Status This property is required. string
Status of the build step. At this time, build step status is only updated on build completion; step status is not updated in real-time as the build progresses.
Timeout This property is required. string
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
Timing This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.TimeSpanResponse
Stores timing information for executing this build step.
Volumes This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.VolumeResponse>
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
WaitFor This property is required. List<string>
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.
AllowExitCodes This property is required. []int
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
AllowFailure This property is required. bool
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
Args This property is required. []string
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
AutomapSubstitutions This property is required. bool
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
Dir This property is required. string
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
Entrypoint This property is required. string
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
Env This property is required. []string
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
ExitCode This property is required. int
Return code from running the step.
Name This property is required. string
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
PullTiming This property is required. TimeSpanResponse
Stores timing information for pulling this build step's builder image only.
Script This property is required. string
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
SecretEnv This property is required. []string
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
Status This property is required. string
Status of the build step. At this time, build step status is only updated on build completion; step status is not updated in real-time as the build progresses.
Timeout This property is required. string
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
Timing This property is required. TimeSpanResponse
Stores timing information for executing this build step.
Volumes This property is required. []VolumeResponse
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
WaitFor This property is required. []string
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.
allowExitCodes This property is required. List<Integer>
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
allowFailure This property is required. Boolean
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
args This property is required. List<String>
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
automapSubstitutions This property is required. Boolean
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
dir This property is required. String
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
entrypoint This property is required. String
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
env This property is required. List<String>
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
exitCode This property is required. Integer
Return code from running the step.
name This property is required. String
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
pullTiming This property is required. TimeSpanResponse
Stores timing information for pulling this build step's builder image only.
script This property is required. String
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
secretEnv This property is required. List<String>
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
status This property is required. String
Status of the build step. At this time, build step status is only updated on build completion; step status is not updated in real-time as the build progresses.
timeout This property is required. String
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
timing This property is required. TimeSpanResponse
Stores timing information for executing this build step.
volumes This property is required. List<VolumeResponse>
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
waitFor This property is required. List<String>
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.
allowExitCodes This property is required. number[]
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
allowFailure This property is required. boolean
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
args This property is required. string[]
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
automapSubstitutions This property is required. boolean
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
dir This property is required. string
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
entrypoint This property is required. string
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
env This property is required. string[]
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
exitCode This property is required. number
Return code from running the step.
name This property is required. string
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
pullTiming This property is required. TimeSpanResponse
Stores timing information for pulling this build step's builder image only.
script This property is required. string
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
secretEnv This property is required. string[]
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
status This property is required. string
Status of the build step. At this time, build step status is only updated on build completion; step status is not updated in real-time as the build progresses.
timeout This property is required. string
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
timing This property is required. TimeSpanResponse
Stores timing information for executing this build step.
volumes This property is required. VolumeResponse[]
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
waitFor This property is required. string[]
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.
allow_exit_codes This property is required. Sequence[int]
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
allow_failure This property is required. bool
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
args This property is required. Sequence[str]
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
automap_substitutions This property is required. bool
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
dir This property is required. str
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
entrypoint This property is required. str
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
env This property is required. Sequence[str]
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
exit_code This property is required. int
Return code from running the step.
name This property is required. str
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
pull_timing This property is required. TimeSpanResponse
Stores timing information for pulling this build step's builder image only.
script This property is required. str
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
secret_env This property is required. Sequence[str]
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
status This property is required. str
Status of the build step. At this time, build step status is only updated on build completion; step status is not updated in real-time as the build progresses.
timeout This property is required. str
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
timing This property is required. TimeSpanResponse
Stores timing information for executing this build step.
volumes This property is required. Sequence[VolumeResponse]
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
wait_for This property is required. Sequence[str]
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.
allowExitCodes This property is required. List<Number>
Allow this build step to fail without failing the entire build if and only if the exit code is one of the specified codes. If allow_failure is also specified, this field will take precedence.
allowFailure This property is required. Boolean
Allow this build step to fail without failing the entire build. If false, the entire build will fail if this step fails. Otherwise, the build will succeed, but this step will still have a failure status. Error information will be reported in the failure_detail field.
args This property is required. List<String>
A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.
automapSubstitutions This property is required. Boolean
Option to include built-in and custom substitutions as env variables for this build step. This option will override the global option in BuildOption.
dir This property is required. String
Working directory to use when running this step's container. If this value is a relative path, it is relative to the build's working directory. If this value is absolute, it may be outside the build's working directory, in which case the contents of the path may not be persisted across build step executions, unless a volume for that path is specified. If the build specifies a RepoSource with dir and a step with a dir, which specifies an absolute path, the RepoSource dir is ignored for the step's execution.
entrypoint This property is required. String
Entrypoint to be used instead of the build step image's default entrypoint. If unset, the image's default entrypoint is used.
env This property is required. List<String>
A list of environment variable definitions to be used when running a step. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".
exitCode This property is required. Number
Return code from running the step.
name This property is required. String
The name of the container image that will run this particular build step. If the image is available in the host's Docker daemon's cache, it will be run directly. If not, the host will attempt to pull the image first, using the builder service account's credentials if necessary. The Docker daemon's cache will already have the latest versions of all of the officially supported build steps (https://github.com/GoogleCloudPlatform/cloud-builders). The Docker daemon will also have cached many of the layers for some popular images, like "ubuntu", "debian", but they will be refreshed at the time you attempt to use them. If you built an image in a previous build step, it will be stored in the host's Docker daemon's cache and is available to use as the name for a later build step.
pullTiming This property is required. Property Map
Stores timing information for pulling this build step's builder image only.
script This property is required. String
A shell script to be executed in the step. When script is provided, the user cannot specify the entrypoint or args.
secretEnv This property is required. List<String>
A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's Secret.
status This property is required. String
Status of the build step. At this time, build step status is only updated on build completion; step status is not updated in real-time as the build progresses.
timeout This property is required. String
Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out.
timing This property is required. Property Map
Stores timing information for executing this build step.
volumes This property is required. List<Property Map>
List of volumes to mount into the build step. Each volume is created as an empty volume prior to execution of the build step. Upon completion of the build, volumes and their contents are discarded. Using a named volume in only one step is not valid as it is indicative of a build request with an incorrect configuration.
waitFor This property is required. List<String>
The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in wait_for have completed successfully. If wait_for is empty, this build step will start when all previous build steps in the Build.Steps list have completed successfully.

BuiltImageResponse
, BuiltImageResponseArgs

Digest This property is required. string
Docker Registry 2.0 digest.
Name This property is required. string
Name used to push the container image to Google Container Registry, as presented to docker push.
PushTiming This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.TimeSpanResponse
Stores timing information for pushing the specified image.
Digest This property is required. string
Docker Registry 2.0 digest.
Name This property is required. string
Name used to push the container image to Google Container Registry, as presented to docker push.
PushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified image.
digest This property is required. String
Docker Registry 2.0 digest.
name This property is required. String
Name used to push the container image to Google Container Registry, as presented to docker push.
pushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified image.
digest This property is required. string
Docker Registry 2.0 digest.
name This property is required. string
Name used to push the container image to Google Container Registry, as presented to docker push.
pushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified image.
digest This property is required. str
Docker Registry 2.0 digest.
name This property is required. str
Name used to push the container image to Google Container Registry, as presented to docker push.
push_timing This property is required. TimeSpanResponse
Stores timing information for pushing the specified image.
digest This property is required. String
Docker Registry 2.0 digest.
name This property is required. String
Name used to push the container image to Google Container Registry, as presented to docker push.
pushTiming This property is required. Property Map
Stores timing information for pushing the specified image.

ConnectedRepository
, ConnectedRepositoryArgs

Repository This property is required. string
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
Dir string
Directory, relative to the source root, in which to run the build.
Revision string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
Repository This property is required. string
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
Dir string
Directory, relative to the source root, in which to run the build.
Revision string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
repository This property is required. String
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
dir String
Directory, relative to the source root, in which to run the build.
revision String
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
repository This property is required. string
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
dir string
Directory, relative to the source root, in which to run the build.
revision string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
repository This property is required. str
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
dir str
Directory, relative to the source root, in which to run the build.
revision str
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
repository This property is required. String
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
dir String
Directory, relative to the source root, in which to run the build.
revision String
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.

ConnectedRepositoryResponse
, ConnectedRepositoryResponseArgs

Dir This property is required. string
Directory, relative to the source root, in which to run the build.
Repository This property is required. string
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
Revision This property is required. string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
Dir This property is required. string
Directory, relative to the source root, in which to run the build.
Repository This property is required. string
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
Revision This property is required. string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
dir This property is required. String
Directory, relative to the source root, in which to run the build.
repository This property is required. String
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
revision This property is required. String
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
dir This property is required. string
Directory, relative to the source root, in which to run the build.
repository This property is required. string
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
revision This property is required. string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
dir This property is required. str
Directory, relative to the source root, in which to run the build.
repository This property is required. str
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
revision This property is required. str
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
dir This property is required. String
Directory, relative to the source root, in which to run the build.
repository This property is required. String
Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
revision This property is required. String
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.

FailureInfoResponse
, FailureInfoResponseArgs

Detail This property is required. string
Explains the failure issue in more detail using hard-coded text.
Type This property is required. string
The name of the failure.
Detail This property is required. string
Explains the failure issue in more detail using hard-coded text.
Type This property is required. string
The name of the failure.
detail This property is required. String
Explains the failure issue in more detail using hard-coded text.
type This property is required. String
The name of the failure.
detail This property is required. string
Explains the failure issue in more detail using hard-coded text.
type This property is required. string
The name of the failure.
detail This property is required. str
Explains the failure issue in more detail using hard-coded text.
type This property is required. str
The name of the failure.
detail This property is required. String
Explains the failure issue in more detail using hard-coded text.
type This property is required. String
The name of the failure.

FileHashesResponse
, FileHashesResponseArgs

FileHash This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.HashResponse>
Collection of file hashes.
FileHash This property is required. []HashResponse
Collection of file hashes.
fileHash This property is required. List<HashResponse>
Collection of file hashes.
fileHash This property is required. HashResponse[]
Collection of file hashes.
file_hash This property is required. Sequence[HashResponse]
Collection of file hashes.
fileHash This property is required. List<Property Map>
Collection of file hashes.

GitSource
, GitSourceArgs

Dir string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
Revision string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
Url string
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.
Dir string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
Revision string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
Url string
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.
dir String
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
revision String
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
url String
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.
dir string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
revision string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
url string
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.
dir str
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
revision str
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
url str
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.
dir String
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
revision String
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
url String
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.

GitSourceResponse
, GitSourceResponseArgs

Dir This property is required. string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
Revision This property is required. string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
Url This property is required. string
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.
Dir This property is required. string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
Revision This property is required. string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
Url This property is required. string
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.
dir This property is required. String
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
revision This property is required. String
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
url This property is required. String
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.
dir This property is required. string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
revision This property is required. string
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
url This property is required. string
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.
dir This property is required. str
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
revision This property is required. str
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
url This property is required. str
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.
dir This property is required. String
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
revision This property is required. String
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.
url This property is required. String
Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.

HashResponse
, HashResponseArgs

Type This property is required. string
The type of hash that was performed.
Value This property is required. string
The hash value.
Type This property is required. string
The type of hash that was performed.
Value This property is required. string
The hash value.
type This property is required. String
The type of hash that was performed.
value This property is required. String
The hash value.
type This property is required. string
The type of hash that was performed.
value This property is required. string
The hash value.
type This property is required. str
The type of hash that was performed.
value This property is required. str
The hash value.
type This property is required. String
The type of hash that was performed.
value This property is required. String
The hash value.

InlineSecret
, InlineSecretArgs

EnvMap Dictionary<string, string>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
KmsKeyName string
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
EnvMap map[string]string
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
KmsKeyName string
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
envMap Map<String,String>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName String
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
envMap {[key: string]: string}
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName string
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
env_map Mapping[str, str]
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kms_key_name str
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
envMap Map<String>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName String
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/

InlineSecretResponse
, InlineSecretResponseArgs

EnvMap This property is required. Dictionary<string, string>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
KmsKeyName This property is required. string
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
EnvMap This property is required. map[string]string
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
KmsKeyName This property is required. string
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
envMap This property is required. Map<String,String>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName This property is required. String
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
envMap This property is required. {[key: string]: string}
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName This property is required. string
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
env_map This property is required. Mapping[str, str]
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kms_key_name This property is required. str
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
envMap This property is required. Map<String>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName This property is required. String
Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/

MavenArtifact
, MavenArtifactArgs

ArtifactId string
Maven artifactId value used when uploading the artifact to Artifact Registry.
GroupId string
Maven groupId value used when uploading the artifact to Artifact Registry.
Path string
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
Repository string
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
Version string
Maven version value used when uploading the artifact to Artifact Registry.
ArtifactId string
Maven artifactId value used when uploading the artifact to Artifact Registry.
GroupId string
Maven groupId value used when uploading the artifact to Artifact Registry.
Path string
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
Repository string
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
Version string
Maven version value used when uploading the artifact to Artifact Registry.
artifactId String
Maven artifactId value used when uploading the artifact to Artifact Registry.
groupId String
Maven groupId value used when uploading the artifact to Artifact Registry.
path String
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
repository String
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
version String
Maven version value used when uploading the artifact to Artifact Registry.
artifactId string
Maven artifactId value used when uploading the artifact to Artifact Registry.
groupId string
Maven groupId value used when uploading the artifact to Artifact Registry.
path string
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
repository string
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
version string
Maven version value used when uploading the artifact to Artifact Registry.
artifact_id str
Maven artifactId value used when uploading the artifact to Artifact Registry.
group_id str
Maven groupId value used when uploading the artifact to Artifact Registry.
path str
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
repository str
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
version str
Maven version value used when uploading the artifact to Artifact Registry.
artifactId String
Maven artifactId value used when uploading the artifact to Artifact Registry.
groupId String
Maven groupId value used when uploading the artifact to Artifact Registry.
path String
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
repository String
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
version String
Maven version value used when uploading the artifact to Artifact Registry.

MavenArtifactResponse
, MavenArtifactResponseArgs

ArtifactId This property is required. string
Maven artifactId value used when uploading the artifact to Artifact Registry.
GroupId This property is required. string
Maven groupId value used when uploading the artifact to Artifact Registry.
Path This property is required. string
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
Repository This property is required. string
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
Version This property is required. string
Maven version value used when uploading the artifact to Artifact Registry.
ArtifactId This property is required. string
Maven artifactId value used when uploading the artifact to Artifact Registry.
GroupId This property is required. string
Maven groupId value used when uploading the artifact to Artifact Registry.
Path This property is required. string
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
Repository This property is required. string
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
Version This property is required. string
Maven version value used when uploading the artifact to Artifact Registry.
artifactId This property is required. String
Maven artifactId value used when uploading the artifact to Artifact Registry.
groupId This property is required. String
Maven groupId value used when uploading the artifact to Artifact Registry.
path This property is required. String
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
repository This property is required. String
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
version This property is required. String
Maven version value used when uploading the artifact to Artifact Registry.
artifactId This property is required. string
Maven artifactId value used when uploading the artifact to Artifact Registry.
groupId This property is required. string
Maven groupId value used when uploading the artifact to Artifact Registry.
path This property is required. string
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
repository This property is required. string
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
version This property is required. string
Maven version value used when uploading the artifact to Artifact Registry.
artifact_id This property is required. str
Maven artifactId value used when uploading the artifact to Artifact Registry.
group_id This property is required. str
Maven groupId value used when uploading the artifact to Artifact Registry.
path This property is required. str
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
repository This property is required. str
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
version This property is required. str
Maven version value used when uploading the artifact to Artifact Registry.
artifactId This property is required. String
Maven artifactId value used when uploading the artifact to Artifact Registry.
groupId This property is required. String
Maven groupId value used when uploading the artifact to Artifact Registry.
path This property is required. String
Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
repository This property is required. String
Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
version This property is required. String
Maven version value used when uploading the artifact to Artifact Registry.

NpmPackage
, NpmPackageArgs

PackagePath string
Path to the package.json. e.g. workspace/path/to/package
Repository string
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
PackagePath string
Path to the package.json. e.g. workspace/path/to/package
Repository string
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
packagePath String
Path to the package.json. e.g. workspace/path/to/package
repository String
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
packagePath string
Path to the package.json. e.g. workspace/path/to/package
repository string
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
package_path str
Path to the package.json. e.g. workspace/path/to/package
repository str
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
packagePath String
Path to the package.json. e.g. workspace/path/to/package
repository String
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.

NpmPackageResponse
, NpmPackageResponseArgs

PackagePath This property is required. string
Path to the package.json. e.g. workspace/path/to/package
Repository This property is required. string
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
PackagePath This property is required. string
Path to the package.json. e.g. workspace/path/to/package
Repository This property is required. string
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
packagePath This property is required. String
Path to the package.json. e.g. workspace/path/to/package
repository This property is required. String
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
packagePath This property is required. string
Path to the package.json. e.g. workspace/path/to/package
repository This property is required. string
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
package_path This property is required. str
Path to the package.json. e.g. workspace/path/to/package
repository This property is required. str
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
packagePath This property is required. String
Path to the package.json. e.g. workspace/path/to/package
repository This property is required. String
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.

PoolOption
, PoolOptionArgs

Name string
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
Name string
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
name String
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
name string
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
name str
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
name String
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}

PoolOptionResponse
, PoolOptionResponseArgs

Name This property is required. string
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
Name This property is required. string
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
name This property is required. String
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
name This property is required. string
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
name This property is required. str
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
name This property is required. String
The WorkerPool resource to execute the build on. You must have cloudbuild.workerpools.use on the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}

PythonPackage
, PythonPackageArgs

Paths List<string>
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
Repository string
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
Paths []string
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
Repository string
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
paths List<String>
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
repository String
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
paths string[]
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
repository string
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
paths Sequence[str]
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
repository str
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
paths List<String>
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
repository String
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.

PythonPackageResponse
, PythonPackageResponseArgs

Paths This property is required. List<string>
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
Repository This property is required. string
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
Paths This property is required. []string
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
Repository This property is required. string
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
paths This property is required. List<String>
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
repository This property is required. String
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
paths This property is required. string[]
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
repository This property is required. string
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
paths This property is required. Sequence[str]
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
repository This property is required. str
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
paths This property is required. List<String>
Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
repository This property is required. String
Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.

RepoSource
, RepoSourceArgs

BranchName string
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
CommitSha string
Explicit commit SHA to build.
Dir string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
InvertRegex bool
Only trigger a build if the revision regex does NOT match the revision regex.
Project string
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
RepoName string
Name of the Cloud Source Repository.
Substitutions Dictionary<string, string>
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
TagName string
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
BranchName string
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
CommitSha string
Explicit commit SHA to build.
Dir string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
InvertRegex bool
Only trigger a build if the revision regex does NOT match the revision regex.
Project string
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
RepoName string
Name of the Cloud Source Repository.
Substitutions map[string]string
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
TagName string
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
branchName String
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
commitSha String
Explicit commit SHA to build.
dir String
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
invertRegex Boolean
Only trigger a build if the revision regex does NOT match the revision regex.
project String
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
repoName String
Name of the Cloud Source Repository.
substitutions Map<String,String>
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
tagName String
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
branchName string
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
commitSha string
Explicit commit SHA to build.
dir string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
invertRegex boolean
Only trigger a build if the revision regex does NOT match the revision regex.
project string
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
repoName string
Name of the Cloud Source Repository.
substitutions {[key: string]: string}
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
tagName string
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
branch_name str
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
commit_sha str
Explicit commit SHA to build.
dir str
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
invert_regex bool
Only trigger a build if the revision regex does NOT match the revision regex.
project str
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
repo_name str
Name of the Cloud Source Repository.
substitutions Mapping[str, str]
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
tag_name str
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
branchName String
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
commitSha String
Explicit commit SHA to build.
dir String
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
invertRegex Boolean
Only trigger a build if the revision regex does NOT match the revision regex.
project String
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
repoName String
Name of the Cloud Source Repository.
substitutions Map<String>
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
tagName String
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax

RepoSourceResponse
, RepoSourceResponseArgs

BranchName This property is required. string
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
CommitSha This property is required. string
Explicit commit SHA to build.
Dir This property is required. string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
InvertRegex This property is required. bool
Only trigger a build if the revision regex does NOT match the revision regex.
Project This property is required. string
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
RepoName This property is required. string
Name of the Cloud Source Repository.
Substitutions This property is required. Dictionary<string, string>
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
TagName This property is required. string
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
BranchName This property is required. string
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
CommitSha This property is required. string
Explicit commit SHA to build.
Dir This property is required. string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
InvertRegex This property is required. bool
Only trigger a build if the revision regex does NOT match the revision regex.
Project This property is required. string
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
RepoName This property is required. string
Name of the Cloud Source Repository.
Substitutions This property is required. map[string]string
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
TagName This property is required. string
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
branchName This property is required. String
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
commitSha This property is required. String
Explicit commit SHA to build.
dir This property is required. String
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
invertRegex This property is required. Boolean
Only trigger a build if the revision regex does NOT match the revision regex.
project This property is required. String
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
repoName This property is required. String
Name of the Cloud Source Repository.
substitutions This property is required. Map<String,String>
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
tagName This property is required. String
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
branchName This property is required. string
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
commitSha This property is required. string
Explicit commit SHA to build.
dir This property is required. string
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
invertRegex This property is required. boolean
Only trigger a build if the revision regex does NOT match the revision regex.
project This property is required. string
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
repoName This property is required. string
Name of the Cloud Source Repository.
substitutions This property is required. {[key: string]: string}
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
tagName This property is required. string
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
branch_name This property is required. str
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
commit_sha This property is required. str
Explicit commit SHA to build.
dir This property is required. str
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
invert_regex This property is required. bool
Only trigger a build if the revision regex does NOT match the revision regex.
project This property is required. str
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
repo_name This property is required. str
Name of the Cloud Source Repository.
substitutions This property is required. Mapping[str, str]
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
tag_name This property is required. str
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
branchName This property is required. String
Regex matching branches to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
commitSha This property is required. String
Explicit commit SHA to build.
dir This property is required. String
Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.
invertRegex This property is required. Boolean
Only trigger a build if the revision regex does NOT match the revision regex.
project This property is required. String
ID of the project that owns the Cloud Source Repository. If omitted, the project ID requesting the build is assumed.
repoName This property is required. String
Name of the Cloud Source Repository.
substitutions This property is required. Map<String>
Substitutions to use in a triggered build. Should only be used with RunBuildTrigger
tagName This property is required. String
Regex matching tags to build. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax

ResultsResponse
, ResultsResponseArgs

ArtifactManifest This property is required. string
Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
ArtifactTiming This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.TimeSpanResponse
Time to push all non-container artifacts to Cloud Storage.
BuildStepImages This property is required. List<string>
List of build step digests, in the order corresponding to build step indices.
BuildStepOutputs This property is required. List<string>
List of build step outputs, produced by builder images, in the order corresponding to build step indices. Cloud Builders can produce this output by writing to $BUILDER_OUTPUT/output. Only the first 50KB of data is stored.
Images This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.BuiltImageResponse>
Container images that were built as a part of the build.
MavenArtifacts This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.UploadedMavenArtifactResponse>
Maven artifacts uploaded to Artifact Registry at the end of the build.
NpmPackages This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.UploadedNpmPackageResponse>
Npm packages uploaded to Artifact Registry at the end of the build.
NumArtifacts This property is required. string
Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
PythonPackages This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.UploadedPythonPackageResponse>
Python artifacts uploaded to Artifact Registry at the end of the build.
ArtifactManifest This property is required. string
Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
ArtifactTiming This property is required. TimeSpanResponse
Time to push all non-container artifacts to Cloud Storage.
BuildStepImages This property is required. []string
List of build step digests, in the order corresponding to build step indices.
BuildStepOutputs This property is required. []string
List of build step outputs, produced by builder images, in the order corresponding to build step indices. Cloud Builders can produce this output by writing to $BUILDER_OUTPUT/output. Only the first 50KB of data is stored.
Images This property is required. []BuiltImageResponse
Container images that were built as a part of the build.
MavenArtifacts This property is required. []UploadedMavenArtifactResponse
Maven artifacts uploaded to Artifact Registry at the end of the build.
NpmPackages This property is required. []UploadedNpmPackageResponse
Npm packages uploaded to Artifact Registry at the end of the build.
NumArtifacts This property is required. string
Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
PythonPackages This property is required. []UploadedPythonPackageResponse
Python artifacts uploaded to Artifact Registry at the end of the build.
artifactManifest This property is required. String
Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
artifactTiming This property is required. TimeSpanResponse
Time to push all non-container artifacts to Cloud Storage.
buildStepImages This property is required. List<String>
List of build step digests, in the order corresponding to build step indices.
buildStepOutputs This property is required. List<String>
List of build step outputs, produced by builder images, in the order corresponding to build step indices. Cloud Builders can produce this output by writing to $BUILDER_OUTPUT/output. Only the first 50KB of data is stored.
images This property is required. List<BuiltImageResponse>
Container images that were built as a part of the build.
mavenArtifacts This property is required. List<UploadedMavenArtifactResponse>
Maven artifacts uploaded to Artifact Registry at the end of the build.
npmPackages This property is required. List<UploadedNpmPackageResponse>
Npm packages uploaded to Artifact Registry at the end of the build.
numArtifacts This property is required. String
Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
pythonPackages This property is required. List<UploadedPythonPackageResponse>
Python artifacts uploaded to Artifact Registry at the end of the build.
artifactManifest This property is required. string
Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
artifactTiming This property is required. TimeSpanResponse
Time to push all non-container artifacts to Cloud Storage.
buildStepImages This property is required. string[]
List of build step digests, in the order corresponding to build step indices.
buildStepOutputs This property is required. string[]
List of build step outputs, produced by builder images, in the order corresponding to build step indices. Cloud Builders can produce this output by writing to $BUILDER_OUTPUT/output. Only the first 50KB of data is stored.
images This property is required. BuiltImageResponse[]
Container images that were built as a part of the build.
mavenArtifacts This property is required. UploadedMavenArtifactResponse[]
Maven artifacts uploaded to Artifact Registry at the end of the build.
npmPackages This property is required. UploadedNpmPackageResponse[]
Npm packages uploaded to Artifact Registry at the end of the build.
numArtifacts This property is required. string
Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
pythonPackages This property is required. UploadedPythonPackageResponse[]
Python artifacts uploaded to Artifact Registry at the end of the build.
artifact_manifest This property is required. str
Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
artifact_timing This property is required. TimeSpanResponse
Time to push all non-container artifacts to Cloud Storage.
build_step_images This property is required. Sequence[str]
List of build step digests, in the order corresponding to build step indices.
build_step_outputs This property is required. Sequence[str]
List of build step outputs, produced by builder images, in the order corresponding to build step indices. Cloud Builders can produce this output by writing to $BUILDER_OUTPUT/output. Only the first 50KB of data is stored.
images This property is required. Sequence[BuiltImageResponse]
Container images that were built as a part of the build.
maven_artifacts This property is required. Sequence[UploadedMavenArtifactResponse]
Maven artifacts uploaded to Artifact Registry at the end of the build.
npm_packages This property is required. Sequence[UploadedNpmPackageResponse]
Npm packages uploaded to Artifact Registry at the end of the build.
num_artifacts This property is required. str
Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
python_packages This property is required. Sequence[UploadedPythonPackageResponse]
Python artifacts uploaded to Artifact Registry at the end of the build.
artifactManifest This property is required. String
Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
artifactTiming This property is required. Property Map
Time to push all non-container artifacts to Cloud Storage.
buildStepImages This property is required. List<String>
List of build step digests, in the order corresponding to build step indices.
buildStepOutputs This property is required. List<String>
List of build step outputs, produced by builder images, in the order corresponding to build step indices. Cloud Builders can produce this output by writing to $BUILDER_OUTPUT/output. Only the first 50KB of data is stored.
images This property is required. List<Property Map>
Container images that were built as a part of the build.
mavenArtifacts This property is required. List<Property Map>
Maven artifacts uploaded to Artifact Registry at the end of the build.
npmPackages This property is required. List<Property Map>
Npm packages uploaded to Artifact Registry at the end of the build.
numArtifacts This property is required. String
Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
pythonPackages This property is required. List<Property Map>
Python artifacts uploaded to Artifact Registry at the end of the build.

Secret
, SecretArgs

KmsKeyName string
Cloud KMS key name to use to decrypt these envs.
SecretEnv Dictionary<string, string>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
KmsKeyName string
Cloud KMS key name to use to decrypt these envs.
SecretEnv map[string]string
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName String
Cloud KMS key name to use to decrypt these envs.
secretEnv Map<String,String>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName string
Cloud KMS key name to use to decrypt these envs.
secretEnv {[key: string]: string}
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kms_key_name str
Cloud KMS key name to use to decrypt these envs.
secret_env Mapping[str, str]
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName String
Cloud KMS key name to use to decrypt these envs.
secretEnv Map<String>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.

SecretManagerSecret
, SecretManagerSecretArgs

Env string
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
VersionName string
Resource name of the SecretVersion. In format: projects//secrets//versions/*
Env string
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
VersionName string
Resource name of the SecretVersion. In format: projects//secrets//versions/*
env String
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
versionName String
Resource name of the SecretVersion. In format: projects//secrets//versions/*
env string
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
versionName string
Resource name of the SecretVersion. In format: projects//secrets//versions/*
env str
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
version_name str
Resource name of the SecretVersion. In format: projects//secrets//versions/*
env String
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
versionName String
Resource name of the SecretVersion. In format: projects//secrets//versions/*

SecretManagerSecretResponse
, SecretManagerSecretResponseArgs

Env This property is required. string
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
VersionName This property is required. string
Resource name of the SecretVersion. In format: projects//secrets//versions/*
Env This property is required. string
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
VersionName This property is required. string
Resource name of the SecretVersion. In format: projects//secrets//versions/*
env This property is required. String
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
versionName This property is required. String
Resource name of the SecretVersion. In format: projects//secrets//versions/*
env This property is required. string
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
versionName This property is required. string
Resource name of the SecretVersion. In format: projects//secrets//versions/*
env This property is required. str
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
version_name This property is required. str
Resource name of the SecretVersion. In format: projects//secrets//versions/*
env This property is required. String
Environment variable name to associate with the secret. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step.
versionName This property is required. String
Resource name of the SecretVersion. In format: projects//secrets//versions/*

SecretResponse
, SecretResponseArgs

KmsKeyName This property is required. string
Cloud KMS key name to use to decrypt these envs.
SecretEnv This property is required. Dictionary<string, string>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
KmsKeyName This property is required. string
Cloud KMS key name to use to decrypt these envs.
SecretEnv This property is required. map[string]string
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName This property is required. String
Cloud KMS key name to use to decrypt these envs.
secretEnv This property is required. Map<String,String>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName This property is required. string
Cloud KMS key name to use to decrypt these envs.
secretEnv This property is required. {[key: string]: string}
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kms_key_name This property is required. str
Cloud KMS key name to use to decrypt these envs.
secret_env This property is required. Mapping[str, str]
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.
kmsKeyName This property is required. String
Cloud KMS key name to use to decrypt these envs.
secretEnv This property is required. Map<String>
Map of environment variable name to its encrypted value. Secret environment variables must be unique across all of a build's secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build's secrets.

Secrets
, SecretsArgs

Inline List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.InlineSecret>
Secrets encrypted with KMS key and the associated secret environment variable.
SecretManager List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.SecretManagerSecret>
Secrets in Secret Manager and associated secret environment variable.
Inline []InlineSecret
Secrets encrypted with KMS key and the associated secret environment variable.
SecretManager []SecretManagerSecret
Secrets in Secret Manager and associated secret environment variable.
inline List<InlineSecret>
Secrets encrypted with KMS key and the associated secret environment variable.
secretManager List<SecretManagerSecret>
Secrets in Secret Manager and associated secret environment variable.
inline InlineSecret[]
Secrets encrypted with KMS key and the associated secret environment variable.
secretManager SecretManagerSecret[]
Secrets in Secret Manager and associated secret environment variable.
inline Sequence[InlineSecret]
Secrets encrypted with KMS key and the associated secret environment variable.
secret_manager Sequence[SecretManagerSecret]
Secrets in Secret Manager and associated secret environment variable.
inline List<Property Map>
Secrets encrypted with KMS key and the associated secret environment variable.
secretManager List<Property Map>
Secrets in Secret Manager and associated secret environment variable.

SecretsResponse
, SecretsResponseArgs

Inline This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.InlineSecretResponse>
Secrets encrypted with KMS key and the associated secret environment variable.
SecretManager This property is required. List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.SecretManagerSecretResponse>
Secrets in Secret Manager and associated secret environment variable.
Inline This property is required. []InlineSecretResponse
Secrets encrypted with KMS key and the associated secret environment variable.
SecretManager This property is required. []SecretManagerSecretResponse
Secrets in Secret Manager and associated secret environment variable.
inline This property is required. List<InlineSecretResponse>
Secrets encrypted with KMS key and the associated secret environment variable.
secretManager This property is required. List<SecretManagerSecretResponse>
Secrets in Secret Manager and associated secret environment variable.
inline This property is required. InlineSecretResponse[]
Secrets encrypted with KMS key and the associated secret environment variable.
secretManager This property is required. SecretManagerSecretResponse[]
Secrets in Secret Manager and associated secret environment variable.
inline This property is required. Sequence[InlineSecretResponse]
Secrets encrypted with KMS key and the associated secret environment variable.
secret_manager This property is required. Sequence[SecretManagerSecretResponse]
Secrets in Secret Manager and associated secret environment variable.
inline This property is required. List<Property Map>
Secrets encrypted with KMS key and the associated secret environment variable.
secretManager This property is required. List<Property Map>
Secrets in Secret Manager and associated secret environment variable.

Source
, SourceArgs

ConnectedRepository Pulumi.GoogleNative.CloudBuild.V1.Inputs.ConnectedRepository
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
GitSource Pulumi.GoogleNative.CloudBuild.V1.Inputs.GitSource
If provided, get the source from this Git repository.
RepoSource Pulumi.GoogleNative.CloudBuild.V1.Inputs.RepoSource
If provided, get the source from this location in a Cloud Source Repository.
StorageSource Pulumi.GoogleNative.CloudBuild.V1.Inputs.StorageSource
If provided, get the source from this location in Cloud Storage.
StorageSourceManifest Pulumi.GoogleNative.CloudBuild.V1.Inputs.StorageSourceManifest
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
ConnectedRepository ConnectedRepository
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
GitSource GitSource
If provided, get the source from this Git repository.
RepoSource RepoSource
If provided, get the source from this location in a Cloud Source Repository.
StorageSource StorageSource
If provided, get the source from this location in Cloud Storage.
StorageSourceManifest StorageSourceManifest
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
connectedRepository ConnectedRepository
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
gitSource GitSource
If provided, get the source from this Git repository.
repoSource RepoSource
If provided, get the source from this location in a Cloud Source Repository.
storageSource StorageSource
If provided, get the source from this location in Cloud Storage.
storageSourceManifest StorageSourceManifest
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
connectedRepository ConnectedRepository
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
gitSource GitSource
If provided, get the source from this Git repository.
repoSource RepoSource
If provided, get the source from this location in a Cloud Source Repository.
storageSource StorageSource
If provided, get the source from this location in Cloud Storage.
storageSourceManifest StorageSourceManifest
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
connected_repository ConnectedRepository
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
git_source GitSource
If provided, get the source from this Git repository.
repo_source RepoSource
If provided, get the source from this location in a Cloud Source Repository.
storage_source StorageSource
If provided, get the source from this location in Cloud Storage.
storage_source_manifest StorageSourceManifest
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
connectedRepository Property Map
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
gitSource Property Map
If provided, get the source from this Git repository.
repoSource Property Map
If provided, get the source from this location in a Cloud Source Repository.
storageSource Property Map
If provided, get the source from this location in Cloud Storage.
storageSourceManifest Property Map
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.

SourceProvenanceResponse
, SourceProvenanceResponseArgs

FileHashes This property is required. Dictionary<string, string>
Hash(es) of the build source, which can be used to verify that the original source integrity was maintained in the build. Note that FileHashes will only be populated if BuildOptions has requested a SourceProvenanceHash. The keys to this map are file paths used as build source and the values contain the hash values for those files. If the build source came in a single package such as a gzipped tarfile (.tar.gz), the FileHash will be for the single path to that file.
ResolvedConnectedRepository This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.ConnectedRepositoryResponse
A copy of the build's source.connected_repository, if exists, with any revisions resolved.
ResolvedGitSource This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.GitSourceResponse
A copy of the build's source.git_source, if exists, with any revisions resolved.
ResolvedRepoSource This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.RepoSourceResponse
A copy of the build's source.repo_source, if exists, with any revisions resolved.
ResolvedStorageSource This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.StorageSourceResponse
A copy of the build's source.storage_source, if exists, with any generations resolved.
ResolvedStorageSourceManifest This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.StorageSourceManifestResponse
A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
FileHashes This property is required. map[string]string
Hash(es) of the build source, which can be used to verify that the original source integrity was maintained in the build. Note that FileHashes will only be populated if BuildOptions has requested a SourceProvenanceHash. The keys to this map are file paths used as build source and the values contain the hash values for those files. If the build source came in a single package such as a gzipped tarfile (.tar.gz), the FileHash will be for the single path to that file.
ResolvedConnectedRepository This property is required. ConnectedRepositoryResponse
A copy of the build's source.connected_repository, if exists, with any revisions resolved.
ResolvedGitSource This property is required. GitSourceResponse
A copy of the build's source.git_source, if exists, with any revisions resolved.
ResolvedRepoSource This property is required. RepoSourceResponse
A copy of the build's source.repo_source, if exists, with any revisions resolved.
ResolvedStorageSource This property is required. StorageSourceResponse
A copy of the build's source.storage_source, if exists, with any generations resolved.
ResolvedStorageSourceManifest This property is required. StorageSourceManifestResponse
A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
fileHashes This property is required. Map<String,String>
Hash(es) of the build source, which can be used to verify that the original source integrity was maintained in the build. Note that FileHashes will only be populated if BuildOptions has requested a SourceProvenanceHash. The keys to this map are file paths used as build source and the values contain the hash values for those files. If the build source came in a single package such as a gzipped tarfile (.tar.gz), the FileHash will be for the single path to that file.
resolvedConnectedRepository This property is required. ConnectedRepositoryResponse
A copy of the build's source.connected_repository, if exists, with any revisions resolved.
resolvedGitSource This property is required. GitSourceResponse
A copy of the build's source.git_source, if exists, with any revisions resolved.
resolvedRepoSource This property is required. RepoSourceResponse
A copy of the build's source.repo_source, if exists, with any revisions resolved.
resolvedStorageSource This property is required. StorageSourceResponse
A copy of the build's source.storage_source, if exists, with any generations resolved.
resolvedStorageSourceManifest This property is required. StorageSourceManifestResponse
A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
fileHashes This property is required. {[key: string]: string}
Hash(es) of the build source, which can be used to verify that the original source integrity was maintained in the build. Note that FileHashes will only be populated if BuildOptions has requested a SourceProvenanceHash. The keys to this map are file paths used as build source and the values contain the hash values for those files. If the build source came in a single package such as a gzipped tarfile (.tar.gz), the FileHash will be for the single path to that file.
resolvedConnectedRepository This property is required. ConnectedRepositoryResponse
A copy of the build's source.connected_repository, if exists, with any revisions resolved.
resolvedGitSource This property is required. GitSourceResponse
A copy of the build's source.git_source, if exists, with any revisions resolved.
resolvedRepoSource This property is required. RepoSourceResponse
A copy of the build's source.repo_source, if exists, with any revisions resolved.
resolvedStorageSource This property is required. StorageSourceResponse
A copy of the build's source.storage_source, if exists, with any generations resolved.
resolvedStorageSourceManifest This property is required. StorageSourceManifestResponse
A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
file_hashes This property is required. Mapping[str, str]
Hash(es) of the build source, which can be used to verify that the original source integrity was maintained in the build. Note that FileHashes will only be populated if BuildOptions has requested a SourceProvenanceHash. The keys to this map are file paths used as build source and the values contain the hash values for those files. If the build source came in a single package such as a gzipped tarfile (.tar.gz), the FileHash will be for the single path to that file.
resolved_connected_repository This property is required. ConnectedRepositoryResponse
A copy of the build's source.connected_repository, if exists, with any revisions resolved.
resolved_git_source This property is required. GitSourceResponse
A copy of the build's source.git_source, if exists, with any revisions resolved.
resolved_repo_source This property is required. RepoSourceResponse
A copy of the build's source.repo_source, if exists, with any revisions resolved.
resolved_storage_source This property is required. StorageSourceResponse
A copy of the build's source.storage_source, if exists, with any generations resolved.
resolved_storage_source_manifest This property is required. StorageSourceManifestResponse
A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
fileHashes This property is required. Map<String>
Hash(es) of the build source, which can be used to verify that the original source integrity was maintained in the build. Note that FileHashes will only be populated if BuildOptions has requested a SourceProvenanceHash. The keys to this map are file paths used as build source and the values contain the hash values for those files. If the build source came in a single package such as a gzipped tarfile (.tar.gz), the FileHash will be for the single path to that file.
resolvedConnectedRepository This property is required. Property Map
A copy of the build's source.connected_repository, if exists, with any revisions resolved.
resolvedGitSource This property is required. Property Map
A copy of the build's source.git_source, if exists, with any revisions resolved.
resolvedRepoSource This property is required. Property Map
A copy of the build's source.repo_source, if exists, with any revisions resolved.
resolvedStorageSource This property is required. Property Map
A copy of the build's source.storage_source, if exists, with any generations resolved.
resolvedStorageSourceManifest This property is required. Property Map
A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.

SourceResponse
, SourceResponseArgs

ConnectedRepository This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.ConnectedRepositoryResponse
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
GitSource This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.GitSourceResponse
If provided, get the source from this Git repository.
RepoSource This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.RepoSourceResponse
If provided, get the source from this location in a Cloud Source Repository.
StorageSource This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.StorageSourceResponse
If provided, get the source from this location in Cloud Storage.
StorageSourceManifest This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.StorageSourceManifestResponse
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
ConnectedRepository This property is required. ConnectedRepositoryResponse
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
GitSource This property is required. GitSourceResponse
If provided, get the source from this Git repository.
RepoSource This property is required. RepoSourceResponse
If provided, get the source from this location in a Cloud Source Repository.
StorageSource This property is required. StorageSourceResponse
If provided, get the source from this location in Cloud Storage.
StorageSourceManifest This property is required. StorageSourceManifestResponse
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
connectedRepository This property is required. ConnectedRepositoryResponse
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
gitSource This property is required. GitSourceResponse
If provided, get the source from this Git repository.
repoSource This property is required. RepoSourceResponse
If provided, get the source from this location in a Cloud Source Repository.
storageSource This property is required. StorageSourceResponse
If provided, get the source from this location in Cloud Storage.
storageSourceManifest This property is required. StorageSourceManifestResponse
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
connectedRepository This property is required. ConnectedRepositoryResponse
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
gitSource This property is required. GitSourceResponse
If provided, get the source from this Git repository.
repoSource This property is required. RepoSourceResponse
If provided, get the source from this location in a Cloud Source Repository.
storageSource This property is required. StorageSourceResponse
If provided, get the source from this location in Cloud Storage.
storageSourceManifest This property is required. StorageSourceManifestResponse
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
connected_repository This property is required. ConnectedRepositoryResponse
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
git_source This property is required. GitSourceResponse
If provided, get the source from this Git repository.
repo_source This property is required. RepoSourceResponse
If provided, get the source from this location in a Cloud Source Repository.
storage_source This property is required. StorageSourceResponse
If provided, get the source from this location in Cloud Storage.
storage_source_manifest This property is required. StorageSourceManifestResponse
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
connectedRepository This property is required. Property Map
Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
gitSource This property is required. Property Map
If provided, get the source from this Git repository.
repoSource This property is required. Property Map
If provided, get the source from this location in a Cloud Source Repository.
storageSource This property is required. Property Map
If provided, get the source from this location in Cloud Storage.
storageSourceManifest This property is required. Property Map
If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.

StorageSource
, StorageSourceArgs

Bucket string
Cloud Storage bucket containing the source (see Bucket Name Requirements).
Generation string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
Object string
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
SourceFetcher Pulumi.GoogleNative.CloudBuild.V1.StorageSourceSourceFetcher
Optional. Option to specify the tool to fetch the source file for the build.
Bucket string
Cloud Storage bucket containing the source (see Bucket Name Requirements).
Generation string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
Object string
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
SourceFetcher StorageSourceSourceFetcher
Optional. Option to specify the tool to fetch the source file for the build.
bucket String
Cloud Storage bucket containing the source (see Bucket Name Requirements).
generation String
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object String
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
sourceFetcher StorageSourceSourceFetcher
Optional. Option to specify the tool to fetch the source file for the build.
bucket string
Cloud Storage bucket containing the source (see Bucket Name Requirements).
generation string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object string
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
sourceFetcher StorageSourceSourceFetcher
Optional. Option to specify the tool to fetch the source file for the build.
bucket str
Cloud Storage bucket containing the source (see Bucket Name Requirements).
generation str
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object str
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
source_fetcher StorageSourceSourceFetcher
Optional. Option to specify the tool to fetch the source file for the build.
bucket String
Cloud Storage bucket containing the source (see Bucket Name Requirements).
generation String
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object String
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
sourceFetcher "SOURCE_FETCHER_UNSPECIFIED" | "GSUTIL" | "GCS_FETCHER"
Optional. Option to specify the tool to fetch the source file for the build.

StorageSourceManifest
, StorageSourceManifestArgs

Bucket string
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
Generation string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
Object string
Cloud Storage object containing the source manifest. This object must be a JSON file.
Bucket string
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
Generation string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
Object string
Cloud Storage object containing the source manifest. This object must be a JSON file.
bucket String
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
generation String
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object String
Cloud Storage object containing the source manifest. This object must be a JSON file.
bucket string
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
generation string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object string
Cloud Storage object containing the source manifest. This object must be a JSON file.
bucket str
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
generation str
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object str
Cloud Storage object containing the source manifest. This object must be a JSON file.
bucket String
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
generation String
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object String
Cloud Storage object containing the source manifest. This object must be a JSON file.

StorageSourceManifestResponse
, StorageSourceManifestResponseArgs

Bucket This property is required. string
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
Generation This property is required. string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
Object This property is required. string
Cloud Storage object containing the source manifest. This object must be a JSON file.
Bucket This property is required. string
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
Generation This property is required. string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
Object This property is required. string
Cloud Storage object containing the source manifest. This object must be a JSON file.
bucket This property is required. String
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
generation This property is required. String
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object This property is required. String
Cloud Storage object containing the source manifest. This object must be a JSON file.
bucket This property is required. string
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
generation This property is required. string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object This property is required. string
Cloud Storage object containing the source manifest. This object must be a JSON file.
bucket This property is required. str
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
generation This property is required. str
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object This property is required. str
Cloud Storage object containing the source manifest. This object must be a JSON file.
bucket This property is required. String
Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).
generation This property is required. String
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object This property is required. String
Cloud Storage object containing the source manifest. This object must be a JSON file.

StorageSourceResponse
, StorageSourceResponseArgs

Bucket This property is required. string
Cloud Storage bucket containing the source (see Bucket Name Requirements).
Generation This property is required. string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
Object This property is required. string
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
SourceFetcher This property is required. string
Optional. Option to specify the tool to fetch the source file for the build.
Bucket This property is required. string
Cloud Storage bucket containing the source (see Bucket Name Requirements).
Generation This property is required. string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
Object This property is required. string
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
SourceFetcher This property is required. string
Optional. Option to specify the tool to fetch the source file for the build.
bucket This property is required. String
Cloud Storage bucket containing the source (see Bucket Name Requirements).
generation This property is required. String
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object This property is required. String
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
sourceFetcher This property is required. String
Optional. Option to specify the tool to fetch the source file for the build.
bucket This property is required. string
Cloud Storage bucket containing the source (see Bucket Name Requirements).
generation This property is required. string
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object This property is required. string
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
sourceFetcher This property is required. string
Optional. Option to specify the tool to fetch the source file for the build.
bucket This property is required. str
Cloud Storage bucket containing the source (see Bucket Name Requirements).
generation This property is required. str
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object This property is required. str
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
source_fetcher This property is required. str
Optional. Option to specify the tool to fetch the source file for the build.
bucket This property is required. String
Cloud Storage bucket containing the source (see Bucket Name Requirements).
generation This property is required. String
Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object This property is required. String
Cloud Storage object containing the source. This object must be a zipped (.zip) or gzipped archive file (.tar.gz) containing source to build.
sourceFetcher This property is required. String
Optional. Option to specify the tool to fetch the source file for the build.

StorageSourceSourceFetcher
, StorageSourceSourceFetcherArgs

SourceFetcherUnspecified
SOURCE_FETCHER_UNSPECIFIEDUnspecified defaults to GSUTIL.
Gsutil
GSUTILUse the "gsutil" tool to download the source file.
GcsFetcher
GCS_FETCHERUse the Cloud Storage Fetcher tool to download the source file.
StorageSourceSourceFetcherSourceFetcherUnspecified
SOURCE_FETCHER_UNSPECIFIEDUnspecified defaults to GSUTIL.
StorageSourceSourceFetcherGsutil
GSUTILUse the "gsutil" tool to download the source file.
StorageSourceSourceFetcherGcsFetcher
GCS_FETCHERUse the Cloud Storage Fetcher tool to download the source file.
SourceFetcherUnspecified
SOURCE_FETCHER_UNSPECIFIEDUnspecified defaults to GSUTIL.
Gsutil
GSUTILUse the "gsutil" tool to download the source file.
GcsFetcher
GCS_FETCHERUse the Cloud Storage Fetcher tool to download the source file.
SourceFetcherUnspecified
SOURCE_FETCHER_UNSPECIFIEDUnspecified defaults to GSUTIL.
Gsutil
GSUTILUse the "gsutil" tool to download the source file.
GcsFetcher
GCS_FETCHERUse the Cloud Storage Fetcher tool to download the source file.
SOURCE_FETCHER_UNSPECIFIED
SOURCE_FETCHER_UNSPECIFIEDUnspecified defaults to GSUTIL.
GSUTIL
GSUTILUse the "gsutil" tool to download the source file.
GCS_FETCHER
GCS_FETCHERUse the Cloud Storage Fetcher tool to download the source file.
"SOURCE_FETCHER_UNSPECIFIED"
SOURCE_FETCHER_UNSPECIFIEDUnspecified defaults to GSUTIL.
"GSUTIL"
GSUTILUse the "gsutil" tool to download the source file.
"GCS_FETCHER"
GCS_FETCHERUse the Cloud Storage Fetcher tool to download the source file.

TimeSpanResponse
, TimeSpanResponseArgs

EndTime This property is required. string
End of time span.
StartTime This property is required. string
Start of time span.
EndTime This property is required. string
End of time span.
StartTime This property is required. string
Start of time span.
endTime This property is required. String
End of time span.
startTime This property is required. String
Start of time span.
endTime This property is required. string
End of time span.
startTime This property is required. string
Start of time span.
end_time This property is required. str
End of time span.
start_time This property is required. str
Start of time span.
endTime This property is required. String
End of time span.
startTime This property is required. String
Start of time span.

UploadedMavenArtifactResponse
, UploadedMavenArtifactResponseArgs

FileHashes This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.FileHashesResponse
Hash types and values of the Maven Artifact.
PushTiming This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.TimeSpanResponse
Stores timing information for pushing the specified artifact.
Uri This property is required. string
URI of the uploaded artifact.
FileHashes This property is required. FileHashesResponse
Hash types and values of the Maven Artifact.
PushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
Uri This property is required. string
URI of the uploaded artifact.
fileHashes This property is required. FileHashesResponse
Hash types and values of the Maven Artifact.
pushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
uri This property is required. String
URI of the uploaded artifact.
fileHashes This property is required. FileHashesResponse
Hash types and values of the Maven Artifact.
pushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
uri This property is required. string
URI of the uploaded artifact.
file_hashes This property is required. FileHashesResponse
Hash types and values of the Maven Artifact.
push_timing This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
uri This property is required. str
URI of the uploaded artifact.
fileHashes This property is required. Property Map
Hash types and values of the Maven Artifact.
pushTiming This property is required. Property Map
Stores timing information for pushing the specified artifact.
uri This property is required. String
URI of the uploaded artifact.

UploadedNpmPackageResponse
, UploadedNpmPackageResponseArgs

FileHashes This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.FileHashesResponse
Hash types and values of the npm package.
PushTiming This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.TimeSpanResponse
Stores timing information for pushing the specified artifact.
Uri This property is required. string
URI of the uploaded npm package.
FileHashes This property is required. FileHashesResponse
Hash types and values of the npm package.
PushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
Uri This property is required. string
URI of the uploaded npm package.
fileHashes This property is required. FileHashesResponse
Hash types and values of the npm package.
pushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
uri This property is required. String
URI of the uploaded npm package.
fileHashes This property is required. FileHashesResponse
Hash types and values of the npm package.
pushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
uri This property is required. string
URI of the uploaded npm package.
file_hashes This property is required. FileHashesResponse
Hash types and values of the npm package.
push_timing This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
uri This property is required. str
URI of the uploaded npm package.
fileHashes This property is required. Property Map
Hash types and values of the npm package.
pushTiming This property is required. Property Map
Stores timing information for pushing the specified artifact.
uri This property is required. String
URI of the uploaded npm package.

UploadedPythonPackageResponse
, UploadedPythonPackageResponseArgs

FileHashes This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.FileHashesResponse
Hash types and values of the Python Artifact.
PushTiming This property is required. Pulumi.GoogleNative.CloudBuild.V1.Inputs.TimeSpanResponse
Stores timing information for pushing the specified artifact.
Uri This property is required. string
URI of the uploaded artifact.
FileHashes This property is required. FileHashesResponse
Hash types and values of the Python Artifact.
PushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
Uri This property is required. string
URI of the uploaded artifact.
fileHashes This property is required. FileHashesResponse
Hash types and values of the Python Artifact.
pushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
uri This property is required. String
URI of the uploaded artifact.
fileHashes This property is required. FileHashesResponse
Hash types and values of the Python Artifact.
pushTiming This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
uri This property is required. string
URI of the uploaded artifact.
file_hashes This property is required. FileHashesResponse
Hash types and values of the Python Artifact.
push_timing This property is required. TimeSpanResponse
Stores timing information for pushing the specified artifact.
uri This property is required. str
URI of the uploaded artifact.
fileHashes This property is required. Property Map
Hash types and values of the Python Artifact.
pushTiming This property is required. Property Map
Stores timing information for pushing the specified artifact.
uri This property is required. String
URI of the uploaded artifact.

Volume
, VolumeArgs

Name string
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
Path string
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.
Name string
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
Path string
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.
name String
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
path String
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.
name string
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
path string
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.
name str
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
path str
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.
name String
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
path String
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.

VolumeResponse
, VolumeResponseArgs

Name This property is required. string
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
Path This property is required. string
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.
Name This property is required. string
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
Path This property is required. string
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.
name This property is required. String
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
path This property is required. String
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.
name This property is required. string
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
path This property is required. string
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.
name This property is required. str
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
path This property is required. str
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.
name This property is required. String
Name of the volume to mount. Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.
path This property is required. String
Path at which to mount the volume. Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.

WarningResponse
, WarningResponseArgs

Priority This property is required. string
The priority for this warning.
Text This property is required. string
Explanation of the warning generated.
Priority This property is required. string
The priority for this warning.
Text This property is required. string
Explanation of the warning generated.
priority This property is required. String
The priority for this warning.
text This property is required. String
Explanation of the warning generated.
priority This property is required. string
The priority for this warning.
text This property is required. string
Explanation of the warning generated.
priority This property is required. str
The priority for this warning.
text This property is required. str
Explanation of the warning generated.
priority This property is required. String
The priority for this warning.
text This property is required. String
Explanation of the warning generated.

Package Details

Repository
Google Cloud Native pulumi/pulumi-google-native
License
Apache-2.0

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi