Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.cloudbuild/v1.Trigger
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new BuildTrigger.
Create Trigger Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Trigger(name: string, args: TriggerArgs, opts?: CustomResourceOptions);@overload
def Trigger(resource_name: str,
            args: TriggerArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def Trigger(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            project_id: Optional[str] = None,
            included_files: Optional[Sequence[str]] = None,
            webhook_config: Optional[WebhookConfigArgs] = None,
            include_build_logs: Optional[TriggerIncludeBuildLogs] = None,
            description: Optional[str] = None,
            disabled: Optional[bool] = None,
            event_type: Optional[TriggerEventType] = None,
            filename: Optional[str] = None,
            filter: Optional[str] = None,
            git_file_source: Optional[GitFileSourceArgs] = None,
            github: Optional[GitHubEventsConfigArgs] = None,
            gitlab_enterprise_events_config: Optional[GitLabEventsConfigArgs] = None,
            ignored_files: Optional[Sequence[str]] = None,
            build: Optional[BuildArgs] = None,
            bitbucket_server_trigger_config: Optional[BitbucketServerTriggerConfigArgs] = None,
            service_account: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            autodetect: Optional[bool] = None,
            pubsub_config: Optional[PubsubConfigArgs] = None,
            repository_event_config: Optional[RepositoryEventConfigArgs] = None,
            resource_name_: Optional[str] = None,
            location: Optional[str] = None,
            source_to_build: Optional[GitRepoSourceArgs] = None,
            substitutions: Optional[Mapping[str, str]] = None,
            tags: Optional[Sequence[str]] = None,
            trigger_template: Optional[RepoSourceArgs] = None,
            approval_config: Optional[ApprovalConfigArgs] = None)func NewTrigger(ctx *Context, name string, args TriggerArgs, opts ...ResourceOption) (*Trigger, error)public Trigger(string name, TriggerArgs args, CustomResourceOptions? opts = null)
public Trigger(String name, TriggerArgs args)
public Trigger(String name, TriggerArgs args, CustomResourceOptions options)
type: google-native:cloudbuild/v1:Trigger
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TriggerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TriggerArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TriggerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TriggerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TriggerArgs
- 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 triggerResource = new GoogleNative.CloudBuild.V1.Trigger("triggerResource", new()
{
    ProjectId = "string",
    IncludedFiles = new[]
    {
        "string",
    },
    WebhookConfig = new GoogleNative.CloudBuild.V1.Inputs.WebhookConfigArgs
    {
        Secret = "string",
        State = GoogleNative.CloudBuild.V1.WebhookConfigState.StateUnspecified,
    },
    IncludeBuildLogs = GoogleNative.CloudBuild.V1.TriggerIncludeBuildLogs.IncludeBuildLogsUnspecified,
    Description = "string",
    Disabled = false,
    EventType = GoogleNative.CloudBuild.V1.TriggerEventType.EventTypeUnspecified,
    Filename = "string",
    Filter = "string",
    GitFileSource = new GoogleNative.CloudBuild.V1.Inputs.GitFileSourceArgs
    {
        BitbucketServerConfig = "string",
        GithubEnterpriseConfig = "string",
        Path = "string",
        RepoType = GoogleNative.CloudBuild.V1.GitFileSourceRepoType.Unknown,
        Repository = "string",
        Revision = "string",
        Uri = "string",
    },
    Github = new GoogleNative.CloudBuild.V1.Inputs.GitHubEventsConfigArgs
    {
        EnterpriseConfigResourceName = "string",
        InstallationId = "string",
        Name = "string",
        Owner = "string",
        PullRequest = new GoogleNative.CloudBuild.V1.Inputs.PullRequestFilterArgs
        {
            Branch = "string",
            CommentControl = GoogleNative.CloudBuild.V1.PullRequestFilterCommentControl.CommentsDisabled,
            InvertRegex = false,
        },
        Push = new GoogleNative.CloudBuild.V1.Inputs.PushFilterArgs
        {
            Branch = "string",
            InvertRegex = false,
            Tag = "string",
        },
    },
    GitlabEnterpriseEventsConfig = new GoogleNative.CloudBuild.V1.Inputs.GitLabEventsConfigArgs
    {
        GitlabConfigResource = "string",
        ProjectNamespace = "string",
        PullRequest = new GoogleNative.CloudBuild.V1.Inputs.PullRequestFilterArgs
        {
            Branch = "string",
            CommentControl = GoogleNative.CloudBuild.V1.PullRequestFilterCommentControl.CommentsDisabled,
            InvertRegex = false,
        },
        Push = new GoogleNative.CloudBuild.V1.Inputs.PushFilterArgs
        {
            Branch = "string",
            InvertRegex = false,
            Tag = "string",
        },
    },
    IgnoredFiles = new[]
    {
        "string",
    },
    Build = new GoogleNative.CloudBuild.V1.Inputs.BuildArgs
    {
        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",
        Images = new[]
        {
            "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",
        },
        QueueTtl = "string",
        Secrets = new[]
        {
            new GoogleNative.CloudBuild.V1.Inputs.SecretArgs
            {
                KmsKeyName = "string",
                SecretEnv = 
                {
                    { "string", "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",
    },
    BitbucketServerTriggerConfig = new GoogleNative.CloudBuild.V1.Inputs.BitbucketServerTriggerConfigArgs
    {
        BitbucketServerConfigResource = "string",
        ProjectKey = "string",
        RepoSlug = "string",
        PullRequest = new GoogleNative.CloudBuild.V1.Inputs.PullRequestFilterArgs
        {
            Branch = "string",
            CommentControl = GoogleNative.CloudBuild.V1.PullRequestFilterCommentControl.CommentsDisabled,
            InvertRegex = false,
        },
        Push = new GoogleNative.CloudBuild.V1.Inputs.PushFilterArgs
        {
            Branch = "string",
            InvertRegex = false,
            Tag = "string",
        },
    },
    ServiceAccount = "string",
    Name = "string",
    Project = "string",
    Autodetect = false,
    PubsubConfig = new GoogleNative.CloudBuild.V1.Inputs.PubsubConfigArgs
    {
        ServiceAccountEmail = "string",
        State = GoogleNative.CloudBuild.V1.PubsubConfigState.StateUnspecified,
        Topic = "string",
    },
    RepositoryEventConfig = new GoogleNative.CloudBuild.V1.Inputs.RepositoryEventConfigArgs
    {
        PullRequest = new GoogleNative.CloudBuild.V1.Inputs.PullRequestFilterArgs
        {
            Branch = "string",
            CommentControl = GoogleNative.CloudBuild.V1.PullRequestFilterCommentControl.CommentsDisabled,
            InvertRegex = false,
        },
        Push = new GoogleNative.CloudBuild.V1.Inputs.PushFilterArgs
        {
            Branch = "string",
            InvertRegex = false,
            Tag = "string",
        },
        Repository = "string",
    },
    ResourceName = "string",
    Location = "string",
    SourceToBuild = new GoogleNative.CloudBuild.V1.Inputs.GitRepoSourceArgs
    {
        BitbucketServerConfig = "string",
        GithubEnterpriseConfig = "string",
        Ref = "string",
        RepoType = GoogleNative.CloudBuild.V1.GitRepoSourceRepoType.Unknown,
        Repository = "string",
        Uri = "string",
    },
    Substitutions = 
    {
        { "string", "string" },
    },
    Tags = new[]
    {
        "string",
    },
    TriggerTemplate = new GoogleNative.CloudBuild.V1.Inputs.RepoSourceArgs
    {
        BranchName = "string",
        CommitSha = "string",
        Dir = "string",
        InvertRegex = false,
        Project = "string",
        RepoName = "string",
        Substitutions = 
        {
            { "string", "string" },
        },
        TagName = "string",
    },
    ApprovalConfig = new GoogleNative.CloudBuild.V1.Inputs.ApprovalConfigArgs
    {
        ApprovalRequired = false,
    },
});
example, err := cloudbuild.NewTrigger(ctx, "triggerResource", &cloudbuild.TriggerArgs{
	ProjectId: pulumi.String("string"),
	IncludedFiles: pulumi.StringArray{
		pulumi.String("string"),
	},
	WebhookConfig: &cloudbuild.WebhookConfigArgs{
		Secret: pulumi.String("string"),
		State:  cloudbuild.WebhookConfigStateStateUnspecified,
	},
	IncludeBuildLogs: cloudbuild.TriggerIncludeBuildLogsIncludeBuildLogsUnspecified,
	Description:      pulumi.String("string"),
	Disabled:         pulumi.Bool(false),
	EventType:        cloudbuild.TriggerEventTypeEventTypeUnspecified,
	Filename:         pulumi.String("string"),
	Filter:           pulumi.String("string"),
	GitFileSource: &cloudbuild.GitFileSourceArgs{
		BitbucketServerConfig:  pulumi.String("string"),
		GithubEnterpriseConfig: pulumi.String("string"),
		Path:                   pulumi.String("string"),
		RepoType:               cloudbuild.GitFileSourceRepoTypeUnknown,
		Repository:             pulumi.String("string"),
		Revision:               pulumi.String("string"),
		Uri:                    pulumi.String("string"),
	},
	Github: &cloudbuild.GitHubEventsConfigArgs{
		EnterpriseConfigResourceName: pulumi.String("string"),
		InstallationId:               pulumi.String("string"),
		Name:                         pulumi.String("string"),
		Owner:                        pulumi.String("string"),
		PullRequest: &cloudbuild.PullRequestFilterArgs{
			Branch:         pulumi.String("string"),
			CommentControl: cloudbuild.PullRequestFilterCommentControlCommentsDisabled,
			InvertRegex:    pulumi.Bool(false),
		},
		Push: &cloudbuild.PushFilterArgs{
			Branch:      pulumi.String("string"),
			InvertRegex: pulumi.Bool(false),
			Tag:         pulumi.String("string"),
		},
	},
	GitlabEnterpriseEventsConfig: &cloudbuild.GitLabEventsConfigArgs{
		GitlabConfigResource: pulumi.String("string"),
		ProjectNamespace:     pulumi.String("string"),
		PullRequest: &cloudbuild.PullRequestFilterArgs{
			Branch:         pulumi.String("string"),
			CommentControl: cloudbuild.PullRequestFilterCommentControlCommentsDisabled,
			InvertRegex:    pulumi.Bool(false),
		},
		Push: &cloudbuild.PushFilterArgs{
			Branch:      pulumi.String("string"),
			InvertRegex: pulumi.Bool(false),
			Tag:         pulumi.String("string"),
		},
	},
	IgnoredFiles: pulumi.StringArray{
		pulumi.String("string"),
	},
	Build: &cloudbuild.BuildTypeArgs{
		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"),
		Images: pulumi.StringArray{
			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"),
		},
		QueueTtl: pulumi.String("string"),
		Secrets: cloudbuild.SecretArray{
			&cloudbuild.SecretArgs{
				KmsKeyName: pulumi.String("string"),
				SecretEnv: pulumi.StringMap{
					"string": 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"),
	},
	BitbucketServerTriggerConfig: &cloudbuild.BitbucketServerTriggerConfigArgs{
		BitbucketServerConfigResource: pulumi.String("string"),
		ProjectKey:                    pulumi.String("string"),
		RepoSlug:                      pulumi.String("string"),
		PullRequest: &cloudbuild.PullRequestFilterArgs{
			Branch:         pulumi.String("string"),
			CommentControl: cloudbuild.PullRequestFilterCommentControlCommentsDisabled,
			InvertRegex:    pulumi.Bool(false),
		},
		Push: &cloudbuild.PushFilterArgs{
			Branch:      pulumi.String("string"),
			InvertRegex: pulumi.Bool(false),
			Tag:         pulumi.String("string"),
		},
	},
	ServiceAccount: pulumi.String("string"),
	Name:           pulumi.String("string"),
	Project:        pulumi.String("string"),
	Autodetect:     pulumi.Bool(false),
	PubsubConfig: &cloudbuild.PubsubConfigArgs{
		ServiceAccountEmail: pulumi.String("string"),
		State:               cloudbuild.PubsubConfigStateStateUnspecified,
		Topic:               pulumi.String("string"),
	},
	RepositoryEventConfig: &cloudbuild.RepositoryEventConfigArgs{
		PullRequest: &cloudbuild.PullRequestFilterArgs{
			Branch:         pulumi.String("string"),
			CommentControl: cloudbuild.PullRequestFilterCommentControlCommentsDisabled,
			InvertRegex:    pulumi.Bool(false),
		},
		Push: &cloudbuild.PushFilterArgs{
			Branch:      pulumi.String("string"),
			InvertRegex: pulumi.Bool(false),
			Tag:         pulumi.String("string"),
		},
		Repository: pulumi.String("string"),
	},
	ResourceName: pulumi.String("string"),
	Location:     pulumi.String("string"),
	SourceToBuild: &cloudbuild.GitRepoSourceArgs{
		BitbucketServerConfig:  pulumi.String("string"),
		GithubEnterpriseConfig: pulumi.String("string"),
		Ref:                    pulumi.String("string"),
		RepoType:               cloudbuild.GitRepoSourceRepoTypeUnknown,
		Repository:             pulumi.String("string"),
		Uri:                    pulumi.String("string"),
	},
	Substitutions: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Tags: pulumi.StringArray{
		pulumi.String("string"),
	},
	TriggerTemplate: &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"),
	},
	ApprovalConfig: &cloudbuild.ApprovalConfigArgs{
		ApprovalRequired: pulumi.Bool(false),
	},
})
var triggerResource = new Trigger("triggerResource", TriggerArgs.builder()
    .projectId("string")
    .includedFiles("string")
    .webhookConfig(WebhookConfigArgs.builder()
        .secret("string")
        .state("STATE_UNSPECIFIED")
        .build())
    .includeBuildLogs("INCLUDE_BUILD_LOGS_UNSPECIFIED")
    .description("string")
    .disabled(false)
    .eventType("EVENT_TYPE_UNSPECIFIED")
    .filename("string")
    .filter("string")
    .gitFileSource(GitFileSourceArgs.builder()
        .bitbucketServerConfig("string")
        .githubEnterpriseConfig("string")
        .path("string")
        .repoType("UNKNOWN")
        .repository("string")
        .revision("string")
        .uri("string")
        .build())
    .github(GitHubEventsConfigArgs.builder()
        .enterpriseConfigResourceName("string")
        .installationId("string")
        .name("string")
        .owner("string")
        .pullRequest(PullRequestFilterArgs.builder()
            .branch("string")
            .commentControl("COMMENTS_DISABLED")
            .invertRegex(false)
            .build())
        .push(PushFilterArgs.builder()
            .branch("string")
            .invertRegex(false)
            .tag("string")
            .build())
        .build())
    .gitlabEnterpriseEventsConfig(GitLabEventsConfigArgs.builder()
        .gitlabConfigResource("string")
        .projectNamespace("string")
        .pullRequest(PullRequestFilterArgs.builder()
            .branch("string")
            .commentControl("COMMENTS_DISABLED")
            .invertRegex(false)
            .build())
        .push(PushFilterArgs.builder()
            .branch("string")
            .invertRegex(false)
            .tag("string")
            .build())
        .build())
    .ignoredFiles("string")
    .build(BuildArgs.builder()
        .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")
        .images("string")
        .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())
        .queueTtl("string")
        .secrets(SecretArgs.builder()
            .kmsKeyName("string")
            .secretEnv(Map.of("string", "string"))
            .build())
        .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())
    .bitbucketServerTriggerConfig(BitbucketServerTriggerConfigArgs.builder()
        .bitbucketServerConfigResource("string")
        .projectKey("string")
        .repoSlug("string")
        .pullRequest(PullRequestFilterArgs.builder()
            .branch("string")
            .commentControl("COMMENTS_DISABLED")
            .invertRegex(false)
            .build())
        .push(PushFilterArgs.builder()
            .branch("string")
            .invertRegex(false)
            .tag("string")
            .build())
        .build())
    .serviceAccount("string")
    .name("string")
    .project("string")
    .autodetect(false)
    .pubsubConfig(PubsubConfigArgs.builder()
        .serviceAccountEmail("string")
        .state("STATE_UNSPECIFIED")
        .topic("string")
        .build())
    .repositoryEventConfig(RepositoryEventConfigArgs.builder()
        .pullRequest(PullRequestFilterArgs.builder()
            .branch("string")
            .commentControl("COMMENTS_DISABLED")
            .invertRegex(false)
            .build())
        .push(PushFilterArgs.builder()
            .branch("string")
            .invertRegex(false)
            .tag("string")
            .build())
        .repository("string")
        .build())
    .resourceName("string")
    .location("string")
    .sourceToBuild(GitRepoSourceArgs.builder()
        .bitbucketServerConfig("string")
        .githubEnterpriseConfig("string")
        .ref("string")
        .repoType("UNKNOWN")
        .repository("string")
        .uri("string")
        .build())
    .substitutions(Map.of("string", "string"))
    .tags("string")
    .triggerTemplate(RepoSourceArgs.builder()
        .branchName("string")
        .commitSha("string")
        .dir("string")
        .invertRegex(false)
        .project("string")
        .repoName("string")
        .substitutions(Map.of("string", "string"))
        .tagName("string")
        .build())
    .approvalConfig(ApprovalConfigArgs.builder()
        .approvalRequired(false)
        .build())
    .build());
trigger_resource = google_native.cloudbuild.v1.Trigger("triggerResource",
    project_id="string",
    included_files=["string"],
    webhook_config={
        "secret": "string",
        "state": google_native.cloudbuild.v1.WebhookConfigState.STATE_UNSPECIFIED,
    },
    include_build_logs=google_native.cloudbuild.v1.TriggerIncludeBuildLogs.INCLUDE_BUILD_LOGS_UNSPECIFIED,
    description="string",
    disabled=False,
    event_type=google_native.cloudbuild.v1.TriggerEventType.EVENT_TYPE_UNSPECIFIED,
    filename="string",
    filter="string",
    git_file_source={
        "bitbucket_server_config": "string",
        "github_enterprise_config": "string",
        "path": "string",
        "repo_type": google_native.cloudbuild.v1.GitFileSourceRepoType.UNKNOWN,
        "repository": "string",
        "revision": "string",
        "uri": "string",
    },
    github={
        "enterprise_config_resource_name": "string",
        "installation_id": "string",
        "name": "string",
        "owner": "string",
        "pull_request": {
            "branch": "string",
            "comment_control": google_native.cloudbuild.v1.PullRequestFilterCommentControl.COMMENTS_DISABLED,
            "invert_regex": False,
        },
        "push": {
            "branch": "string",
            "invert_regex": False,
            "tag": "string",
        },
    },
    gitlab_enterprise_events_config={
        "gitlab_config_resource": "string",
        "project_namespace": "string",
        "pull_request": {
            "branch": "string",
            "comment_control": google_native.cloudbuild.v1.PullRequestFilterCommentControl.COMMENTS_DISABLED,
            "invert_regex": False,
        },
        "push": {
            "branch": "string",
            "invert_regex": False,
            "tag": "string",
        },
    },
    ignored_files=["string"],
    build={
        "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",
        "images": ["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",
        },
        "queue_ttl": "string",
        "secrets": [{
            "kms_key_name": "string",
            "secret_env": {
                "string": "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",
    },
    bitbucket_server_trigger_config={
        "bitbucket_server_config_resource": "string",
        "project_key": "string",
        "repo_slug": "string",
        "pull_request": {
            "branch": "string",
            "comment_control": google_native.cloudbuild.v1.PullRequestFilterCommentControl.COMMENTS_DISABLED,
            "invert_regex": False,
        },
        "push": {
            "branch": "string",
            "invert_regex": False,
            "tag": "string",
        },
    },
    service_account="string",
    name="string",
    project="string",
    autodetect=False,
    pubsub_config={
        "service_account_email": "string",
        "state": google_native.cloudbuild.v1.PubsubConfigState.STATE_UNSPECIFIED,
        "topic": "string",
    },
    repository_event_config={
        "pull_request": {
            "branch": "string",
            "comment_control": google_native.cloudbuild.v1.PullRequestFilterCommentControl.COMMENTS_DISABLED,
            "invert_regex": False,
        },
        "push": {
            "branch": "string",
            "invert_regex": False,
            "tag": "string",
        },
        "repository": "string",
    },
    resource_name_="string",
    location="string",
    source_to_build={
        "bitbucket_server_config": "string",
        "github_enterprise_config": "string",
        "ref": "string",
        "repo_type": google_native.cloudbuild.v1.GitRepoSourceRepoType.UNKNOWN,
        "repository": "string",
        "uri": "string",
    },
    substitutions={
        "string": "string",
    },
    tags=["string"],
    trigger_template={
        "branch_name": "string",
        "commit_sha": "string",
        "dir": "string",
        "invert_regex": False,
        "project": "string",
        "repo_name": "string",
        "substitutions": {
            "string": "string",
        },
        "tag_name": "string",
    },
    approval_config={
        "approval_required": False,
    })
const triggerResource = new google_native.cloudbuild.v1.Trigger("triggerResource", {
    projectId: "string",
    includedFiles: ["string"],
    webhookConfig: {
        secret: "string",
        state: google_native.cloudbuild.v1.WebhookConfigState.StateUnspecified,
    },
    includeBuildLogs: google_native.cloudbuild.v1.TriggerIncludeBuildLogs.IncludeBuildLogsUnspecified,
    description: "string",
    disabled: false,
    eventType: google_native.cloudbuild.v1.TriggerEventType.EventTypeUnspecified,
    filename: "string",
    filter: "string",
    gitFileSource: {
        bitbucketServerConfig: "string",
        githubEnterpriseConfig: "string",
        path: "string",
        repoType: google_native.cloudbuild.v1.GitFileSourceRepoType.Unknown,
        repository: "string",
        revision: "string",
        uri: "string",
    },
    github: {
        enterpriseConfigResourceName: "string",
        installationId: "string",
        name: "string",
        owner: "string",
        pullRequest: {
            branch: "string",
            commentControl: google_native.cloudbuild.v1.PullRequestFilterCommentControl.CommentsDisabled,
            invertRegex: false,
        },
        push: {
            branch: "string",
            invertRegex: false,
            tag: "string",
        },
    },
    gitlabEnterpriseEventsConfig: {
        gitlabConfigResource: "string",
        projectNamespace: "string",
        pullRequest: {
            branch: "string",
            commentControl: google_native.cloudbuild.v1.PullRequestFilterCommentControl.CommentsDisabled,
            invertRegex: false,
        },
        push: {
            branch: "string",
            invertRegex: false,
            tag: "string",
        },
    },
    ignoredFiles: ["string"],
    build: {
        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",
        images: ["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",
        },
        queueTtl: "string",
        secrets: [{
            kmsKeyName: "string",
            secretEnv: {
                string: "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",
    },
    bitbucketServerTriggerConfig: {
        bitbucketServerConfigResource: "string",
        projectKey: "string",
        repoSlug: "string",
        pullRequest: {
            branch: "string",
            commentControl: google_native.cloudbuild.v1.PullRequestFilterCommentControl.CommentsDisabled,
            invertRegex: false,
        },
        push: {
            branch: "string",
            invertRegex: false,
            tag: "string",
        },
    },
    serviceAccount: "string",
    name: "string",
    project: "string",
    autodetect: false,
    pubsubConfig: {
        serviceAccountEmail: "string",
        state: google_native.cloudbuild.v1.PubsubConfigState.StateUnspecified,
        topic: "string",
    },
    repositoryEventConfig: {
        pullRequest: {
            branch: "string",
            commentControl: google_native.cloudbuild.v1.PullRequestFilterCommentControl.CommentsDisabled,
            invertRegex: false,
        },
        push: {
            branch: "string",
            invertRegex: false,
            tag: "string",
        },
        repository: "string",
    },
    resourceName: "string",
    location: "string",
    sourceToBuild: {
        bitbucketServerConfig: "string",
        githubEnterpriseConfig: "string",
        ref: "string",
        repoType: google_native.cloudbuild.v1.GitRepoSourceRepoType.Unknown,
        repository: "string",
        uri: "string",
    },
    substitutions: {
        string: "string",
    },
    tags: ["string"],
    triggerTemplate: {
        branchName: "string",
        commitSha: "string",
        dir: "string",
        invertRegex: false,
        project: "string",
        repoName: "string",
        substitutions: {
            string: "string",
        },
        tagName: "string",
    },
    approvalConfig: {
        approvalRequired: false,
    },
});
type: google-native:cloudbuild/v1:Trigger
properties:
    approvalConfig:
        approvalRequired: false
    autodetect: false
    bitbucketServerTriggerConfig:
        bitbucketServerConfigResource: string
        projectKey: string
        pullRequest:
            branch: string
            commentControl: COMMENTS_DISABLED
            invertRegex: false
        push:
            branch: string
            invertRegex: false
            tag: string
        repoSlug: string
    build:
        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
        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
        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
    description: string
    disabled: false
    eventType: EVENT_TYPE_UNSPECIFIED
    filename: string
    filter: string
    gitFileSource:
        bitbucketServerConfig: string
        githubEnterpriseConfig: string
        path: string
        repoType: UNKNOWN
        repository: string
        revision: string
        uri: string
    github:
        enterpriseConfigResourceName: string
        installationId: string
        name: string
        owner: string
        pullRequest:
            branch: string
            commentControl: COMMENTS_DISABLED
            invertRegex: false
        push:
            branch: string
            invertRegex: false
            tag: string
    gitlabEnterpriseEventsConfig:
        gitlabConfigResource: string
        projectNamespace: string
        pullRequest:
            branch: string
            commentControl: COMMENTS_DISABLED
            invertRegex: false
        push:
            branch: string
            invertRegex: false
            tag: string
    ignoredFiles:
        - string
    includeBuildLogs: INCLUDE_BUILD_LOGS_UNSPECIFIED
    includedFiles:
        - string
    location: string
    name: string
    project: string
    projectId: string
    pubsubConfig:
        serviceAccountEmail: string
        state: STATE_UNSPECIFIED
        topic: string
    repositoryEventConfig:
        pullRequest:
            branch: string
            commentControl: COMMENTS_DISABLED
            invertRegex: false
        push:
            branch: string
            invertRegex: false
            tag: string
        repository: string
    resourceName: string
    serviceAccount: string
    sourceToBuild:
        bitbucketServerConfig: string
        githubEnterpriseConfig: string
        ref: string
        repoType: UNKNOWN
        repository: string
        uri: string
    substitutions:
        string: string
    tags:
        - string
    triggerTemplate:
        branchName: string
        commitSha: string
        dir: string
        invertRegex: false
        project: string
        repoName: string
        substitutions:
            string: string
        tagName: string
    webhookConfig:
        secret: string
        state: STATE_UNSPECIFIED
Trigger 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 Trigger resource accepts the following input properties:
- ProjectId string
- Required. ID of the project for which to configure automatic builds.
- ApprovalConfig Pulumi.Google Native. Cloud Build. V1. Inputs. Approval Config 
- Configuration for manual approval to start a build invocation of this BuildTrigger.
- Autodetect bool
- Autodetect build configuration. The following precedence is used (case insensitive): 1. cloudbuild.yaml 2. cloudbuild.yml 3. cloudbuild.json 4. Dockerfile Currently only available for GitHub App Triggers.
- BitbucketServer Pulumi.Trigger Config Google Native. Cloud Build. V1. Inputs. Bitbucket Server Trigger Config 
- BitbucketServerTriggerConfig describes the configuration of a trigger that creates a build whenever a Bitbucket Server event is received.
- Build
Pulumi.Google Native. Cloud Build. V1. Inputs. Build 
- Contents of the build template.
- Description string
- Human-readable description of this trigger.
- Disabled bool
- If true, the trigger will never automatically execute a build.
- EventType Pulumi.Google Native. Cloud Build. V1. Trigger Event Type 
- EventType allows the user to explicitly set the type of event to which this BuildTrigger should respond. This field will be validated against the rest of the configuration if it is set.
- Filename string
- Path, from the source root, to the build configuration file (i.e. cloudbuild.yaml).
- Filter string
- A Common Expression Language string.
- GitFile Pulumi.Source Google Native. Cloud Build. V1. Inputs. Git File Source 
- The file source describing the local or remote Build template.
- Github
Pulumi.Google Native. Cloud Build. V1. Inputs. Git Hub Events Config 
- GitHubEventsConfig describes the configuration of a trigger that creates a build whenever a GitHub event is received. Mutually exclusive with trigger_template.
- GitlabEnterprise Pulumi.Events Config Google Native. Cloud Build. V1. Inputs. Git Lab Events Config 
- GitLabEnterpriseEventsConfig describes the configuration of a trigger that creates a build whenever a GitLab Enterprise event is received.
- IgnoredFiles List<string>
- ignored_files and included_files are file glob matches using https://golang.org/pkg/path/filepath/#Match extended with support for "**". If ignored_files and changed files are both empty, then they are not used to determine whether or not to trigger a build. If ignored_files is not empty, then we ignore any files that match any of the ignored_file globs. If the change has no files that are outside of the ignored_files globs, then we do not trigger a build.
- IncludeBuild Pulumi.Logs Google Native. Cloud Build. V1. Trigger Include Build Logs 
- If set to INCLUDE_BUILD_LOGS_WITH_STATUS, log url will be shown on GitHub page when build status is final. Setting this field to INCLUDE_BUILD_LOGS_WITH_STATUS for non GitHub triggers results in INVALID_ARGUMENT error.
- IncludedFiles List<string>
- If any of the files altered in the commit pass the ignored_files filter and included_files is empty, then as far as this filter is concerned, we should trigger the build. If any of the files altered in the commit pass the ignored_files filter and included_files is not empty, then we make sure that at least one of those files matches a included_files glob. If not, then we do not trigger a build.
- Location string
- Name string
- User-assigned name of the trigger. Must be unique within the project. Trigger names must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character.
- Project string
- PubsubConfig Pulumi.Google Native. Cloud Build. V1. Inputs. Pubsub Config 
- PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published.
- RepositoryEvent Pulumi.Config Google Native. Cloud Build. V1. Inputs. Repository Event Config 
- The configuration of a trigger that creates a build whenever an event from Repo API is received.
- ResourceName string
- The Triggername with format:projects/{project}/locations/{location}/triggers/{trigger}, where {trigger} is a unique identifier generated by the service.
- ServiceAccount string
- The service account used for all user-controlled operations including UpdateBuildTrigger, RunBuildTrigger, CreateBuild, and CancelBuild. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead. Format: projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT_ID_OR_EMAIL}
- SourceTo Pulumi.Build Google Native. Cloud Build. V1. Inputs. Git Repo Source 
- The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers.
- Substitutions Dictionary<string, string>
- Substitutions for Build resource. The keys must match the following regular expression: ^_[A-Z0-9_]+$.
- List<string>
- Tags for annotation of a BuildTrigger
- TriggerTemplate Pulumi.Google Native. Cloud Build. V1. Inputs. Repo Source 
- Template describing the types of source changes to trigger a build. Branch and tag names in trigger templates are interpreted as regular expressions. Any branch or tag change that matches that regular expression will trigger a build. Mutually exclusive with github.
- WebhookConfig Pulumi.Google Native. Cloud Build. V1. Inputs. Webhook Config 
- WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL.
- ProjectId string
- Required. ID of the project for which to configure automatic builds.
- ApprovalConfig ApprovalConfig Args 
- Configuration for manual approval to start a build invocation of this BuildTrigger.
- Autodetect bool
- Autodetect build configuration. The following precedence is used (case insensitive): 1. cloudbuild.yaml 2. cloudbuild.yml 3. cloudbuild.json 4. Dockerfile Currently only available for GitHub App Triggers.
- BitbucketServer BitbucketTrigger Config Server Trigger Config Args 
- BitbucketServerTriggerConfig describes the configuration of a trigger that creates a build whenever a Bitbucket Server event is received.
- Build
BuildType Args 
- Contents of the build template.
- Description string
- Human-readable description of this trigger.
- Disabled bool
- If true, the trigger will never automatically execute a build.
- EventType TriggerEvent Type 
- EventType allows the user to explicitly set the type of event to which this BuildTrigger should respond. This field will be validated against the rest of the configuration if it is set.
- Filename string
- Path, from the source root, to the build configuration file (i.e. cloudbuild.yaml).
- Filter string
- A Common Expression Language string.
- GitFile GitSource File Source Args 
- The file source describing the local or remote Build template.
- Github
GitHub Events Config Args 
- GitHubEventsConfig describes the configuration of a trigger that creates a build whenever a GitHub event is received. Mutually exclusive with trigger_template.
- GitlabEnterprise GitEvents Config Lab Events Config Args 
- GitLabEnterpriseEventsConfig describes the configuration of a trigger that creates a build whenever a GitLab Enterprise event is received.
- IgnoredFiles []string
- ignored_files and included_files are file glob matches using https://golang.org/pkg/path/filepath/#Match extended with support for "**". If ignored_files and changed files are both empty, then they are not used to determine whether or not to trigger a build. If ignored_files is not empty, then we ignore any files that match any of the ignored_file globs. If the change has no files that are outside of the ignored_files globs, then we do not trigger a build.
- IncludeBuild TriggerLogs Include Build Logs 
- If set to INCLUDE_BUILD_LOGS_WITH_STATUS, log url will be shown on GitHub page when build status is final. Setting this field to INCLUDE_BUILD_LOGS_WITH_STATUS for non GitHub triggers results in INVALID_ARGUMENT error.
- IncludedFiles []string
- If any of the files altered in the commit pass the ignored_files filter and included_files is empty, then as far as this filter is concerned, we should trigger the build. If any of the files altered in the commit pass the ignored_files filter and included_files is not empty, then we make sure that at least one of those files matches a included_files glob. If not, then we do not trigger a build.
- Location string
- Name string
- User-assigned name of the trigger. Must be unique within the project. Trigger names must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character.
- Project string
- PubsubConfig PubsubConfig Args 
- PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published.
- RepositoryEvent RepositoryConfig Event Config Args 
- The configuration of a trigger that creates a build whenever an event from Repo API is received.
- ResourceName string
- The Triggername with format:projects/{project}/locations/{location}/triggers/{trigger}, where {trigger} is a unique identifier generated by the service.
- ServiceAccount string
- The service account used for all user-controlled operations including UpdateBuildTrigger, RunBuildTrigger, CreateBuild, and CancelBuild. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead. Format: projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT_ID_OR_EMAIL}
- SourceTo GitBuild Repo Source Args 
- The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers.
- Substitutions map[string]string
- Substitutions for Build resource. The keys must match the following regular expression: ^_[A-Z0-9_]+$.
- []string
- Tags for annotation of a BuildTrigger
- TriggerTemplate RepoSource Args 
- Template describing the types of source changes to trigger a build. Branch and tag names in trigger templates are interpreted as regular expressions. Any branch or tag change that matches that regular expression will trigger a build. Mutually exclusive with github.
- WebhookConfig WebhookConfig Args 
- WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL.
- projectId String
- Required. ID of the project for which to configure automatic builds.
- approvalConfig ApprovalConfig 
- Configuration for manual approval to start a build invocation of this BuildTrigger.
- autodetect Boolean
- Autodetect build configuration. The following precedence is used (case insensitive): 1. cloudbuild.yaml 2. cloudbuild.yml 3. cloudbuild.json 4. Dockerfile Currently only available for GitHub App Triggers.
- bitbucketServer BitbucketTrigger Config Server Trigger Config 
- BitbucketServerTriggerConfig describes the configuration of a trigger that creates a build whenever a Bitbucket Server event is received.
- build Build
- Contents of the build template.
- description String
- Human-readable description of this trigger.
- disabled Boolean
- If true, the trigger will never automatically execute a build.
- eventType TriggerEvent Type 
- EventType allows the user to explicitly set the type of event to which this BuildTrigger should respond. This field will be validated against the rest of the configuration if it is set.
- filename String
- Path, from the source root, to the build configuration file (i.e. cloudbuild.yaml).
- filter String
- A Common Expression Language string.
- gitFile GitSource File Source 
- The file source describing the local or remote Build template.
- github
GitHub Events Config 
- GitHubEventsConfig describes the configuration of a trigger that creates a build whenever a GitHub event is received. Mutually exclusive with trigger_template.
- gitlabEnterprise GitEvents Config Lab Events Config 
- GitLabEnterpriseEventsConfig describes the configuration of a trigger that creates a build whenever a GitLab Enterprise event is received.
- ignoredFiles List<String>
- ignored_files and included_files are file glob matches using https://golang.org/pkg/path/filepath/#Match extended with support for "**". If ignored_files and changed files are both empty, then they are not used to determine whether or not to trigger a build. If ignored_files is not empty, then we ignore any files that match any of the ignored_file globs. If the change has no files that are outside of the ignored_files globs, then we do not trigger a build.
- includeBuild TriggerLogs Include Build Logs 
- If set to INCLUDE_BUILD_LOGS_WITH_STATUS, log url will be shown on GitHub page when build status is final. Setting this field to INCLUDE_BUILD_LOGS_WITH_STATUS for non GitHub triggers results in INVALID_ARGUMENT error.
- includedFiles List<String>
- If any of the files altered in the commit pass the ignored_files filter and included_files is empty, then as far as this filter is concerned, we should trigger the build. If any of the files altered in the commit pass the ignored_files filter and included_files is not empty, then we make sure that at least one of those files matches a included_files glob. If not, then we do not trigger a build.
- location String
- name String
- User-assigned name of the trigger. Must be unique within the project. Trigger names must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character.
- project String
- pubsubConfig PubsubConfig 
- PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published.
- repositoryEvent RepositoryConfig Event Config 
- The configuration of a trigger that creates a build whenever an event from Repo API is received.
- resourceName String
- The Triggername with format:projects/{project}/locations/{location}/triggers/{trigger}, where {trigger} is a unique identifier generated by the service.
- serviceAccount String
- The service account used for all user-controlled operations including UpdateBuildTrigger, RunBuildTrigger, CreateBuild, and CancelBuild. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead. Format: projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT_ID_OR_EMAIL}
- sourceTo GitBuild Repo Source 
- The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers.
- substitutions Map<String,String>
- Substitutions for Build resource. The keys must match the following regular expression: ^_[A-Z0-9_]+$.
- List<String>
- Tags for annotation of a BuildTrigger
- triggerTemplate RepoSource 
- Template describing the types of source changes to trigger a build. Branch and tag names in trigger templates are interpreted as regular expressions. Any branch or tag change that matches that regular expression will trigger a build. Mutually exclusive with github.
- webhookConfig WebhookConfig 
- WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL.
- projectId string
- Required. ID of the project for which to configure automatic builds.
- approvalConfig ApprovalConfig 
- Configuration for manual approval to start a build invocation of this BuildTrigger.
- autodetect boolean
- Autodetect build configuration. The following precedence is used (case insensitive): 1. cloudbuild.yaml 2. cloudbuild.yml 3. cloudbuild.json 4. Dockerfile Currently only available for GitHub App Triggers.
- bitbucketServer BitbucketTrigger Config Server Trigger Config 
- BitbucketServerTriggerConfig describes the configuration of a trigger that creates a build whenever a Bitbucket Server event is received.
- build Build
- Contents of the build template.
- description string
- Human-readable description of this trigger.
- disabled boolean
- If true, the trigger will never automatically execute a build.
- eventType TriggerEvent Type 
- EventType allows the user to explicitly set the type of event to which this BuildTrigger should respond. This field will be validated against the rest of the configuration if it is set.
- filename string
- Path, from the source root, to the build configuration file (i.e. cloudbuild.yaml).
- filter string
- A Common Expression Language string.
- gitFile GitSource File Source 
- The file source describing the local or remote Build template.
- github
GitHub Events Config 
- GitHubEventsConfig describes the configuration of a trigger that creates a build whenever a GitHub event is received. Mutually exclusive with trigger_template.
- gitlabEnterprise GitEvents Config Lab Events Config 
- GitLabEnterpriseEventsConfig describes the configuration of a trigger that creates a build whenever a GitLab Enterprise event is received.
- ignoredFiles string[]
- ignored_files and included_files are file glob matches using https://golang.org/pkg/path/filepath/#Match extended with support for "**". If ignored_files and changed files are both empty, then they are not used to determine whether or not to trigger a build. If ignored_files is not empty, then we ignore any files that match any of the ignored_file globs. If the change has no files that are outside of the ignored_files globs, then we do not trigger a build.
- includeBuild TriggerLogs Include Build Logs 
- If set to INCLUDE_BUILD_LOGS_WITH_STATUS, log url will be shown on GitHub page when build status is final. Setting this field to INCLUDE_BUILD_LOGS_WITH_STATUS for non GitHub triggers results in INVALID_ARGUMENT error.
- includedFiles string[]
- If any of the files altered in the commit pass the ignored_files filter and included_files is empty, then as far as this filter is concerned, we should trigger the build. If any of the files altered in the commit pass the ignored_files filter and included_files is not empty, then we make sure that at least one of those files matches a included_files glob. If not, then we do not trigger a build.
- location string
- name string
- User-assigned name of the trigger. Must be unique within the project. Trigger names must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character.
- project string
- pubsubConfig PubsubConfig 
- PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published.
- repositoryEvent RepositoryConfig Event Config 
- The configuration of a trigger that creates a build whenever an event from Repo API is received.
- resourceName string
- The Triggername with format:projects/{project}/locations/{location}/triggers/{trigger}, where {trigger} is a unique identifier generated by the service.
- serviceAccount string
- The service account used for all user-controlled operations including UpdateBuildTrigger, RunBuildTrigger, CreateBuild, and CancelBuild. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead. Format: projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT_ID_OR_EMAIL}
- sourceTo GitBuild Repo Source 
- The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers.
- substitutions {[key: string]: string}
- Substitutions for Build resource. The keys must match the following regular expression: ^_[A-Z0-9_]+$.
- string[]
- Tags for annotation of a BuildTrigger
- triggerTemplate RepoSource 
- Template describing the types of source changes to trigger a build. Branch and tag names in trigger templates are interpreted as regular expressions. Any branch or tag change that matches that regular expression will trigger a build. Mutually exclusive with github.
- webhookConfig WebhookConfig 
- WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL.
- project_id str
- Required. ID of the project for which to configure automatic builds.
- approval_config ApprovalConfig Args 
- Configuration for manual approval to start a build invocation of this BuildTrigger.
- autodetect bool
- Autodetect build configuration. The following precedence is used (case insensitive): 1. cloudbuild.yaml 2. cloudbuild.yml 3. cloudbuild.json 4. Dockerfile Currently only available for GitHub App Triggers.
- bitbucket_server_ Bitbuckettrigger_ config Server Trigger Config Args 
- BitbucketServerTriggerConfig describes the configuration of a trigger that creates a build whenever a Bitbucket Server event is received.
- build
BuildArgs 
- Contents of the build template.
- description str
- Human-readable description of this trigger.
- disabled bool
- If true, the trigger will never automatically execute a build.
- event_type TriggerEvent Type 
- EventType allows the user to explicitly set the type of event to which this BuildTrigger should respond. This field will be validated against the rest of the configuration if it is set.
- filename str
- Path, from the source root, to the build configuration file (i.e. cloudbuild.yaml).
- filter str
- A Common Expression Language string.
- git_file_ Gitsource File Source Args 
- The file source describing the local or remote Build template.
- github
GitHub Events Config Args 
- GitHubEventsConfig describes the configuration of a trigger that creates a build whenever a GitHub event is received. Mutually exclusive with trigger_template.
- gitlab_enterprise_ Gitevents_ config Lab Events Config Args 
- GitLabEnterpriseEventsConfig describes the configuration of a trigger that creates a build whenever a GitLab Enterprise event is received.
- ignored_files Sequence[str]
- ignored_files and included_files are file glob matches using https://golang.org/pkg/path/filepath/#Match extended with support for "**". If ignored_files and changed files are both empty, then they are not used to determine whether or not to trigger a build. If ignored_files is not empty, then we ignore any files that match any of the ignored_file globs. If the change has no files that are outside of the ignored_files globs, then we do not trigger a build.
- include_build_ Triggerlogs Include Build Logs 
- If set to INCLUDE_BUILD_LOGS_WITH_STATUS, log url will be shown on GitHub page when build status is final. Setting this field to INCLUDE_BUILD_LOGS_WITH_STATUS for non GitHub triggers results in INVALID_ARGUMENT error.
- included_files Sequence[str]
- If any of the files altered in the commit pass the ignored_files filter and included_files is empty, then as far as this filter is concerned, we should trigger the build. If any of the files altered in the commit pass the ignored_files filter and included_files is not empty, then we make sure that at least one of those files matches a included_files glob. If not, then we do not trigger a build.
- location str
- name str
- User-assigned name of the trigger. Must be unique within the project. Trigger names must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character.
- project str
- pubsub_config PubsubConfig Args 
- PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published.
- repository_event_ Repositoryconfig Event Config Args 
- The configuration of a trigger that creates a build whenever an event from Repo API is received.
- resource_name str
- The Triggername with format:projects/{project}/locations/{location}/triggers/{trigger}, where {trigger} is a unique identifier generated by the service.
- service_account str
- The service account used for all user-controlled operations including UpdateBuildTrigger, RunBuildTrigger, CreateBuild, and CancelBuild. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead. Format: projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT_ID_OR_EMAIL}
- source_to_ Gitbuild Repo Source Args 
- The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers.
- substitutions Mapping[str, str]
- Substitutions for Build resource. The keys must match the following regular expression: ^_[A-Z0-9_]+$.
- Sequence[str]
- Tags for annotation of a BuildTrigger
- trigger_template RepoSource Args 
- Template describing the types of source changes to trigger a build. Branch and tag names in trigger templates are interpreted as regular expressions. Any branch or tag change that matches that regular expression will trigger a build. Mutually exclusive with github.
- webhook_config WebhookConfig Args 
- WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL.
- projectId String
- Required. ID of the project for which to configure automatic builds.
- approvalConfig Property Map
- Configuration for manual approval to start a build invocation of this BuildTrigger.
- autodetect Boolean
- Autodetect build configuration. The following precedence is used (case insensitive): 1. cloudbuild.yaml 2. cloudbuild.yml 3. cloudbuild.json 4. Dockerfile Currently only available for GitHub App Triggers.
- bitbucketServer Property MapTrigger Config 
- BitbucketServerTriggerConfig describes the configuration of a trigger that creates a build whenever a Bitbucket Server event is received.
- build Property Map
- Contents of the build template.
- description String
- Human-readable description of this trigger.
- disabled Boolean
- If true, the trigger will never automatically execute a build.
- eventType "EVENT_TYPE_UNSPECIFIED" | "REPO" | "WEBHOOK" | "PUBSUB" | "MANUAL"
- EventType allows the user to explicitly set the type of event to which this BuildTrigger should respond. This field will be validated against the rest of the configuration if it is set.
- filename String
- Path, from the source root, to the build configuration file (i.e. cloudbuild.yaml).
- filter String
- A Common Expression Language string.
- gitFile Property MapSource 
- The file source describing the local or remote Build template.
- github Property Map
- GitHubEventsConfig describes the configuration of a trigger that creates a build whenever a GitHub event is received. Mutually exclusive with trigger_template.
- gitlabEnterprise Property MapEvents Config 
- GitLabEnterpriseEventsConfig describes the configuration of a trigger that creates a build whenever a GitLab Enterprise event is received.
- ignoredFiles List<String>
- ignored_files and included_files are file glob matches using https://golang.org/pkg/path/filepath/#Match extended with support for "**". If ignored_files and changed files are both empty, then they are not used to determine whether or not to trigger a build. If ignored_files is not empty, then we ignore any files that match any of the ignored_file globs. If the change has no files that are outside of the ignored_files globs, then we do not trigger a build.
- includeBuild "INCLUDE_BUILD_LOGS_UNSPECIFIED" | "INCLUDE_BUILD_LOGS_WITH_STATUS"Logs 
- If set to INCLUDE_BUILD_LOGS_WITH_STATUS, log url will be shown on GitHub page when build status is final. Setting this field to INCLUDE_BUILD_LOGS_WITH_STATUS for non GitHub triggers results in INVALID_ARGUMENT error.
- includedFiles List<String>
- If any of the files altered in the commit pass the ignored_files filter and included_files is empty, then as far as this filter is concerned, we should trigger the build. If any of the files altered in the commit pass the ignored_files filter and included_files is not empty, then we make sure that at least one of those files matches a included_files glob. If not, then we do not trigger a build.
- location String
- name String
- User-assigned name of the trigger. Must be unique within the project. Trigger names must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character.
- project String
- pubsubConfig Property Map
- PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published.
- repositoryEvent Property MapConfig 
- The configuration of a trigger that creates a build whenever an event from Repo API is received.
- resourceName String
- The Triggername with format:projects/{project}/locations/{location}/triggers/{trigger}, where {trigger} is a unique identifier generated by the service.
- serviceAccount String
- The service account used for all user-controlled operations including UpdateBuildTrigger, RunBuildTrigger, CreateBuild, and CancelBuild. If no service account is set, then the standard Cloud Build service account ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead. Format: projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT_ID_OR_EMAIL}
- sourceTo Property MapBuild 
- The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers.
- substitutions Map<String>
- Substitutions for Build resource. The keys must match the following regular expression: ^_[A-Z0-9_]+$.
- List<String>
- Tags for annotation of a BuildTrigger
- triggerTemplate Property Map
- Template describing the types of source changes to trigger a build. Branch and tag names in trigger templates are interpreted as regular expressions. Any branch or tag change that matches that regular expression will trigger a build. Mutually exclusive with github.
- webhookConfig Property Map
- WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger's webhook URL.
Outputs
All input properties are implicitly available as output properties. Additionally, the Trigger resource produces the following output properties:
- CreateTime string
- Time when the trigger was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- CreateTime string
- Time when the trigger was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- createTime String
- Time when the trigger was created.
- id String
- The provider-assigned unique ID for this managed resource.
- createTime string
- Time when the trigger was created.
- id string
- The provider-assigned unique ID for this managed resource.
- create_time str
- Time when the trigger was created.
- id str
- The provider-assigned unique ID for this managed resource.
- createTime String
- Time when the trigger was created.
- id String
- The provider-assigned unique ID for this managed resource.
Supporting Types
ApprovalConfig, ApprovalConfigArgs    
- ApprovalRequired 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 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 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 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 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 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.
ApprovalConfigResponse, ApprovalConfigResponseArgs      
- ApprovalRequired 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 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 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 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 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 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 string
- The time when the approval decision was made.
- ApproverAccount 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 string
- Optional. An optional comment for this manual approval result.
- Decision string
- The decision of this manual approval.
- Url 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 string
- The time when the approval decision was made.
- ApproverAccount 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 string
- Optional. An optional comment for this manual approval result.
- Decision string
- The decision of this manual approval.
- Url 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 String
- The time when the approval decision was made.
- approverAccount 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 String
- Optional. An optional comment for this manual approval result.
- decision String
- The decision of this manual approval.
- url 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 string
- The time when the approval decision was made.
- approverAccount 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 string
- Optional. An optional comment for this manual approval result.
- decision string
- The decision of this manual approval.
- url 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 str
- The time when the approval decision was made.
- approver_account 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 str
- Optional. An optional comment for this manual approval result.
- decision str
- The decision of this manual approval.
- url 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 String
- The time when the approval decision was made.
- approverAccount 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 String
- Optional. An optional comment for this manual approval result.
- decision String
- The decision of this manual approval.
- url 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 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.
- Timing
Pulumi.Google Native. Cloud Build. V1. Inputs. Time Span Response 
- Stores timing information for pushing all artifact objects.
- 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.
- Timing
TimeSpan Response 
- Stores timing information for pushing all artifact objects.
- 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.
- timing
TimeSpan Response 
- Stores timing information for pushing all artifact objects.
- 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.
- timing
TimeSpan Response 
- Stores timing information for pushing all artifact objects.
- 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.
- timing
TimeSpan Response 
- Stores timing information for pushing all artifact objects.
- 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.
- timing 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.Google Native. Cloud Build. V1. Inputs. Maven Artifact> 
- 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.Google Native. Cloud Build. V1. Inputs. Npm Package> 
- 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.Google Native. Cloud Build. V1. Inputs. Artifact Objects 
- 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.Google Native. Cloud Build. V1. Inputs. Python Package> 
- 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 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.Google Native. Cloud Build. V1. Inputs. Maven Artifact Response> 
- 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.Google Native. Cloud Build. V1. Inputs. Npm Package Response> 
- 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.Google Native. Cloud Build. V1. Inputs. Artifact Objects Response 
- 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.Google Native. Cloud Build. V1. Inputs. Python Package Response> 
- 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 Response 
- 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 Response 
- 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 Response 
- 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 Response 
- 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 Response> 
- 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 Response> 
- 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 Response 
- 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 Response> 
- 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 Response[] 
- 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 Response[] 
- 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 Response 
- 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 Response[] 
- 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 Response] 
- 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 Response] 
- 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 Response 
- 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 Response] 
- 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.
BitbucketServerConfigResponse, BitbucketServerConfigResponseArgs        
- ApiKey string
- Immutable. API Key that will be attached to webhook. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- ConnectedRepositories List<Pulumi.Google Native. Cloud Build. V1. Inputs. Bitbucket Server Repository Id Response> 
- Connected Bitbucket Server repositories for this config.
- CreateTime string
- Time when the config was created.
- HostUri string
- Immutable. The URI of the Bitbucket Server host. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- Name string
- The resource name for the config.
- PeeredNetwork string
- Optional. The network to be used when reaching out to the Bitbucket Server instance. The VPC network must be enabled for private service connection. This should be set if the Bitbucket Server instance is hosted on-premises and not reachable by public internet. If this field is left empty, no network peering will occur and calls to the Bitbucket Server instance will be made over the public internet. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number or id and {network} is the name of a VPC network in the project.
- PeeredNetwork stringIp Range 
- Immutable. IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29would specify an IP range starting at 192.168.0.0 with a 29 bit prefix size./16would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of/24will be used. The field only has an effect if peered_network is set.
- Secrets
Pulumi.Google Native. Cloud Build. V1. Inputs. Bitbucket Server Secrets Response 
- Secret Manager secrets needed by the config.
- SslCa string
- Optional. SSL certificate to use for requests to Bitbucket Server. The format should be PEM format but the extension can be one of .pem, .cer, or .crt.
- Username string
- Username of the account Cloud Build will use on Bitbucket Server.
- WebhookKey string
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
- ApiKey string
- Immutable. API Key that will be attached to webhook. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- ConnectedRepositories []BitbucketServer Repository Id Response 
- Connected Bitbucket Server repositories for this config.
- CreateTime string
- Time when the config was created.
- HostUri string
- Immutable. The URI of the Bitbucket Server host. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- Name string
- The resource name for the config.
- PeeredNetwork string
- Optional. The network to be used when reaching out to the Bitbucket Server instance. The VPC network must be enabled for private service connection. This should be set if the Bitbucket Server instance is hosted on-premises and not reachable by public internet. If this field is left empty, no network peering will occur and calls to the Bitbucket Server instance will be made over the public internet. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number or id and {network} is the name of a VPC network in the project.
- PeeredNetwork stringIp Range 
- Immutable. IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29would specify an IP range starting at 192.168.0.0 with a 29 bit prefix size./16would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of/24will be used. The field only has an effect if peered_network is set.
- Secrets
BitbucketServer Secrets Response 
- Secret Manager secrets needed by the config.
- SslCa string
- Optional. SSL certificate to use for requests to Bitbucket Server. The format should be PEM format but the extension can be one of .pem, .cer, or .crt.
- Username string
- Username of the account Cloud Build will use on Bitbucket Server.
- WebhookKey string
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
- apiKey String
- Immutable. API Key that will be attached to webhook. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- connectedRepositories List<BitbucketServer Repository Id Response> 
- Connected Bitbucket Server repositories for this config.
- createTime String
- Time when the config was created.
- hostUri String
- Immutable. The URI of the Bitbucket Server host. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- name String
- The resource name for the config.
- peeredNetwork String
- Optional. The network to be used when reaching out to the Bitbucket Server instance. The VPC network must be enabled for private service connection. This should be set if the Bitbucket Server instance is hosted on-premises and not reachable by public internet. If this field is left empty, no network peering will occur and calls to the Bitbucket Server instance will be made over the public internet. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number or id and {network} is the name of a VPC network in the project.
- peeredNetwork StringIp Range 
- Immutable. IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29would specify an IP range starting at 192.168.0.0 with a 29 bit prefix size./16would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of/24will be used. The field only has an effect if peered_network is set.
- secrets
BitbucketServer Secrets Response 
- Secret Manager secrets needed by the config.
- sslCa String
- Optional. SSL certificate to use for requests to Bitbucket Server. The format should be PEM format but the extension can be one of .pem, .cer, or .crt.
- username String
- Username of the account Cloud Build will use on Bitbucket Server.
- webhookKey String
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
- apiKey string
- Immutable. API Key that will be attached to webhook. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- connectedRepositories BitbucketServer Repository Id Response[] 
- Connected Bitbucket Server repositories for this config.
- createTime string
- Time when the config was created.
- hostUri string
- Immutable. The URI of the Bitbucket Server host. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- name string
- The resource name for the config.
- peeredNetwork string
- Optional. The network to be used when reaching out to the Bitbucket Server instance. The VPC network must be enabled for private service connection. This should be set if the Bitbucket Server instance is hosted on-premises and not reachable by public internet. If this field is left empty, no network peering will occur and calls to the Bitbucket Server instance will be made over the public internet. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number or id and {network} is the name of a VPC network in the project.
- peeredNetwork stringIp Range 
- Immutable. IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29would specify an IP range starting at 192.168.0.0 with a 29 bit prefix size./16would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of/24will be used. The field only has an effect if peered_network is set.
- secrets
BitbucketServer Secrets Response 
- Secret Manager secrets needed by the config.
- sslCa string
- Optional. SSL certificate to use for requests to Bitbucket Server. The format should be PEM format but the extension can be one of .pem, .cer, or .crt.
- username string
- Username of the account Cloud Build will use on Bitbucket Server.
- webhookKey string
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
- api_key str
- Immutable. API Key that will be attached to webhook. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- connected_repositories Sequence[BitbucketServer Repository Id Response] 
- Connected Bitbucket Server repositories for this config.
- create_time str
- Time when the config was created.
- host_uri str
- Immutable. The URI of the Bitbucket Server host. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- name str
- The resource name for the config.
- peered_network str
- Optional. The network to be used when reaching out to the Bitbucket Server instance. The VPC network must be enabled for private service connection. This should be set if the Bitbucket Server instance is hosted on-premises and not reachable by public internet. If this field is left empty, no network peering will occur and calls to the Bitbucket Server instance will be made over the public internet. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number or id and {network} is the name of a VPC network in the project.
- peered_network_ strip_ range 
- Immutable. IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29would specify an IP range starting at 192.168.0.0 with a 29 bit prefix size./16would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of/24will be used. The field only has an effect if peered_network is set.
- secrets
BitbucketServer Secrets Response 
- Secret Manager secrets needed by the config.
- ssl_ca str
- Optional. SSL certificate to use for requests to Bitbucket Server. The format should be PEM format but the extension can be one of .pem, .cer, or .crt.
- username str
- Username of the account Cloud Build will use on Bitbucket Server.
- webhook_key str
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
- apiKey String
- Immutable. API Key that will be attached to webhook. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- connectedRepositories List<Property Map>
- Connected Bitbucket Server repositories for this config.
- createTime String
- Time when the config was created.
- hostUri String
- Immutable. The URI of the Bitbucket Server host. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- name String
- The resource name for the config.
- peeredNetwork String
- Optional. The network to be used when reaching out to the Bitbucket Server instance. The VPC network must be enabled for private service connection. This should be set if the Bitbucket Server instance is hosted on-premises and not reachable by public internet. If this field is left empty, no network peering will occur and calls to the Bitbucket Server instance will be made over the public internet. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number or id and {network} is the name of a VPC network in the project.
- peeredNetwork StringIp Range 
- Immutable. IP range within the peered network. This is specified in CIDR notation with a slash and the subnet prefix size. You can optionally specify an IP address before the subnet prefix value. e.g. 192.168.0.0/29would specify an IP range starting at 192.168.0.0 with a 29 bit prefix size./16would specify a prefix size of 16 bits, with an automatically determined IP within the peered VPC. If unspecified, a value of/24will be used. The field only has an effect if peered_network is set.
- secrets Property Map
- Secret Manager secrets needed by the config.
- sslCa String
- Optional. SSL certificate to use for requests to Bitbucket Server. The format should be PEM format but the extension can be one of .pem, .cer, or .crt.
- username String
- Username of the account Cloud Build will use on Bitbucket Server.
- webhookKey String
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
BitbucketServerRepositoryIdResponse, BitbucketServerRepositoryIdResponseArgs          
- ProjectKey string
- Identifier for the project storing the repository.
- RepoSlug string
- Identifier for the repository.
- WebhookId int
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
- ProjectKey string
- Identifier for the project storing the repository.
- RepoSlug string
- Identifier for the repository.
- WebhookId int
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
- projectKey String
- Identifier for the project storing the repository.
- repoSlug String
- Identifier for the repository.
- webhookId Integer
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
- projectKey string
- Identifier for the project storing the repository.
- repoSlug string
- Identifier for the repository.
- webhookId number
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
- project_key str
- Identifier for the project storing the repository.
- repo_slug str
- Identifier for the repository.
- webhook_id int
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
- projectKey String
- Identifier for the project storing the repository.
- repoSlug String
- Identifier for the repository.
- webhookId Number
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
BitbucketServerSecretsResponse, BitbucketServerSecretsResponseArgs        
- AdminAccess stringToken Version Name 
- The resource name for the admin access token's secret version.
- ReadAccess stringToken Version Name 
- The resource name for the read access token's secret version.
- WebhookSecret stringVersion Name 
- Immutable. The resource name for the webhook secret's secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- AdminAccess stringToken Version Name 
- The resource name for the admin access token's secret version.
- ReadAccess stringToken Version Name 
- The resource name for the read access token's secret version.
- WebhookSecret stringVersion Name 
- Immutable. The resource name for the webhook secret's secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- adminAccess StringToken Version Name 
- The resource name for the admin access token's secret version.
- readAccess StringToken Version Name 
- The resource name for the read access token's secret version.
- webhookSecret StringVersion Name 
- Immutable. The resource name for the webhook secret's secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- adminAccess stringToken Version Name 
- The resource name for the admin access token's secret version.
- readAccess stringToken Version Name 
- The resource name for the read access token's secret version.
- webhookSecret stringVersion Name 
- Immutable. The resource name for the webhook secret's secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- admin_access_ strtoken_ version_ name 
- The resource name for the admin access token's secret version.
- read_access_ strtoken_ version_ name 
- The resource name for the read access token's secret version.
- webhook_secret_ strversion_ name 
- Immutable. The resource name for the webhook secret's secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
- adminAccess StringToken Version Name 
- The resource name for the admin access token's secret version.
- readAccess StringToken Version Name 
- The resource name for the read access token's secret version.
- webhookSecret StringVersion Name 
- Immutable. The resource name for the webhook secret's secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.
BitbucketServerTriggerConfig, BitbucketServerTriggerConfigArgs        
- BitbucketServer stringConfig Resource 
- The Bitbucket server config resource that this trigger config maps to.
- ProjectKey string
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- RepoSlug string
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- PullRequest Pulumi.Google Native. Cloud Build. V1. Inputs. Pull Request Filter 
- Filter to match changes in pull requests.
- Push
Pulumi.Google Native. Cloud Build. V1. Inputs. Push Filter 
- Filter to match changes in refs like branches, tags.
- BitbucketServer stringConfig Resource 
- The Bitbucket server config resource that this trigger config maps to.
- ProjectKey string
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- RepoSlug string
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- PullRequest PullRequest Filter 
- Filter to match changes in pull requests.
- Push
PushFilter 
- Filter to match changes in refs like branches, tags.
- bitbucketServer StringConfig Resource 
- The Bitbucket server config resource that this trigger config maps to.
- projectKey String
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- repoSlug String
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- pullRequest PullRequest Filter 
- Filter to match changes in pull requests.
- push
PushFilter 
- Filter to match changes in refs like branches, tags.
- bitbucketServer stringConfig Resource 
- The Bitbucket server config resource that this trigger config maps to.
- projectKey string
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- repoSlug string
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- pullRequest PullRequest Filter 
- Filter to match changes in pull requests.
- push
PushFilter 
- Filter to match changes in refs like branches, tags.
- bitbucket_server_ strconfig_ resource 
- The Bitbucket server config resource that this trigger config maps to.
- project_key str
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- repo_slug str
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- pull_request PullRequest Filter 
- Filter to match changes in pull requests.
- push
PushFilter 
- Filter to match changes in refs like branches, tags.
- bitbucketServer StringConfig Resource 
- The Bitbucket server config resource that this trigger config maps to.
- projectKey String
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- repoSlug String
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- pullRequest Property Map
- Filter to match changes in pull requests.
- push Property Map
- Filter to match changes in refs like branches, tags.
BitbucketServerTriggerConfigResponse, BitbucketServerTriggerConfigResponseArgs          
- BitbucketServer Pulumi.Config Google Native. Cloud Build. V1. Inputs. Bitbucket Server Config Response 
- The BitbucketServerConfig specified in the bitbucket_server_config_resource field.
- BitbucketServer stringConfig Resource 
- The Bitbucket server config resource that this trigger config maps to.
- ProjectKey string
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- PullRequest Pulumi.Google Native. Cloud Build. V1. Inputs. Pull Request Filter Response 
- Filter to match changes in pull requests.
- Push
Pulumi.Google Native. Cloud Build. V1. Inputs. Push Filter Response 
- Filter to match changes in refs like branches, tags.
- RepoSlug string
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- BitbucketServer BitbucketConfig Server Config Response 
- The BitbucketServerConfig specified in the bitbucket_server_config_resource field.
- BitbucketServer stringConfig Resource 
- The Bitbucket server config resource that this trigger config maps to.
- ProjectKey string
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- PullRequest PullRequest Filter Response 
- Filter to match changes in pull requests.
- Push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- RepoSlug string
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- bitbucketServer BitbucketConfig Server Config Response 
- The BitbucketServerConfig specified in the bitbucket_server_config_resource field.
- bitbucketServer StringConfig Resource 
- The Bitbucket server config resource that this trigger config maps to.
- projectKey String
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- pullRequest PullRequest Filter Response 
- Filter to match changes in pull requests.
- push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- repoSlug String
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- bitbucketServer BitbucketConfig Server Config Response 
- The BitbucketServerConfig specified in the bitbucket_server_config_resource field.
- bitbucketServer stringConfig Resource 
- The Bitbucket server config resource that this trigger config maps to.
- projectKey string
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- pullRequest PullRequest Filter Response 
- Filter to match changes in pull requests.
- push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- repoSlug string
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- bitbucket_server_ Bitbucketconfig Server Config Response 
- The BitbucketServerConfig specified in the bitbucket_server_config_resource field.
- bitbucket_server_ strconfig_ resource 
- The Bitbucket server config resource that this trigger config maps to.
- project_key str
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- pull_request PullRequest Filter Response 
- Filter to match changes in pull requests.
- push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- repo_slug str
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
- bitbucketServer Property MapConfig 
- The BitbucketServerConfig specified in the bitbucket_server_config_resource field.
- bitbucketServer StringConfig Resource 
- The Bitbucket server config resource that this trigger config maps to.
- projectKey String
- Key of the project that the repo is in. For example: The key for https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
- pullRequest Property Map
- Filter to match changes in pull requests.
- push Property Map
- Filter to match changes in refs like branches, tags.
- repoSlug String
- Slug of the repository. A repository slug is a URL-friendly version of a repository name, automatically generated by Bitbucket for use in the URL. For example, if the repository name is 'test repo', in the URL it would become 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
Build, BuildArgs  
- Steps
List<Pulumi.Google Native. Cloud Build. V1. Inputs. Build Step> 
- The operations to be performed on the workspace.
- Artifacts
Pulumi.Google Native. Cloud Build. V1. Inputs. Artifacts 
- Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
- AvailableSecrets Pulumi.Google Native. Cloud Build. 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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- 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.Google Native. Cloud Build. V1. Inputs. Build Options 
- Special options for this build.
- 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.Google Native. Cloud Build. 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_secretsto 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.Google Native. Cloud Build. V1. Inputs. Source 
- The location of the source files to build.
- Substitutions Dictionary<string, string>
- Substitutions data for Buildresource.
- 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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- Steps
[]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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- 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.
- 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_secretsto 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 Buildresource.
- []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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- steps
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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- 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.
- 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_secretsto 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 Buildresource.
- 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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- steps
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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- 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.
- 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_secretsto 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 Buildresource.
- 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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- steps
Sequence[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.
- available_secrets Secrets
- 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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- 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
BuildOptions 
- Special options for this build.
- 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[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_secretsto 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 Source
- The location of the source files to build.
- substitutions Mapping[str, str]
- Substitutions data for Buildresource.
- 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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- steps 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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- 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.
- 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_secretsto 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 Buildresource.
- 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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
BuildApprovalResponse, BuildApprovalResponseArgs      
- Config
Pulumi.Google Native. Cloud Build. V1. Inputs. Approval Config Response 
- Configuration for manual approval of this build.
- Result
Pulumi.Google Native. Cloud Build. V1. Inputs. Approval Result Response 
- Result of manual approval for this Build.
- State string
- The state of this build's approval.
- Config
ApprovalConfig Response 
- Configuration for manual approval of this build.
- Result
ApprovalResult Response 
- Result of manual approval for this Build.
- State string
- The state of this build's approval.
- config
ApprovalConfig Response 
- Configuration for manual approval of this build.
- result
ApprovalResult Response 
- Result of manual approval for this Build.
- state String
- The state of this build's approval.
- config
ApprovalConfig Response 
- Configuration for manual approval of this build.
- result
ApprovalResult Response 
- Result of manual approval for this Build.
- state string
- The state of this build's approval.
- config
ApprovalConfig Response 
- Configuration for manual approval of this build.
- result
ApprovalResult Response 
- Result of manual approval for this Build.
- state str
- The state of this build's approval.
- config Property Map
- Configuration for manual approval of this build.
- result Property Map
- Result of manual approval for this Build.
- state 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.
- DefaultLogs Pulumi.Bucket Behavior Google Native. Cloud Build. V1. Build Options Default Logs Bucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- DiskSize stringGb 
- 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".
- LogStreaming Pulumi.Option Google Native. Cloud Build. V1. Build Options Log Streaming Option 
- Option to define build log streaming behavior to Cloud Storage.
- Logging
Pulumi.Google Native. Cloud Build. V1. Build Options Logging 
- Option to specify the logging mode, which determines if and where build logs are stored.
- MachineType Pulumi.Google Native. Cloud Build. V1. Build Options Machine Type 
- Compute Engine machine type on which to run the build.
- Pool
Pulumi.Google Native. Cloud Build. V1. Inputs. Pool Option 
- Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
- RequestedVerify Pulumi.Option Google Native. Cloud Build. V1. Build Options Requested Verify Option 
- 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.
- SourceProvenance List<Pulumi.Hash Google Native. Cloud Build. V1. Build Options Source Provenance Hash Item> 
- Requested hash for SourceProvenance.
- SubstitutionOption Pulumi.Google Native. Cloud Build. V1. Build Options Substitution Option 
- 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.Google Native. Cloud Build. 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.nameinstead.
- AutomapSubstitutions bool
- Option to include built-in and custom substitutions as env variables for all build steps.
- DefaultLogs BuildBucket Behavior Options Default Logs Bucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- DiskSize stringGb 
- 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".
- LogStreaming BuildOption Options Log Streaming Option 
- Option to define build log streaming behavior to Cloud Storage.
- Logging
BuildOptions Logging 
- Option to specify the logging mode, which determines if and where build logs are stored.
- MachineType BuildOptions Machine Type 
- 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.
- RequestedVerify BuildOption Options Requested Verify Option 
- 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.
- SourceProvenance []BuildHash Options Source Provenance Hash Item 
- Requested hash for SourceProvenance.
- SubstitutionOption BuildOptions Substitution Option 
- 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.nameinstead.
- automapSubstitutions Boolean
- Option to include built-in and custom substitutions as env variables for all build steps.
- defaultLogs BuildBucket Behavior Options Default Logs Bucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- diskSize StringGb 
- 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".
- logStreaming BuildOption Options Log Streaming Option 
- Option to define build log streaming behavior to Cloud Storage.
- logging
BuildOptions Logging 
- Option to specify the logging mode, which determines if and where build logs are stored.
- machineType BuildOptions Machine Type 
- 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.
- requestedVerify BuildOption Options Requested Verify Option 
- 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.
- sourceProvenance List<BuildHash Options Source Provenance Hash Item> 
- Requested hash for SourceProvenance.
- substitutionOption BuildOptions Substitution Option 
- 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.nameinstead.
- automapSubstitutions boolean
- Option to include built-in and custom substitutions as env variables for all build steps.
- defaultLogs BuildBucket Behavior Options Default Logs Bucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- diskSize stringGb 
- 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".
- logStreaming BuildOption Options Log Streaming Option 
- Option to define build log streaming behavior to Cloud Storage.
- logging
BuildOptions Logging 
- Option to specify the logging mode, which determines if and where build logs are stored.
- machineType BuildOptions Machine Type 
- 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.
- requestedVerify BuildOption Options Requested Verify Option 
- 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.
- sourceProvenance BuildHash Options Source Provenance Hash Item[] 
- Requested hash for SourceProvenance.
- substitutionOption BuildOptions Substitution Option 
- 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.nameinstead.
- automap_substitutions bool
- Option to include built-in and custom substitutions as env variables for all build steps.
- default_logs_ Buildbucket_ behavior Options Default Logs Bucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- disk_size_ strgb 
- 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_ Buildoption Options Log Streaming Option 
- Option to define build log streaming behavior to Cloud Storage.
- logging
BuildOptions Logging 
- Option to specify the logging mode, which determines if and where build logs are stored.
- machine_type BuildOptions Machine Type 
- 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_ Buildoption Options Requested Verify Option 
- 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_ Sequence[Buildhash Options Source Provenance Hash Item] 
- Requested hash for SourceProvenance.
- substitution_option BuildOptions Substitution Option 
- 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.nameinstead.
- automapSubstitutions Boolean
- Option to include built-in and custom substitutions as env variables for all build steps.
- defaultLogs "DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIED" | "REGIONAL_USER_OWNED_BUCKET"Bucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- diskSize StringGb 
- 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".
- logStreaming "STREAM_DEFAULT" | "STREAM_ON" | "STREAM_OFF"Option 
- 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.
- requestedVerify "NOT_VERIFIED" | "VERIFIED"Option 
- 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.
- sourceProvenance List<"NONE" | "SHA256" | "MD5" | "SHA512">Hash 
- 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.nameinstead.
BuildOptionsDefaultLogsBucketBehavior, BuildOptionsDefaultLogsBucketBehaviorArgs            
- DefaultLogs Bucket Behavior Unspecified 
- DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIEDUnspecified.
- RegionalUser 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.
- BuildOptions Default Logs Bucket Behavior Default Logs Bucket Behavior Unspecified 
- DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIEDUnspecified.
- BuildOptions Default Logs Bucket Behavior 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.
- DefaultLogs Bucket Behavior Unspecified 
- DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIEDUnspecified.
- RegionalUser 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.
- DefaultLogs Bucket Behavior Unspecified 
- DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIEDUnspecified.
- RegionalUser 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.
- "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.
- BuildOptions Log Streaming Option Stream Default 
- STREAM_DEFAULTService may automatically determine build log streaming behavior.
- BuildOptions Log Streaming Option Stream On 
- STREAM_ONBuild logs should be streamed to Cloud Storage.
- BuildOptions Log Streaming Option Stream Off 
- 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.
- CloudLogging 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.
- BuildOptions Logging 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.
- BuildOptions Logging Legacy 
- LEGACYBuild logs are stored in Cloud Logging and Cloud Storage.
- BuildOptions Logging Gcs Only 
- GCS_ONLYBuild logs are stored in Cloud Storage.
- BuildOptions Logging Stackdriver Only 
- STACKDRIVER_ONLYThis option is the same as CLOUD_LOGGING_ONLY.
- BuildOptions Logging Cloud Logging Only 
- CLOUD_LOGGING_ONLYBuild logs are stored in Cloud Logging. Selecting this option will not allow logs streaming.
- BuildOptions Logging 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.
- CloudLogging 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.
- 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.
- CloudLogging 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.
- "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.
- BuildOptions Machine Type Unspecified 
- UNSPECIFIEDStandard machine type.
- BuildOptions Machine Type N1Highcpu8 
- N1_HIGHCPU_8Highcpu machine with 8 CPUs.
- BuildOptions Machine Type N1Highcpu32 
- N1_HIGHCPU_32Highcpu machine with 32 CPUs.
- BuildOptions Machine Type E2Highcpu8 
- E2_HIGHCPU_8Highcpu e2 machine with 8 CPUs.
- BuildOptions Machine Type E2Highcpu32 
- E2_HIGHCPU_32Highcpu e2 machine with 32 CPUs.
- BuildOptions Machine Type 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.
- 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.
- BuildOptions Requested Verify Option Not Verified 
- NOT_VERIFIEDNot a verifiable build (the default).
- BuildOptions Requested Verify Option Verified 
- 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 bool
- Option to include built-in and custom substitutions as env variables for all build steps.
- DefaultLogs stringBucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- DiskSize stringGb 
- 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".
- LogStreaming stringOption 
- Option to define build log streaming behavior to Cloud Storage.
- Logging string
- Option to specify the logging mode, which determines if and where build logs are stored.
- MachineType string
- Compute Engine machine type on which to run the build.
- Pool
Pulumi.Google Native. Cloud Build. V1. Inputs. Pool Option Response 
- Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
- RequestedVerify stringOption 
- 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.
- SourceProvenance List<string>Hash 
- Requested hash for SourceProvenance.
- SubstitutionOption 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
List<Pulumi.Google Native. Cloud Build. V1. Inputs. Volume Response> 
- 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.nameinstead.
- AutomapSubstitutions bool
- Option to include built-in and custom substitutions as env variables for all build steps.
- DefaultLogs stringBucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- DiskSize stringGb 
- 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".
- LogStreaming stringOption 
- Option to define build log streaming behavior to Cloud Storage.
- Logging string
- Option to specify the logging mode, which determines if and where build logs are stored.
- MachineType string
- Compute Engine machine type on which to run the build.
- Pool
PoolOption Response 
- Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
- RequestedVerify stringOption 
- 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.
- SourceProvenance []stringHash 
- Requested hash for SourceProvenance.
- SubstitutionOption 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
[]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 string
- This field deprecated; please use pool.nameinstead.
- automapSubstitutions Boolean
- Option to include built-in and custom substitutions as env variables for all build steps.
- defaultLogs StringBucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- diskSize StringGb 
- 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".
- logStreaming StringOption 
- Option to define build log streaming behavior to Cloud Storage.
- logging String
- Option to specify the logging mode, which determines if and where build logs are stored.
- machineType String
- Compute Engine machine type on which to run the build.
- pool
PoolOption Response 
- Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
- requestedVerify StringOption 
- 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.
- sourceProvenance List<String>Hash 
- Requested hash for SourceProvenance.
- substitutionOption 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
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 String
- This field deprecated; please use pool.nameinstead.
- automapSubstitutions boolean
- Option to include built-in and custom substitutions as env variables for all build steps.
- defaultLogs stringBucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- diskSize stringGb 
- 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".
- logStreaming stringOption 
- Option to define build log streaming behavior to Cloud Storage.
- logging string
- Option to specify the logging mode, which determines if and where build logs are stored.
- machineType string
- Compute Engine machine type on which to run the build.
- pool
PoolOption Response 
- Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
- requestedVerify stringOption 
- 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.
- sourceProvenance string[]Hash 
- Requested hash for SourceProvenance.
- substitutionOption 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
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 string
- This field deprecated; please use pool.nameinstead.
- automap_substitutions bool
- Option to include built-in and custom substitutions as env variables for all build steps.
- default_logs_ strbucket_ behavior 
- Optional. Option to specify how default logs buckets are setup.
- disk_size_ strgb 
- 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_ stroption 
- Option to define build log streaming behavior to Cloud Storage.
- logging str
- Option to specify the logging mode, which determines if and where build logs are stored.
- machine_type str
- Compute Engine machine type on which to run the build.
- pool
PoolOption Response 
- Optional. Specification for execution on a WorkerPool. See running builds in a private pool for more information.
- requested_verify_ stroption 
- 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_ Sequence[str]hash 
- Requested hash for SourceProvenance.
- substitution_option 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
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 str
- This field deprecated; please use pool.nameinstead.
- automapSubstitutions Boolean
- Option to include built-in and custom substitutions as env variables for all build steps.
- defaultLogs StringBucket Behavior 
- Optional. Option to specify how default logs buckets are setup.
- diskSize StringGb 
- 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".
- logStreaming StringOption 
- Option to define build log streaming behavior to Cloud Storage.
- logging String
- Option to specify the logging mode, which determines if and where build logs are stored.
- machineType String
- 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.
- requestedVerify StringOption 
- 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.
- sourceProvenance List<String>Hash 
- Requested hash for SourceProvenance.
- substitutionOption 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 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.nameinstead.
BuildOptionsSourceProvenanceHashItem, BuildOptionsSourceProvenanceHashItemArgs            
- None
- NONENo hash requested.
- Sha256
- SHA256Use a sha256 hash.
- Md5
- MD5Use a md5 hash.
- Sha512
- SHA512Use a sha512 hash.
- BuildOptions Source Provenance Hash Item None 
- NONENo hash requested.
- BuildOptions Source Provenance Hash Item Sha256 
- SHA256Use a sha256 hash.
- BuildOptions Source Provenance Hash Item Md5 
- MD5Use a md5 hash.
- BuildOptions Source Provenance Hash Item 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.
- "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.
- BuildOptions Substitution Option Must Match 
- MUST_MATCHFails the build if error in substitutions checks, like missing a substitution in the template or in the map.
- BuildOptions Substitution Option Allow Loose 
- 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.
BuildResponse, BuildResponseArgs    
- Approval
Pulumi.Google Native. Cloud Build. V1. Inputs. Build Approval Response 
- Describes this build's approval configuration, status, and result.
- Artifacts
Pulumi.Google Native. Cloud Build. V1. Inputs. Artifacts Response 
- Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
- AvailableSecrets Pulumi.Google Native. Cloud Build. V1. Inputs. Secrets Response 
- Secrets and secret environment variables.
- BuildTrigger stringId 
- The ID of the BuildTriggerthat triggered this build, if it was triggered automatically.
- CreateTime string
- Time at which the request to create the build was received.
- FailureInfo Pulumi.Google Native. Cloud Build. V1. Inputs. Failure Info Response 
- 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.
- 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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- LogUrl string
- URL to logs for this build in Google Cloud Console.
- 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.
- Name string
- The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
- Options
Pulumi.Google Native. Cloud Build. V1. Inputs. Build Options Response 
- Special options for this build.
- Project string
- ID of the project.
- 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.
- Results
Pulumi.Google Native. Cloud Build. V1. Inputs. Results Response 
- Results of the build.
- Secrets
List<Pulumi.Google Native. Cloud Build. V1. Inputs. Secret Response> 
- Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secretsto 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.Google Native. Cloud Build. V1. Inputs. Source Response 
- The location of the source files to build.
- SourceProvenance Pulumi.Google Native. Cloud Build. V1. Inputs. Source Provenance Response 
- 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.
- Steps
List<Pulumi.Google Native. Cloud Build. V1. Inputs. Build Step Response> 
- The operations to be performed on the workspace.
- Substitutions Dictionary<string, string>
- Substitutions data for Buildresource.
- 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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- 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.Google Native. Cloud Build. V1. Inputs. Warning Response> 
- Non-fatal problems encountered during the execution of the build.
- Approval
BuildApproval Response 
- Describes this build's approval configuration, status, and result.
- Artifacts
ArtifactsResponse 
- Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
- AvailableSecrets SecretsResponse 
- Secrets and secret environment variables.
- BuildTrigger stringId 
- The ID of the BuildTriggerthat triggered this build, if it was triggered automatically.
- CreateTime string
- Time at which the request to create the build was received.
- FailureInfo FailureInfo Response 
- 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.
- 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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- LogUrl string
- URL to logs for this build in Google Cloud Console.
- 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.
- Name string
- The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
- Options
BuildOptions Response 
- Special options for this build.
- Project string
- ID of the project.
- 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.
- Results
ResultsResponse 
- Results of the build.
- Secrets
[]SecretResponse 
- Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secretsto 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
SourceResponse 
- The location of the source files to build.
- SourceProvenance SourceProvenance Response 
- 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.
- Steps
[]BuildStep Response 
- The operations to be performed on the workspace.
- Substitutions map[string]string
- Substitutions data for Buildresource.
- []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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- 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
BuildApproval Response 
- Describes this build's approval configuration, status, and result.
- artifacts
ArtifactsResponse 
- Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
- availableSecrets SecretsResponse 
- Secrets and secret environment variables.
- buildTrigger StringId 
- The ID of the BuildTriggerthat triggered this build, if it was triggered automatically.
- createTime String
- Time at which the request to create the build was received.
- failureInfo FailureInfo Response 
- 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.
- 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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- logUrl String
- URL to logs for this build in Google Cloud Console.
- 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.
- name String
- The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
- options
BuildOptions Response 
- Special options for this build.
- project String
- ID of the project.
- 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.
- results
ResultsResponse 
- Results of the build.
- secrets
List<SecretResponse> 
- Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secretsto 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
SourceResponse 
- The location of the source files to build.
- sourceProvenance SourceProvenance Response 
- 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.
- steps
List<BuildStep Response> 
- The operations to be performed on the workspace.
- substitutions Map<String,String>
- Substitutions data for Buildresource.
- 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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- 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
BuildApproval Response 
- Describes this build's approval configuration, status, and result.
- artifacts
ArtifactsResponse 
- Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
- availableSecrets SecretsResponse 
- Secrets and secret environment variables.
- buildTrigger stringId 
- The ID of the BuildTriggerthat triggered this build, if it was triggered automatically.
- createTime string
- Time at which the request to create the build was received.
- failureInfo FailureInfo Response 
- 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.
- 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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- logUrl string
- URL to logs for this build in Google Cloud Console.
- 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.
- name string
- The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
- options
BuildOptions Response 
- Special options for this build.
- project string
- ID of the project.
- 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.
- results
ResultsResponse 
- Results of the build.
- secrets
SecretResponse[] 
- Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secretsto 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
SourceResponse 
- The location of the source files to build.
- sourceProvenance SourceProvenance Response 
- 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.
- steps
BuildStep Response[] 
- The operations to be performed on the workspace.
- substitutions {[key: string]: string}
- Substitutions data for Buildresource.
- 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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- 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
BuildApproval Response 
- Describes this build's approval configuration, status, and result.
- artifacts
ArtifactsResponse 
- Artifacts produced by the build that should be uploaded upon successful completion of all build steps.
- available_secrets SecretsResponse 
- Secrets and secret environment variables.
- build_trigger_ strid 
- The ID of the BuildTriggerthat triggered this build, if it was triggered automatically.
- create_time str
- Time at which the request to create the build was received.
- failure_info FailureInfo Response 
- 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.
- 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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- log_url str
- URL to logs for this build in Google Cloud Console.
- 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.
- name str
- The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
- options
BuildOptions Response 
- Special options for this build.
- project str
- ID of the project.
- 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.
- results
ResultsResponse 
- Results of the build.
- secrets
Sequence[SecretResponse] 
- Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secretsto 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
SourceResponse 
- The location of the source files to build.
- source_provenance SourceProvenance Response 
- 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.
- steps
Sequence[BuildStep Response] 
- The operations to be performed on the workspace.
- substitutions Mapping[str, str]
- Substitutions data for Buildresource.
- 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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- 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.
- 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.
- buildTrigger StringId 
- The ID of the BuildTriggerthat 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.
- 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 Buildresource's results field. If any of the images fail to be pushed, the build status is markedFAILURE.
- logUrl String
- URL to logs for this build in Google Cloud Console.
- 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.
- name String
- The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.
- options Property Map
- Special options for this build.
- project String
- ID of the project.
- 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.
- results Property Map
- Results of the build.
- 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_secretsto 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.
- 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.
- steps List<Property Map>
- The operations to be performed on the workspace.
- substitutions Map<String>
- Substitutions data for Buildresource.
- 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.timeoutstarts ticking fromstartTime. Default time is 60 minutes.
- 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.
BuildStep, BuildStepArgs    
- Name 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.
- AllowExit List<int>Codes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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_forto 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.Google Native. Cloud Build. 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
- Name 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.
- AllowExit []intCodes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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_forto 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
- name 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.
- allowExit List<Integer>Codes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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_forto 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
- name 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.
- allowExit number[]Codes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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_forto 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
- name 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_ Sequence[int]codes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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_forto 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
- name 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.
- allowExit List<Number>Codes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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_forto 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
BuildStepResponse, BuildStepResponseArgs      
- AllowExit List<int>Codes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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".
- ExitCode int
- Return code from running the step.
- Name 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 Pulumi.Google Native. Cloud Build. V1. Inputs. Time Span Response 
- Stores timing information for pulling this build step's builder image only.
- 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.
- Status 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 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
Pulumi.Google Native. Cloud Build. V1. Inputs. Time Span Response 
- Stores timing information for executing this build step.
- Volumes
List<Pulumi.Google Native. Cloud Build. V1. Inputs. Volume Response> 
- 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
- AllowExit []intCodes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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".
- ExitCode int
- Return code from running the step.
- Name 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 TimeSpan Response 
- Stores timing information for pulling this build step's builder image only.
- 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.
- Status 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 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
TimeSpan Response 
- Stores timing information for executing this build step.
- Volumes
[]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 []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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
- allowExit List<Integer>Codes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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".
- exitCode Integer
- Return code from running the step.
- name 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 TimeSpan Response 
- Stores timing information for pulling this build step's builder image only.
- 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.
- status 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 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
TimeSpan Response 
- Stores timing information for executing this build step.
- volumes
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 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
- allowExit number[]Codes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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".
- exitCode number
- Return code from running the step.
- name 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 TimeSpan Response 
- Stores timing information for pulling this build step's builder image only.
- 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.
- status 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 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
TimeSpan Response 
- Stores timing information for executing this build step.
- volumes
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 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
- allow_exit_ Sequence[int]codes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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".
- exit_code int
- Return code from running the step.
- name 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 TimeSpan Response 
- Stores timing information for pulling this build step's builder image only.
- 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.
- status 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 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
TimeSpan Response 
- Stores timing information for executing this build step.
- volumes
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 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
- allowExit List<Number>Codes 
- 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 argsare 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 volumefor that path is specified. If the build specifies aRepoSourcewithdirand a step with adir, which specifies an absolute path, theRepoSourcediris 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".
- exitCode Number
- Return code from running the step.
- name 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 Property Map
- Stores timing information for pulling this build step's builder image only.
- 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.
- status 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 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 Property Map
- Stores timing information for executing this build step.
- 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_forhave completed successfully. Ifwait_foris empty, this build step will start when all previous build steps in theBuild.Stepslist have completed successfully.
BuiltImageResponse, BuiltImageResponseArgs      
- Digest string
- Docker Registry 2.0 digest.
- Name string
- Name used to push the container image to Google Container Registry, as presented to docker push.
- PushTiming Pulumi.Google Native. Cloud Build. V1. Inputs. Time Span Response 
- Stores timing information for pushing the specified image.
- Digest string
- Docker Registry 2.0 digest.
- Name string
- Name used to push the container image to Google Container Registry, as presented to docker push.
- PushTiming TimeSpan Response 
- Stores timing information for pushing the specified image.
- digest String
- Docker Registry 2.0 digest.
- name String
- Name used to push the container image to Google Container Registry, as presented to docker push.
- pushTiming TimeSpan Response 
- Stores timing information for pushing the specified image.
- digest string
- Docker Registry 2.0 digest.
- name string
- Name used to push the container image to Google Container Registry, as presented to docker push.
- pushTiming TimeSpan Response 
- Stores timing information for pushing the specified image.
- digest str
- Docker Registry 2.0 digest.
- name str
- Name used to push the container image to Google Container Registry, as presented to docker push.
- push_timing TimeSpan Response 
- Stores timing information for pushing the specified image.
- digest String
- Docker Registry 2.0 digest.
- name String
- Name used to push the container image to Google Container Registry, as presented to docker push.
- pushTiming Property Map
- Stores timing information for pushing the specified image.
ConnectedRepository, ConnectedRepositoryArgs    
- Repository 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 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 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 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 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 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 string
- Directory, relative to the source root, in which to run the build.
- Repository string
- Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
- Revision string
- The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
- Dir string
- Directory, relative to the source root, in which to run the build.
- Repository string
- Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
- Revision string
- The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
- dir String
- Directory, relative to the source root, in which to run the build.
- repository String
- Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
- revision String
- The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
- dir string
- Directory, relative to the source root, in which to run the build.
- repository string
- Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
- revision string
- The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
- dir str
- Directory, relative to the source root, in which to run the build.
- repository str
- Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
- revision str
- The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
- dir String
- Directory, relative to the source root, in which to run the build.
- repository String
- Name of the Google Cloud Build repository, formatted as projects/*/locations/*/connections/*/repositories/*.
- revision String
- The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
FailureInfoResponse, FailureInfoResponseArgs      
FileHashesResponse, FileHashesResponseArgs      
- FileHash List<Pulumi.Google Native. Cloud Build. V1. Inputs. Hash Response> 
- Collection of file hashes.
- FileHash []HashResponse 
- Collection of file hashes.
- fileHash List<HashResponse> 
- Collection of file hashes.
- fileHash HashResponse[] 
- Collection of file hashes.
- file_hash Sequence[HashResponse] 
- Collection of file hashes.
- fileHash List<Property Map>
- Collection of file hashes.
GitFileSource, GitFileSourceArgs      
- BitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- GithubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- Path string
- The path of the file, with the repo root as the root of the path.
- RepoType Pulumi.Google Native. Cloud Build. V1. Git File Source Repo Type 
- See RepoType above.
- Repository string
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- Revision string
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- Uri string
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- BitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- GithubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- Path string
- The path of the file, with the repo root as the root of the path.
- RepoType GitFile Source Repo Type 
- See RepoType above.
- Repository string
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- Revision string
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- Uri string
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- bitbucketServer StringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise StringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- path String
- The path of the file, with the repo root as the root of the path.
- repoType GitFile Source Repo Type 
- See RepoType above.
- repository String
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- revision String
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- uri String
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- bitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- path string
- The path of the file, with the repo root as the root of the path.
- repoType GitFile Source Repo Type 
- See RepoType above.
- repository string
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- revision string
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- uri string
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- bitbucket_server_ strconfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- github_enterprise_ strconfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- path str
- The path of the file, with the repo root as the root of the path.
- repo_type GitFile Source Repo Type 
- See RepoType above.
- repository str
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- revision str
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- uri str
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- bitbucketServer StringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise StringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- path String
- The path of the file, with the repo root as the root of the path.
- repoType "UNKNOWN" | "CLOUD_SOURCE_REPOSITORIES" | "GITHUB" | "BITBUCKET_SERVER" | "GITLAB"
- See RepoType above.
- repository String
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- revision String
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- uri String
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
GitFileSourceRepoType, GitFileSourceRepoTypeArgs          
- Unknown
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- CloudSource Repositories 
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- Github
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- BitbucketServer 
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- Gitlab
- GITLABA GitLab-hosted repo.
- GitFile Source Repo Type Unknown 
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- GitFile Source Repo Type Cloud Source Repositories 
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- GitFile Source Repo Type Github 
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- GitFile Source Repo Type Bitbucket Server 
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- GitFile Source Repo Type Gitlab 
- GITLABA GitLab-hosted repo.
- Unknown
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- CloudSource Repositories 
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- Github
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- BitbucketServer 
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- Gitlab
- GITLABA GitLab-hosted repo.
- Unknown
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- CloudSource Repositories 
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- Github
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- BitbucketServer 
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- Gitlab
- GITLABA GitLab-hosted repo.
- UNKNOWN
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- CLOUD_SOURCE_REPOSITORIES
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- GITHUB
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- BITBUCKET_SERVER
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- GITLAB
- GITLABA GitLab-hosted repo.
- "UNKNOWN"
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- "CLOUD_SOURCE_REPOSITORIES"
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- "GITHUB"
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- "BITBUCKET_SERVER"
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- "GITLAB"
- GITLABA GitLab-hosted repo.
GitFileSourceResponse, GitFileSourceResponseArgs        
- BitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- GithubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- Path string
- The path of the file, with the repo root as the root of the path.
- RepoType string
- See RepoType above.
- Repository string
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- Revision string
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- Uri string
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- BitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- GithubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- Path string
- The path of the file, with the repo root as the root of the path.
- RepoType string
- See RepoType above.
- Repository string
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- Revision string
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- Uri string
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- bitbucketServer StringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise StringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- path String
- The path of the file, with the repo root as the root of the path.
- repoType String
- See RepoType above.
- repository String
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- revision String
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- uri String
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- bitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- path string
- The path of the file, with the repo root as the root of the path.
- repoType string
- See RepoType above.
- repository string
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- revision string
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- uri string
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- bitbucket_server_ strconfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- github_enterprise_ strconfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- path str
- The path of the file, with the repo root as the root of the path.
- repo_type str
- See RepoType above.
- repository str
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- revision str
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- uri str
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- bitbucketServer StringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise StringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- path String
- The path of the file, with the repo root as the root of the path.
- repoType String
- See RepoType above.
- repository String
- The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
- revision String
- The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
- uri String
- The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
GitHubEventsConfig, GitHubEventsConfigArgs        
- EnterpriseConfig stringResource Name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- InstallationId string
- The installationID that emits the GitHub event.
- Name string
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- Owner string
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- PullRequest Pulumi.Google Native. Cloud Build. V1. Inputs. Pull Request Filter 
- filter to match changes in pull requests.
- Push
Pulumi.Google Native. Cloud Build. V1. Inputs. Push Filter 
- filter to match changes in refs like branches, tags.
- EnterpriseConfig stringResource Name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- InstallationId string
- The installationID that emits the GitHub event.
- Name string
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- Owner string
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- PullRequest PullRequest Filter 
- filter to match changes in pull requests.
- Push
PushFilter 
- filter to match changes in refs like branches, tags.
- enterpriseConfig StringResource Name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- installationId String
- The installationID that emits the GitHub event.
- name String
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- owner String
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- pullRequest PullRequest Filter 
- filter to match changes in pull requests.
- push
PushFilter 
- filter to match changes in refs like branches, tags.
- enterpriseConfig stringResource Name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- installationId string
- The installationID that emits the GitHub event.
- name string
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- owner string
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- pullRequest PullRequest Filter 
- filter to match changes in pull requests.
- push
PushFilter 
- filter to match changes in refs like branches, tags.
- enterprise_config_ strresource_ name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- installation_id str
- The installationID that emits the GitHub event.
- name str
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- owner str
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- pull_request PullRequest Filter 
- filter to match changes in pull requests.
- push
PushFilter 
- filter to match changes in refs like branches, tags.
- enterpriseConfig StringResource Name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- installationId String
- The installationID that emits the GitHub event.
- name String
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- owner String
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- pullRequest Property Map
- filter to match changes in pull requests.
- push Property Map
- filter to match changes in refs like branches, tags.
GitHubEventsConfigResponse, GitHubEventsConfigResponseArgs          
- EnterpriseConfig stringResource Name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- InstallationId string
- The installationID that emits the GitHub event.
- Name string
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- Owner string
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- PullRequest Pulumi.Google Native. Cloud Build. V1. Inputs. Pull Request Filter Response 
- filter to match changes in pull requests.
- Push
Pulumi.Google Native. Cloud Build. V1. Inputs. Push Filter Response 
- filter to match changes in refs like branches, tags.
- EnterpriseConfig stringResource Name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- InstallationId string
- The installationID that emits the GitHub event.
- Name string
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- Owner string
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- PullRequest PullRequest Filter Response 
- filter to match changes in pull requests.
- Push
PushFilter Response 
- filter to match changes in refs like branches, tags.
- enterpriseConfig StringResource Name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- installationId String
- The installationID that emits the GitHub event.
- name String
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- owner String
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- pullRequest PullRequest Filter Response 
- filter to match changes in pull requests.
- push
PushFilter Response 
- filter to match changes in refs like branches, tags.
- enterpriseConfig stringResource Name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- installationId string
- The installationID that emits the GitHub event.
- name string
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- owner string
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- pullRequest PullRequest Filter Response 
- filter to match changes in pull requests.
- push
PushFilter Response 
- filter to match changes in refs like branches, tags.
- enterprise_config_ strresource_ name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- installation_id str
- The installationID that emits the GitHub event.
- name str
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- owner str
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- pull_request PullRequest Filter Response 
- filter to match changes in pull requests.
- push
PushFilter Response 
- filter to match changes in refs like branches, tags.
- enterpriseConfig StringResource Name 
- Optional. The resource name of the github enterprise config that should be applied to this installation. For example: "projects/{$project_id}/locations/{$location_id}/githubEnterpriseConfigs/{$config_id}"
- installationId String
- The installationID that emits the GitHub event.
- name String
- Name of the repository. For example: The name for https://github.com/googlecloudplatform/cloud-builders is "cloud-builders".
- owner String
- Owner of the repository. For example: The owner for https://github.com/googlecloudplatform/cloud-builders is "googlecloudplatform".
- pullRequest Property Map
- filter to match changes in pull requests.
- push Property Map
- filter to match changes in refs like branches, tags.
GitLabConfigResponse, GitLabConfigResponseArgs        
- ConnectedRepositories List<Pulumi.Google Native. Cloud Build. V1. Inputs. Git Lab Repository Id Response> 
- Connected GitLab.com or GitLabEnterprise repositories for this config.
- CreateTime string
- Time when the config was created.
- EnterpriseConfig Pulumi.Google Native. Cloud Build. V1. Inputs. Git Lab Enterprise Config Response 
- Optional. GitLabEnterprise config.
- Name string
- The resource name for the config.
- Secrets
Pulumi.Google Native. Cloud Build. V1. Inputs. Git Lab Secrets Response 
- Secret Manager secrets needed by the config.
- Username string
- Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
- WebhookKey string
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
- ConnectedRepositories []GitLab Repository Id Response 
- Connected GitLab.com or GitLabEnterprise repositories for this config.
- CreateTime string
- Time when the config was created.
- EnterpriseConfig GitLab Enterprise Config Response 
- Optional. GitLabEnterprise config.
- Name string
- The resource name for the config.
- Secrets
GitLab Secrets Response 
- Secret Manager secrets needed by the config.
- Username string
- Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
- WebhookKey string
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
- connectedRepositories List<GitLab Repository Id Response> 
- Connected GitLab.com or GitLabEnterprise repositories for this config.
- createTime String
- Time when the config was created.
- enterpriseConfig GitLab Enterprise Config Response 
- Optional. GitLabEnterprise config.
- name String
- The resource name for the config.
- secrets
GitLab Secrets Response 
- Secret Manager secrets needed by the config.
- username String
- Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
- webhookKey String
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
- connectedRepositories GitLab Repository Id Response[] 
- Connected GitLab.com or GitLabEnterprise repositories for this config.
- createTime string
- Time when the config was created.
- enterpriseConfig GitLab Enterprise Config Response 
- Optional. GitLabEnterprise config.
- name string
- The resource name for the config.
- secrets
GitLab Secrets Response 
- Secret Manager secrets needed by the config.
- username string
- Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
- webhookKey string
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
- connected_repositories Sequence[GitLab Repository Id Response] 
- Connected GitLab.com or GitLabEnterprise repositories for this config.
- create_time str
- Time when the config was created.
- enterprise_config GitLab Enterprise Config Response 
- Optional. GitLabEnterprise config.
- name str
- The resource name for the config.
- secrets
GitLab Secrets Response 
- Secret Manager secrets needed by the config.
- username str
- Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
- webhook_key str
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
- connectedRepositories List<Property Map>
- Connected GitLab.com or GitLabEnterprise repositories for this config.
- createTime String
- Time when the config was created.
- enterpriseConfig Property Map
- Optional. GitLabEnterprise config.
- name String
- The resource name for the config.
- secrets Property Map
- Secret Manager secrets needed by the config.
- username String
- Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
- webhookKey String
- UUID included in webhook requests. The UUID is used to look up the corresponding config.
GitLabEnterpriseConfigResponse, GitLabEnterpriseConfigResponseArgs          
- HostUri string
- Immutable. The URI of the GitlabEnterprise host.
- ServiceDirectory Pulumi.Config Google Native. Cloud Build. V1. Inputs. Service Directory Config Response 
- The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
- SslCa string
- The SSL certificate to use in requests to GitLab Enterprise instances.
- HostUri string
- Immutable. The URI of the GitlabEnterprise host.
- ServiceDirectory ServiceConfig Directory Config Response 
- The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
- SslCa string
- The SSL certificate to use in requests to GitLab Enterprise instances.
- hostUri String
- Immutable. The URI of the GitlabEnterprise host.
- serviceDirectory ServiceConfig Directory Config Response 
- The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
- sslCa String
- The SSL certificate to use in requests to GitLab Enterprise instances.
- hostUri string
- Immutable. The URI of the GitlabEnterprise host.
- serviceDirectory ServiceConfig Directory Config Response 
- The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
- sslCa string
- The SSL certificate to use in requests to GitLab Enterprise instances.
- host_uri str
- Immutable. The URI of the GitlabEnterprise host.
- service_directory_ Serviceconfig Directory Config Response 
- The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
- ssl_ca str
- The SSL certificate to use in requests to GitLab Enterprise instances.
- hostUri String
- Immutable. The URI of the GitlabEnterprise host.
- serviceDirectory Property MapConfig 
- The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
- sslCa String
- The SSL certificate to use in requests to GitLab Enterprise instances.
GitLabEventsConfig, GitLabEventsConfigArgs        
- GitlabConfig stringResource 
- The GitLab config resource that this trigger config maps to.
- ProjectNamespace string
- Namespace of the GitLab project.
- PullRequest Pulumi.Google Native. Cloud Build. V1. Inputs. Pull Request Filter 
- Filter to match changes in pull requests.
- Push
Pulumi.Google Native. Cloud Build. V1. Inputs. Push Filter 
- Filter to match changes in refs like branches, tags.
- GitlabConfig stringResource 
- The GitLab config resource that this trigger config maps to.
- ProjectNamespace string
- Namespace of the GitLab project.
- PullRequest PullRequest Filter 
- Filter to match changes in pull requests.
- Push
PushFilter 
- Filter to match changes in refs like branches, tags.
- gitlabConfig StringResource 
- The GitLab config resource that this trigger config maps to.
- projectNamespace String
- Namespace of the GitLab project.
- pullRequest PullRequest Filter 
- Filter to match changes in pull requests.
- push
PushFilter 
- Filter to match changes in refs like branches, tags.
- gitlabConfig stringResource 
- The GitLab config resource that this trigger config maps to.
- projectNamespace string
- Namespace of the GitLab project.
- pullRequest PullRequest Filter 
- Filter to match changes in pull requests.
- push
PushFilter 
- Filter to match changes in refs like branches, tags.
- gitlab_config_ strresource 
- The GitLab config resource that this trigger config maps to.
- project_namespace str
- Namespace of the GitLab project.
- pull_request PullRequest Filter 
- Filter to match changes in pull requests.
- push
PushFilter 
- Filter to match changes in refs like branches, tags.
- gitlabConfig StringResource 
- The GitLab config resource that this trigger config maps to.
- projectNamespace String
- Namespace of the GitLab project.
- pullRequest Property Map
- Filter to match changes in pull requests.
- push Property Map
- Filter to match changes in refs like branches, tags.
GitLabEventsConfigResponse, GitLabEventsConfigResponseArgs          
- GitlabConfig Pulumi.Google Native. Cloud Build. V1. Inputs. Git Lab Config Response 
- The GitLabConfig specified in the gitlab_config_resource field.
- GitlabConfig stringResource 
- The GitLab config resource that this trigger config maps to.
- ProjectNamespace string
- Namespace of the GitLab project.
- PullRequest Pulumi.Google Native. Cloud Build. V1. Inputs. Pull Request Filter Response 
- Filter to match changes in pull requests.
- Push
Pulumi.Google Native. Cloud Build. V1. Inputs. Push Filter Response 
- Filter to match changes in refs like branches, tags.
- GitlabConfig GitLab Config Response 
- The GitLabConfig specified in the gitlab_config_resource field.
- GitlabConfig stringResource 
- The GitLab config resource that this trigger config maps to.
- ProjectNamespace string
- Namespace of the GitLab project.
- PullRequest PullRequest Filter Response 
- Filter to match changes in pull requests.
- Push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- gitlabConfig GitLab Config Response 
- The GitLabConfig specified in the gitlab_config_resource field.
- gitlabConfig StringResource 
- The GitLab config resource that this trigger config maps to.
- projectNamespace String
- Namespace of the GitLab project.
- pullRequest PullRequest Filter Response 
- Filter to match changes in pull requests.
- push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- gitlabConfig GitLab Config Response 
- The GitLabConfig specified in the gitlab_config_resource field.
- gitlabConfig stringResource 
- The GitLab config resource that this trigger config maps to.
- projectNamespace string
- Namespace of the GitLab project.
- pullRequest PullRequest Filter Response 
- Filter to match changes in pull requests.
- push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- gitlab_config GitLab Config Response 
- The GitLabConfig specified in the gitlab_config_resource field.
- gitlab_config_ strresource 
- The GitLab config resource that this trigger config maps to.
- project_namespace str
- Namespace of the GitLab project.
- pull_request PullRequest Filter Response 
- Filter to match changes in pull requests.
- push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- gitlabConfig Property Map
- The GitLabConfig specified in the gitlab_config_resource field.
- gitlabConfig StringResource 
- The GitLab config resource that this trigger config maps to.
- projectNamespace String
- Namespace of the GitLab project.
- pullRequest Property Map
- Filter to match changes in pull requests.
- push Property Map
- Filter to match changes in refs like branches, tags.
GitLabRepositoryIdResponse, GitLabRepositoryIdResponseArgs          
- WebhookId int
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
- WebhookId int
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
- webhookId Integer
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
- webhookId number
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
- webhook_id int
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
- webhookId Number
- The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
GitLabSecretsResponse, GitLabSecretsResponseArgs        
- ApiAccess stringToken Version 
- The resource name for the api access token’s secret version
- ApiKey stringVersion 
- Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
- ReadAccess stringToken Version 
- The resource name for the read access token’s secret version
- WebhookSecret stringVersion 
- Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
- ApiAccess stringToken Version 
- The resource name for the api access token’s secret version
- ApiKey stringVersion 
- Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
- ReadAccess stringToken Version 
- The resource name for the read access token’s secret version
- WebhookSecret stringVersion 
- Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
- apiAccess StringToken Version 
- The resource name for the api access token’s secret version
- apiKey StringVersion 
- Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
- readAccess StringToken Version 
- The resource name for the read access token’s secret version
- webhookSecret StringVersion 
- Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
- apiAccess stringToken Version 
- The resource name for the api access token’s secret version
- apiKey stringVersion 
- Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
- readAccess stringToken Version 
- The resource name for the read access token’s secret version
- webhookSecret stringVersion 
- Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
- api_access_ strtoken_ version 
- The resource name for the api access token’s secret version
- api_key_ strversion 
- Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
- read_access_ strtoken_ version 
- The resource name for the read access token’s secret version
- webhook_secret_ strversion 
- Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
- apiAccess StringToken Version 
- The resource name for the api access token’s secret version
- apiKey StringVersion 
- Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
- readAccess StringToken Version 
- The resource name for the read access token’s secret version
- webhookSecret StringVersion 
- Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
GitRepoSource, GitRepoSourceArgs      
- BitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- GithubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- Ref string
- The branch or tag to use. Must start with "refs/" (required).
- RepoType Pulumi.Google Native. Cloud Build. V1. Git Repo Source Repo Type 
- See RepoType below.
- Repository string
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- Uri string
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
- BitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- GithubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- Ref string
- The branch or tag to use. Must start with "refs/" (required).
- RepoType GitRepo Source Repo Type 
- See RepoType below.
- Repository string
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- Uri string
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
- bitbucketServer StringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise StringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- ref String
- The branch or tag to use. Must start with "refs/" (required).
- repoType GitRepo Source Repo Type 
- See RepoType below.
- repository String
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- uri String
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
- bitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- ref string
- The branch or tag to use. Must start with "refs/" (required).
- repoType GitRepo Source Repo Type 
- See RepoType below.
- repository string
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- uri string
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
- bitbucket_server_ strconfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- github_enterprise_ strconfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- ref str
- The branch or tag to use. Must start with "refs/" (required).
- repo_type GitRepo Source Repo Type 
- See RepoType below.
- repository str
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- uri str
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
- bitbucketServer StringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise StringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- ref String
- The branch or tag to use. Must start with "refs/" (required).
- repoType "UNKNOWN" | "CLOUD_SOURCE_REPOSITORIES" | "GITHUB" | "BITBUCKET_SERVER" | "GITLAB"
- See RepoType below.
- repository String
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- uri String
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
GitRepoSourceRepoType, GitRepoSourceRepoTypeArgs          
- Unknown
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- CloudSource Repositories 
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- Github
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- BitbucketServer 
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- Gitlab
- GITLABA GitLab-hosted repo.
- GitRepo Source Repo Type Unknown 
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- GitRepo Source Repo Type Cloud Source Repositories 
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- GitRepo Source Repo Type Github 
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- GitRepo Source Repo Type Bitbucket Server 
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- GitRepo Source Repo Type Gitlab 
- GITLABA GitLab-hosted repo.
- Unknown
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- CloudSource Repositories 
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- Github
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- BitbucketServer 
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- Gitlab
- GITLABA GitLab-hosted repo.
- Unknown
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- CloudSource Repositories 
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- Github
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- BitbucketServer 
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- Gitlab
- GITLABA GitLab-hosted repo.
- UNKNOWN
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- CLOUD_SOURCE_REPOSITORIES
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- GITHUB
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- BITBUCKET_SERVER
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- GITLAB
- GITLABA GitLab-hosted repo.
- "UNKNOWN"
- UNKNOWNThe default, unknown repo type. Don't use it, instead use one of the other repo types.
- "CLOUD_SOURCE_REPOSITORIES"
- CLOUD_SOURCE_REPOSITORIESA Google Cloud Source Repositories-hosted repo.
- "GITHUB"
- GITHUBA GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise).
- "BITBUCKET_SERVER"
- BITBUCKET_SERVERA Bitbucket Server-hosted repo.
- "GITLAB"
- GITLABA GitLab-hosted repo.
GitRepoSourceResponse, GitRepoSourceResponseArgs        
- BitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- GithubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- Ref string
- The branch or tag to use. Must start with "refs/" (required).
- RepoType string
- See RepoType below.
- Repository string
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- Uri string
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
- BitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- GithubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- Ref string
- The branch or tag to use. Must start with "refs/" (required).
- RepoType string
- See RepoType below.
- Repository string
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- Uri string
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
- bitbucketServer StringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise StringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- ref String
- The branch or tag to use. Must start with "refs/" (required).
- repoType String
- See RepoType below.
- repository String
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- uri String
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
- bitbucketServer stringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise stringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- ref string
- The branch or tag to use. Must start with "refs/" (required).
- repoType string
- See RepoType below.
- repository string
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- uri string
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
- bitbucket_server_ strconfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- github_enterprise_ strconfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- ref str
- The branch or tag to use. Must start with "refs/" (required).
- repo_type str
- See RepoType below.
- repository str
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- uri str
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
- bitbucketServer StringConfig 
- The full resource name of the bitbucket server config. Format: projects/{project}/locations/{location}/bitbucketServerConfigs/{id}.
- githubEnterprise StringConfig 
- The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}.projects/{project}/githubEnterpriseConfigs/{id}.
- ref String
- The branch or tag to use. Must start with "refs/" (required).
- repoType String
- See RepoType below.
- repository String
- The connected repository resource name, in the format projects/*/locations/*/connections/*/repositories/*. Eitheruriorrepositorycan be specified and is required.
- uri String
- The URI of the repo (e.g. https://github.com/user/repo.git). Either uriorrepositorycan be specified and is required.
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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 string
- Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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 diris 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 fetchto fetch the revision from the Git repository; therefore make sure that the string you provide forrevisionis parsable by the command. For information on string values accepted bygit fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information ongit 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.
HashResponse, HashResponseArgs    
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.
- KmsKey stringName 
- 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.
- KmsKey stringName 
- 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.
- kmsKey StringName 
- 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.
- kmsKey stringName 
- 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_ strname 
- 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.
- kmsKey StringName 
- Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
InlineSecretResponse, InlineSecretResponseArgs      
- 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.
- KmsKey stringName 
- 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.
- KmsKey stringName 
- 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.
- kmsKey StringName 
- 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.
- kmsKey stringName 
- 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_ strname 
- 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.
- kmsKey StringName 
- Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/
MavenArtifact, MavenArtifactArgs    
- ArtifactId string
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- GroupId string
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
- ArtifactId string
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- GroupId string
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
- artifactId String
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- groupId String
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
- artifactId string
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- groupId string
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
- artifact_id str
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- group_id str
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
- artifactId String
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- groupId String
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
MavenArtifactResponse, MavenArtifactResponseArgs      
- ArtifactId string
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- GroupId string
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
- ArtifactId string
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- GroupId string
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
- artifactId String
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- groupId String
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
- artifactId string
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- groupId string
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
- artifact_id str
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- group_id str
- Maven groupIdvalue 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 versionvalue used when uploading the artifact to Artifact Registry.
- artifactId String
- Maven artifactIdvalue used when uploading the artifact to Artifact Registry.
- groupId String
- Maven groupIdvalue 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 versionvalue 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 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.
PoolOption, PoolOptionArgs    
- Name string
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
- Name string
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
- name String
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
- name string
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
- name str
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
- name String
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
PoolOptionResponse, PoolOptionResponseArgs      
- Name string
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
- Name string
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
- name String
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
- name string
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
- name str
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
- name String
- The WorkerPoolresource to execute the build on. You must havecloudbuild.workerpools.useon the project hosting the WorkerPool. Format projects/{project}/locations/{location}/workerPools/{workerPoolId}
PubsubConfig, PubsubConfigArgs    
- ServiceAccount stringEmail 
- Service account that will make the push request.
- State
Pulumi.Google Native. Cloud Build. V1. Pubsub Config State 
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- Topic string
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
- ServiceAccount stringEmail 
- Service account that will make the push request.
- State
PubsubConfig State 
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- Topic string
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
- serviceAccount StringEmail 
- Service account that will make the push request.
- state
PubsubConfig State 
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- topic String
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
- serviceAccount stringEmail 
- Service account that will make the push request.
- state
PubsubConfig State 
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- topic string
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
- service_account_ stremail 
- Service account that will make the push request.
- state
PubsubConfig State 
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- topic str
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
- serviceAccount StringEmail 
- Service account that will make the push request.
- state "STATE_UNSPECIFIED" | "OK" | "SUBSCRIPTION_DELETED" | "TOPIC_DELETED" | "SUBSCRIPTION_MISCONFIGURED"
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- topic String
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
PubsubConfigResponse, PubsubConfigResponseArgs      
- ServiceAccount stringEmail 
- Service account that will make the push request.
- State string
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- Subscription string
- Name of the subscription. Format is projects/{project}/subscriptions/{subscription}.
- Topic string
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
- ServiceAccount stringEmail 
- Service account that will make the push request.
- State string
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- Subscription string
- Name of the subscription. Format is projects/{project}/subscriptions/{subscription}.
- Topic string
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
- serviceAccount StringEmail 
- Service account that will make the push request.
- state String
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- subscription String
- Name of the subscription. Format is projects/{project}/subscriptions/{subscription}.
- topic String
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
- serviceAccount stringEmail 
- Service account that will make the push request.
- state string
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- subscription string
- Name of the subscription. Format is projects/{project}/subscriptions/{subscription}.
- topic string
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
- service_account_ stremail 
- Service account that will make the push request.
- state str
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- subscription str
- Name of the subscription. Format is projects/{project}/subscriptions/{subscription}.
- topic str
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
- serviceAccount StringEmail 
- Service account that will make the push request.
- state String
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- subscription String
- Name of the subscription. Format is projects/{project}/subscriptions/{subscription}.
- topic String
- The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.
PubsubConfigState, PubsubConfigStateArgs      
- StateUnspecified 
- STATE_UNSPECIFIEDThe subscription configuration has not been checked.
- Ok
- OKThe Pub/Sub subscription is properly configured.
- SubscriptionDeleted 
- SUBSCRIPTION_DELETEDThe subscription has been deleted.
- TopicDeleted 
- TOPIC_DELETEDThe topic has been deleted.
- SubscriptionMisconfigured 
- SUBSCRIPTION_MISCONFIGUREDSome of the subscription's field are misconfigured.
- PubsubConfig State State Unspecified 
- STATE_UNSPECIFIEDThe subscription configuration has not been checked.
- PubsubConfig State Ok 
- OKThe Pub/Sub subscription is properly configured.
- PubsubConfig State Subscription Deleted 
- SUBSCRIPTION_DELETEDThe subscription has been deleted.
- PubsubConfig State Topic Deleted 
- TOPIC_DELETEDThe topic has been deleted.
- PubsubConfig State Subscription Misconfigured 
- SUBSCRIPTION_MISCONFIGUREDSome of the subscription's field are misconfigured.
- StateUnspecified 
- STATE_UNSPECIFIEDThe subscription configuration has not been checked.
- Ok
- OKThe Pub/Sub subscription is properly configured.
- SubscriptionDeleted 
- SUBSCRIPTION_DELETEDThe subscription has been deleted.
- TopicDeleted 
- TOPIC_DELETEDThe topic has been deleted.
- SubscriptionMisconfigured 
- SUBSCRIPTION_MISCONFIGUREDSome of the subscription's field are misconfigured.
- StateUnspecified 
- STATE_UNSPECIFIEDThe subscription configuration has not been checked.
- Ok
- OKThe Pub/Sub subscription is properly configured.
- SubscriptionDeleted 
- SUBSCRIPTION_DELETEDThe subscription has been deleted.
- TopicDeleted 
- TOPIC_DELETEDThe topic has been deleted.
- SubscriptionMisconfigured 
- SUBSCRIPTION_MISCONFIGUREDSome of the subscription's field are misconfigured.
- STATE_UNSPECIFIED
- STATE_UNSPECIFIEDThe subscription configuration has not been checked.
- OK
- OKThe Pub/Sub subscription is properly configured.
- SUBSCRIPTION_DELETED
- SUBSCRIPTION_DELETEDThe subscription has been deleted.
- TOPIC_DELETED
- TOPIC_DELETEDThe topic has been deleted.
- SUBSCRIPTION_MISCONFIGURED
- SUBSCRIPTION_MISCONFIGUREDSome of the subscription's field are misconfigured.
- "STATE_UNSPECIFIED"
- STATE_UNSPECIFIEDThe subscription configuration has not been checked.
- "OK"
- OKThe Pub/Sub subscription is properly configured.
- "SUBSCRIPTION_DELETED"
- SUBSCRIPTION_DELETEDThe subscription has been deleted.
- "TOPIC_DELETED"
- TOPIC_DELETEDThe topic has been deleted.
- "SUBSCRIPTION_MISCONFIGURED"
- SUBSCRIPTION_MISCONFIGUREDSome of the subscription's field are misconfigured.
PullRequestFilter, PullRequestFilterArgs      
- Branch string
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- CommentControl Pulumi.Google Native. Cloud Build. V1. Pull Request Filter Comment Control 
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- InvertRegex bool
- If true, branches that do NOT match the git_ref will trigger a build.
- Branch string
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- CommentControl PullRequest Filter Comment Control 
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- InvertRegex bool
- If true, branches that do NOT match the git_ref will trigger a build.
- branch String
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- commentControl PullRequest Filter Comment Control 
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- invertRegex Boolean
- If true, branches that do NOT match the git_ref will trigger a build.
- branch string
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- commentControl PullRequest Filter Comment Control 
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- invertRegex boolean
- If true, branches that do NOT match the git_ref will trigger a build.
- branch str
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- comment_control PullRequest Filter Comment Control 
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- invert_regex bool
- If true, branches that do NOT match the git_ref will trigger a build.
- branch String
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- commentControl "COMMENTS_DISABLED" | "COMMENTS_ENABLED" | "COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY"
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- invertRegex Boolean
- If true, branches that do NOT match the git_ref will trigger a build.
PullRequestFilterCommentControl, PullRequestFilterCommentControlArgs          
- CommentsDisabled 
- COMMENTS_DISABLEDDo not require comments on Pull Requests before builds are triggered.
- CommentsEnabled 
- COMMENTS_ENABLEDEnforce that repository owners or collaborators must comment on Pull Requests before builds are triggered.
- CommentsEnabled For External Contributors Only 
- COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLYEnforce that repository owners or collaborators must comment on external contributors' Pull Requests before builds are triggered.
- PullRequest Filter Comment Control Comments Disabled 
- COMMENTS_DISABLEDDo not require comments on Pull Requests before builds are triggered.
- PullRequest Filter Comment Control Comments Enabled 
- COMMENTS_ENABLEDEnforce that repository owners or collaborators must comment on Pull Requests before builds are triggered.
- PullRequest Filter Comment Control Comments Enabled For External Contributors Only 
- COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLYEnforce that repository owners or collaborators must comment on external contributors' Pull Requests before builds are triggered.
- CommentsDisabled 
- COMMENTS_DISABLEDDo not require comments on Pull Requests before builds are triggered.
- CommentsEnabled 
- COMMENTS_ENABLEDEnforce that repository owners or collaborators must comment on Pull Requests before builds are triggered.
- CommentsEnabled For External Contributors Only 
- COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLYEnforce that repository owners or collaborators must comment on external contributors' Pull Requests before builds are triggered.
- CommentsDisabled 
- COMMENTS_DISABLEDDo not require comments on Pull Requests before builds are triggered.
- CommentsEnabled 
- COMMENTS_ENABLEDEnforce that repository owners or collaborators must comment on Pull Requests before builds are triggered.
- CommentsEnabled For External Contributors Only 
- COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLYEnforce that repository owners or collaborators must comment on external contributors' Pull Requests before builds are triggered.
- COMMENTS_DISABLED
- COMMENTS_DISABLEDDo not require comments on Pull Requests before builds are triggered.
- COMMENTS_ENABLED
- COMMENTS_ENABLEDEnforce that repository owners or collaborators must comment on Pull Requests before builds are triggered.
- COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY
- COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLYEnforce that repository owners or collaborators must comment on external contributors' Pull Requests before builds are triggered.
- "COMMENTS_DISABLED"
- COMMENTS_DISABLEDDo not require comments on Pull Requests before builds are triggered.
- "COMMENTS_ENABLED"
- COMMENTS_ENABLEDEnforce that repository owners or collaborators must comment on Pull Requests before builds are triggered.
- "COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY"
- COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLYEnforce that repository owners or collaborators must comment on external contributors' Pull Requests before builds are triggered.
PullRequestFilterResponse, PullRequestFilterResponseArgs        
- Branch string
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- CommentControl string
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- InvertRegex bool
- If true, branches that do NOT match the git_ref will trigger a build.
- Branch string
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- CommentControl string
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- InvertRegex bool
- If true, branches that do NOT match the git_ref will trigger a build.
- branch String
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- commentControl String
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- invertRegex Boolean
- If true, branches that do NOT match the git_ref will trigger a build.
- branch string
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- commentControl string
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- invertRegex boolean
- If true, branches that do NOT match the git_ref will trigger a build.
- branch str
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- comment_control str
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- invert_regex bool
- If true, branches that do NOT match the git_ref will trigger a build.
- branch String
- Regex of branches to match. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
- commentControl String
- Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
- invertRegex Boolean
- If true, branches that do NOT match the git_ref will trigger a build.
PushFilter, PushFilterArgs    
- Branch string
- Regexes 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
- InvertRegex bool
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- Tag string
- Regexes 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 string
- Regexes 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
- InvertRegex bool
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- Tag string
- Regexes 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 String
- Regexes 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
- invertRegex Boolean
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- tag String
- Regexes 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 string
- Regexes 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
- invertRegex boolean
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- tag string
- Regexes 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 str
- Regexes 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
- invert_regex bool
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- tag str
- Regexes 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 String
- Regexes 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
- invertRegex Boolean
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- tag String
- Regexes 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
PushFilterResponse, PushFilterResponseArgs      
- Branch string
- Regexes 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
- InvertRegex bool
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- Tag string
- Regexes 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 string
- Regexes 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
- InvertRegex bool
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- Tag string
- Regexes 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 String
- Regexes 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
- invertRegex Boolean
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- tag String
- Regexes 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 string
- Regexes 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
- invertRegex boolean
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- tag string
- Regexes 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 str
- Regexes 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
- invert_regex bool
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- tag str
- Regexes 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 String
- Regexes 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
- invertRegex Boolean
- When true, only trigger a build if the revision regex does NOT match the git_ref regex.
- tag String
- Regexes 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
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.ascfile.
- 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.ascfile.
- 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.ascfile.
- 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.ascfile.
- 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.ascfile.
- 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.ascfile.
- 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 List<string>
- Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an.ascfile.
- 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.ascfile.
- 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.ascfile.
- 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.ascfile.
- 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.ascfile.
- 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.ascfile.
- 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.
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 diris 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 diris 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 diris 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 diris 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 diris 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 diris 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 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 diris 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 diris 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 diris 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 diris 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 diris 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 diris 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
RepositoryEventConfig, RepositoryEventConfigArgs      
- PullRequest Pulumi.Google Native. Cloud Build. V1. Inputs. Pull Request Filter 
- Filter to match changes in pull requests.
- Push
Pulumi.Google Native. Cloud Build. V1. Inputs. Push Filter 
- Filter to match changes in refs like branches, tags.
- Repository string
- The resource name of the Repo API resource.
- PullRequest PullRequest Filter 
- Filter to match changes in pull requests.
- Push
PushFilter 
- Filter to match changes in refs like branches, tags.
- Repository string
- The resource name of the Repo API resource.
- pullRequest PullRequest Filter 
- Filter to match changes in pull requests.
- push
PushFilter 
- Filter to match changes in refs like branches, tags.
- repository String
- The resource name of the Repo API resource.
- pullRequest PullRequest Filter 
- Filter to match changes in pull requests.
- push
PushFilter 
- Filter to match changes in refs like branches, tags.
- repository string
- The resource name of the Repo API resource.
- pull_request PullRequest Filter 
- Filter to match changes in pull requests.
- push
PushFilter 
- Filter to match changes in refs like branches, tags.
- repository str
- The resource name of the Repo API resource.
- pullRequest Property Map
- Filter to match changes in pull requests.
- push Property Map
- Filter to match changes in refs like branches, tags.
- repository String
- The resource name of the Repo API resource.
RepositoryEventConfigResponse, RepositoryEventConfigResponseArgs        
- PullRequest Pulumi.Google Native. Cloud Build. V1. Inputs. Pull Request Filter Response 
- Filter to match changes in pull requests.
- Push
Pulumi.Google Native. Cloud Build. V1. Inputs. Push Filter Response 
- Filter to match changes in refs like branches, tags.
- Repository string
- The resource name of the Repo API resource.
- RepositoryType string
- The type of the SCM vendor the repository points to.
- PullRequest PullRequest Filter Response 
- Filter to match changes in pull requests.
- Push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- Repository string
- The resource name of the Repo API resource.
- RepositoryType string
- The type of the SCM vendor the repository points to.
- pullRequest PullRequest Filter Response 
- Filter to match changes in pull requests.
- push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- repository String
- The resource name of the Repo API resource.
- repositoryType String
- The type of the SCM vendor the repository points to.
- pullRequest PullRequest Filter Response 
- Filter to match changes in pull requests.
- push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- repository string
- The resource name of the Repo API resource.
- repositoryType string
- The type of the SCM vendor the repository points to.
- pull_request PullRequest Filter Response 
- Filter to match changes in pull requests.
- push
PushFilter Response 
- Filter to match changes in refs like branches, tags.
- repository str
- The resource name of the Repo API resource.
- repository_type str
- The type of the SCM vendor the repository points to.
- pullRequest Property Map
- Filter to match changes in pull requests.
- push Property Map
- Filter to match changes in refs like branches, tags.
- repository String
- The resource name of the Repo API resource.
- repositoryType String
- The type of the SCM vendor the repository points to.
ResultsResponse, ResultsResponseArgs    
- ArtifactManifest string
- Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- ArtifactTiming Pulumi.Google Native. Cloud Build. V1. Inputs. Time Span Response 
- Time to push all non-container artifacts to Cloud Storage.
- BuildStep List<string>Images 
- List of build step digests, in the order corresponding to build step indices.
- BuildStep List<string>Outputs 
- 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
List<Pulumi.Google Native. Cloud Build. V1. Inputs. Built Image Response> 
- Container images that were built as a part of the build.
- MavenArtifacts List<Pulumi.Google Native. Cloud Build. V1. Inputs. Uploaded Maven Artifact Response> 
- Maven artifacts uploaded to Artifact Registry at the end of the build.
- NpmPackages List<Pulumi.Google Native. Cloud Build. V1. Inputs. Uploaded Npm Package Response> 
- Npm packages uploaded to Artifact Registry at the end of the build.
- NumArtifacts string
- Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- PythonPackages List<Pulumi.Google Native. Cloud Build. V1. Inputs. Uploaded Python Package Response> 
- Python artifacts uploaded to Artifact Registry at the end of the build.
- ArtifactManifest string
- Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- ArtifactTiming TimeSpan Response 
- Time to push all non-container artifacts to Cloud Storage.
- BuildStep []stringImages 
- List of build step digests, in the order corresponding to build step indices.
- BuildStep []stringOutputs 
- 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
[]BuiltImage Response 
- Container images that were built as a part of the build.
- MavenArtifacts []UploadedMaven Artifact Response 
- Maven artifacts uploaded to Artifact Registry at the end of the build.
- NpmPackages []UploadedNpm Package Response 
- Npm packages uploaded to Artifact Registry at the end of the build.
- NumArtifacts string
- Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- PythonPackages []UploadedPython Package Response 
- Python artifacts uploaded to Artifact Registry at the end of the build.
- artifactManifest String
- Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- artifactTiming TimeSpan Response 
- Time to push all non-container artifacts to Cloud Storage.
- buildStep List<String>Images 
- List of build step digests, in the order corresponding to build step indices.
- buildStep List<String>Outputs 
- 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
List<BuiltImage Response> 
- Container images that were built as a part of the build.
- mavenArtifacts List<UploadedMaven Artifact Response> 
- Maven artifacts uploaded to Artifact Registry at the end of the build.
- npmPackages List<UploadedNpm Package Response> 
- Npm packages uploaded to Artifact Registry at the end of the build.
- numArtifacts String
- Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- pythonPackages List<UploadedPython Package Response> 
- Python artifacts uploaded to Artifact Registry at the end of the build.
- artifactManifest string
- Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- artifactTiming TimeSpan Response 
- Time to push all non-container artifacts to Cloud Storage.
- buildStep string[]Images 
- List of build step digests, in the order corresponding to build step indices.
- buildStep string[]Outputs 
- 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
BuiltImage Response[] 
- Container images that were built as a part of the build.
- mavenArtifacts UploadedMaven Artifact Response[] 
- Maven artifacts uploaded to Artifact Registry at the end of the build.
- npmPackages UploadedNpm Package Response[] 
- Npm packages uploaded to Artifact Registry at the end of the build.
- numArtifacts string
- Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- pythonPackages UploadedPython Package Response[] 
- Python artifacts uploaded to Artifact Registry at the end of the build.
- artifact_manifest 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 TimeSpan Response 
- Time to push all non-container artifacts to Cloud Storage.
- build_step_ Sequence[str]images 
- List of build step digests, in the order corresponding to build step indices.
- build_step_ Sequence[str]outputs 
- 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
Sequence[BuiltImage Response] 
- Container images that were built as a part of the build.
- maven_artifacts Sequence[UploadedMaven Artifact Response] 
- Maven artifacts uploaded to Artifact Registry at the end of the build.
- npm_packages Sequence[UploadedNpm Package Response] 
- Npm packages uploaded to Artifact Registry at the end of the build.
- num_artifacts str
- Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- python_packages Sequence[UploadedPython Package Response] 
- Python artifacts uploaded to Artifact Registry at the end of the build.
- artifactManifest String
- Path to the artifact manifest for non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- artifactTiming Property Map
- Time to push all non-container artifacts to Cloud Storage.
- buildStep List<String>Images 
- List of build step digests, in the order corresponding to build step indices.
- buildStep List<String>Outputs 
- 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 List<Property Map>
- Container images that were built as a part of the build.
- mavenArtifacts List<Property Map>
- Maven artifacts uploaded to Artifact Registry at the end of the build.
- npmPackages List<Property Map>
- Npm packages uploaded to Artifact Registry at the end of the build.
- numArtifacts String
- Number of non-container artifacts uploaded to Cloud Storage. Only populated when artifacts are uploaded to Cloud Storage.
- pythonPackages List<Property Map>
- Python artifacts uploaded to Artifact Registry at the end of the build.
Secret, SecretArgs  
- KmsKey stringName 
- 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.
- KmsKey stringName 
- 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.
- kmsKey StringName 
- 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.
- kmsKey stringName 
- 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_ strname 
- 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.
- kmsKey StringName 
- 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 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/*
SecretResponse, SecretResponseArgs    
- KmsKey stringName 
- 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.
- KmsKey stringName 
- 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.
- kmsKey StringName 
- 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.
- kmsKey stringName 
- 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_ strname 
- 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.
- kmsKey StringName 
- 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.
Secrets, SecretsArgs  
- Inline
List<Pulumi.Google Native. Cloud Build. V1. Inputs. Inline Secret> 
- Secrets encrypted with KMS key and the associated secret environment variable.
- SecretManager List<Pulumi.Google Native. Cloud Build. V1. Inputs. Secret Manager Secret> 
- Secrets in Secret Manager and associated secret environment variable.
- Inline
[]InlineSecret 
- Secrets encrypted with KMS key and the associated secret environment variable.
- SecretManager []SecretManager Secret 
- 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<SecretManager Secret> 
- Secrets in Secret Manager and associated secret environment variable.
- inline
InlineSecret[] 
- Secrets encrypted with KMS key and the associated secret environment variable.
- secretManager SecretManager Secret[] 
- 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[SecretManager Secret] 
- 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
List<Pulumi.Google Native. Cloud Build. V1. Inputs. Inline Secret Response> 
- Secrets encrypted with KMS key and the associated secret environment variable.
- SecretManager List<Pulumi.Google Native. Cloud Build. V1. Inputs. Secret Manager Secret Response> 
- Secrets in Secret Manager and associated secret environment variable.
- Inline
[]InlineSecret Response 
- Secrets encrypted with KMS key and the associated secret environment variable.
- SecretManager []SecretManager Secret Response 
- Secrets in Secret Manager and associated secret environment variable.
- inline
List<InlineSecret Response> 
- Secrets encrypted with KMS key and the associated secret environment variable.
- secretManager List<SecretManager Secret Response> 
- Secrets in Secret Manager and associated secret environment variable.
- inline
InlineSecret Response[] 
- Secrets encrypted with KMS key and the associated secret environment variable.
- secretManager SecretManager Secret Response[] 
- Secrets in Secret Manager and associated secret environment variable.
- inline
Sequence[InlineSecret Response] 
- Secrets encrypted with KMS key and the associated secret environment variable.
- secret_manager Sequence[SecretManager Secret Response] 
- 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.
ServiceDirectoryConfigResponse, ServiceDirectoryConfigResponseArgs        
- Service string
- The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
- Service string
- The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
- service String
- The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
- service string
- The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
- service str
- The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
- service String
- The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
Source, SourceArgs  
- ConnectedRepository Pulumi.Google Native. Cloud Build. V1. Inputs. Connected Repository 
- Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
- GitSource Pulumi.Google Native. Cloud Build. V1. Inputs. Git Source 
- If provided, get the source from this Git repository.
- RepoSource Pulumi.Google Native. Cloud Build. V1. Inputs. Repo Source 
- If provided, get the source from this location in a Cloud Source Repository.
- StorageSource Pulumi.Google Native. Cloud Build. V1. Inputs. Storage Source 
- If provided, get the source from this location in Cloud Storage.
- StorageSource Pulumi.Manifest Google Native. Cloud Build. V1. Inputs. Storage Source Manifest 
- 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.
- StorageSource StorageManifest Source Manifest 
- 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.
- storageSource StorageManifest Source Manifest 
- 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.
- storageSource StorageManifest Source Manifest 
- 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_ Storagemanifest Source Manifest 
- 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.
- storageSource Property MapManifest 
- If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
SourceProvenanceResponse, SourceProvenanceResponseArgs      
- FileHashes 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 FileHasheswill only be populated ifBuildOptionshas requested aSourceProvenanceHash. 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), theFileHashwill be for the single path to that file.
- ResolvedConnected Pulumi.Repository Google Native. Cloud Build. V1. Inputs. Connected Repository Response 
- A copy of the build's source.connected_repository, if exists, with any revisions resolved.
- ResolvedGit Pulumi.Source Google Native. Cloud Build. V1. Inputs. Git Source Response 
- A copy of the build's source.git_source, if exists, with any revisions resolved.
- ResolvedRepo Pulumi.Source Google Native. Cloud Build. V1. Inputs. Repo Source Response 
- A copy of the build's source.repo_source, if exists, with any revisions resolved.
- ResolvedStorage Pulumi.Source Google Native. Cloud Build. V1. Inputs. Storage Source Response 
- A copy of the build's source.storage_source, if exists, with any generations resolved.
- ResolvedStorage Pulumi.Source Manifest Google Native. Cloud Build. V1. Inputs. Storage Source Manifest Response 
- A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
- FileHashes 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 FileHasheswill only be populated ifBuildOptionshas requested aSourceProvenanceHash. 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), theFileHashwill be for the single path to that file.
- ResolvedConnected ConnectedRepository Repository Response 
- A copy of the build's source.connected_repository, if exists, with any revisions resolved.
- ResolvedGit GitSource Source Response 
- A copy of the build's source.git_source, if exists, with any revisions resolved.
- ResolvedRepo RepoSource Source Response 
- A copy of the build's source.repo_source, if exists, with any revisions resolved.
- ResolvedStorage StorageSource Source Response 
- A copy of the build's source.storage_source, if exists, with any generations resolved.
- ResolvedStorage StorageSource Manifest Source Manifest Response 
- A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
- fileHashes 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 FileHasheswill only be populated ifBuildOptionshas requested aSourceProvenanceHash. 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), theFileHashwill be for the single path to that file.
- resolvedConnected ConnectedRepository Repository Response 
- A copy of the build's source.connected_repository, if exists, with any revisions resolved.
- resolvedGit GitSource Source Response 
- A copy of the build's source.git_source, if exists, with any revisions resolved.
- resolvedRepo RepoSource Source Response 
- A copy of the build's source.repo_source, if exists, with any revisions resolved.
- resolvedStorage StorageSource Source Response 
- A copy of the build's source.storage_source, if exists, with any generations resolved.
- resolvedStorage StorageSource Manifest Source Manifest Response 
- A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
- fileHashes {[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 FileHasheswill only be populated ifBuildOptionshas requested aSourceProvenanceHash. 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), theFileHashwill be for the single path to that file.
- resolvedConnected ConnectedRepository Repository Response 
- A copy of the build's source.connected_repository, if exists, with any revisions resolved.
- resolvedGit GitSource Source Response 
- A copy of the build's source.git_source, if exists, with any revisions resolved.
- resolvedRepo RepoSource Source Response 
- A copy of the build's source.repo_source, if exists, with any revisions resolved.
- resolvedStorage StorageSource Source Response 
- A copy of the build's source.storage_source, if exists, with any generations resolved.
- resolvedStorage StorageSource Manifest Source Manifest Response 
- A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
- file_hashes 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 FileHasheswill only be populated ifBuildOptionshas requested aSourceProvenanceHash. 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), theFileHashwill be for the single path to that file.
- resolved_connected_ Connectedrepository Repository Response 
- A copy of the build's source.connected_repository, if exists, with any revisions resolved.
- resolved_git_ Gitsource Source Response 
- A copy of the build's source.git_source, if exists, with any revisions resolved.
- resolved_repo_ Reposource Source Response 
- A copy of the build's source.repo_source, if exists, with any revisions resolved.
- resolved_storage_ Storagesource Source Response 
- A copy of the build's source.storage_source, if exists, with any generations resolved.
- resolved_storage_ Storagesource_ manifest Source Manifest Response 
- A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
- fileHashes 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 FileHasheswill only be populated ifBuildOptionshas requested aSourceProvenanceHash. 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), theFileHashwill be for the single path to that file.
- resolvedConnected Property MapRepository 
- A copy of the build's source.connected_repository, if exists, with any revisions resolved.
- resolvedGit Property MapSource 
- A copy of the build's source.git_source, if exists, with any revisions resolved.
- resolvedRepo Property MapSource 
- A copy of the build's source.repo_source, if exists, with any revisions resolved.
- resolvedStorage Property MapSource 
- A copy of the build's source.storage_source, if exists, with any generations resolved.
- resolvedStorage Property MapSource Manifest 
- A copy of the build's source.storage_source_manifest, if exists, with any revisions resolved. This feature is in Preview.
SourceResponse, SourceResponseArgs    
- ConnectedRepository Pulumi.Google Native. Cloud Build. V1. Inputs. Connected Repository Response 
- Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
- GitSource Pulumi.Google Native. Cloud Build. V1. Inputs. Git Source Response 
- If provided, get the source from this Git repository.
- RepoSource Pulumi.Google Native. Cloud Build. V1. Inputs. Repo Source Response 
- If provided, get the source from this location in a Cloud Source Repository.
- StorageSource Pulumi.Google Native. Cloud Build. V1. Inputs. Storage Source Response 
- If provided, get the source from this location in Cloud Storage.
- StorageSource Pulumi.Manifest Google Native. Cloud Build. V1. Inputs. Storage Source Manifest Response 
- If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
- ConnectedRepository ConnectedRepository Response 
- Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
- GitSource GitSource Response 
- If provided, get the source from this Git repository.
- RepoSource RepoSource Response 
- If provided, get the source from this location in a Cloud Source Repository.
- StorageSource StorageSource Response 
- If provided, get the source from this location in Cloud Storage.
- StorageSource StorageManifest Source Manifest Response 
- If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
- connectedRepository ConnectedRepository Response 
- Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
- gitSource GitSource Response 
- If provided, get the source from this Git repository.
- repoSource RepoSource Response 
- If provided, get the source from this location in a Cloud Source Repository.
- storageSource StorageSource Response 
- If provided, get the source from this location in Cloud Storage.
- storageSource StorageManifest Source Manifest Response 
- If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
- connectedRepository ConnectedRepository Response 
- Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
- gitSource GitSource Response 
- If provided, get the source from this Git repository.
- repoSource RepoSource Response 
- If provided, get the source from this location in a Cloud Source Repository.
- storageSource StorageSource Response 
- If provided, get the source from this location in Cloud Storage.
- storageSource StorageManifest Source Manifest Response 
- If provided, get the source from this manifest in Cloud Storage. This feature is in Preview; see description here.
- connected_repository ConnectedRepository Response 
- Optional. If provided, get the source from this 2nd-gen Google Cloud Build repository resource.
- git_source GitSource Response 
- If provided, get the source from this Git repository.
- repo_source RepoSource Response 
- If provided, get the source from this location in a Cloud Source Repository.
- storage_source StorageSource Response 
- If provided, get the source from this location in Cloud Storage.
- storage_source_ Storagemanifest Source Manifest Response 
- 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.
- storageSource Property MapManifest 
- 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.Google Native. Cloud Build. V1. Storage Source Source Fetcher 
- 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 StorageSource Source Fetcher 
- 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 StorageSource Source Fetcher 
- 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 StorageSource Source Fetcher 
- 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 StorageSource Source Fetcher 
- 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 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.
StorageSourceResponse, StorageSourceResponseArgs      
- 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 string
- 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 string
- 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 String
- 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 string
- 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 str
- 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 String
- Optional. Option to specify the tool to fetch the source file for the build.
StorageSourceSourceFetcher, StorageSourceSourceFetcherArgs        
- SourceFetcher Unspecified 
- 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.
- StorageSource Source Fetcher Source Fetcher Unspecified 
- SOURCE_FETCHER_UNSPECIFIEDUnspecified defaults to GSUTIL.
- StorageSource Source Fetcher Gsutil 
- GSUTILUse the "gsutil" tool to download the source file.
- StorageSource Source Fetcher Gcs Fetcher 
- GCS_FETCHERUse the Cloud Storage Fetcher tool to download the source file.
- SourceFetcher Unspecified 
- 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.
- SourceFetcher Unspecified 
- 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      
- end_time str
- End of time span.
- start_time str
- Start of time span.
TriggerEventType, TriggerEventTypeArgs      
- EventType Unspecified 
- EVENT_TYPE_UNSPECIFIEDEVENT_TYPE_UNSPECIFIED event_types are ignored.
- Repo
- REPOREPO corresponds to the supported VCS integrations.
- Webhook
- WEBHOOKWEBHOOK corresponds to webhook triggers.
- Pubsub
- PUBSUBPUBSUB corresponds to pubsub triggers.
- Manual
- MANUALMANUAL corresponds to manual-only invoked triggers.
- TriggerEvent Type Event Type Unspecified 
- EVENT_TYPE_UNSPECIFIEDEVENT_TYPE_UNSPECIFIED event_types are ignored.
- TriggerEvent Type Repo 
- REPOREPO corresponds to the supported VCS integrations.
- TriggerEvent Type Webhook 
- WEBHOOKWEBHOOK corresponds to webhook triggers.
- TriggerEvent Type Pubsub 
- PUBSUBPUBSUB corresponds to pubsub triggers.
- TriggerEvent Type Manual 
- MANUALMANUAL corresponds to manual-only invoked triggers.
- EventType Unspecified 
- EVENT_TYPE_UNSPECIFIEDEVENT_TYPE_UNSPECIFIED event_types are ignored.
- Repo
- REPOREPO corresponds to the supported VCS integrations.
- Webhook
- WEBHOOKWEBHOOK corresponds to webhook triggers.
- Pubsub
- PUBSUBPUBSUB corresponds to pubsub triggers.
- Manual
- MANUALMANUAL corresponds to manual-only invoked triggers.
- EventType Unspecified 
- EVENT_TYPE_UNSPECIFIEDEVENT_TYPE_UNSPECIFIED event_types are ignored.
- Repo
- REPOREPO corresponds to the supported VCS integrations.
- Webhook
- WEBHOOKWEBHOOK corresponds to webhook triggers.
- Pubsub
- PUBSUBPUBSUB corresponds to pubsub triggers.
- Manual
- MANUALMANUAL corresponds to manual-only invoked triggers.
- EVENT_TYPE_UNSPECIFIED
- EVENT_TYPE_UNSPECIFIEDEVENT_TYPE_UNSPECIFIED event_types are ignored.
- REPO
- REPOREPO corresponds to the supported VCS integrations.
- WEBHOOK
- WEBHOOKWEBHOOK corresponds to webhook triggers.
- PUBSUB
- PUBSUBPUBSUB corresponds to pubsub triggers.
- MANUAL
- MANUALMANUAL corresponds to manual-only invoked triggers.
- "EVENT_TYPE_UNSPECIFIED"
- EVENT_TYPE_UNSPECIFIEDEVENT_TYPE_UNSPECIFIED event_types are ignored.
- "REPO"
- REPOREPO corresponds to the supported VCS integrations.
- "WEBHOOK"
- WEBHOOKWEBHOOK corresponds to webhook triggers.
- "PUBSUB"
- PUBSUBPUBSUB corresponds to pubsub triggers.
- "MANUAL"
- MANUALMANUAL corresponds to manual-only invoked triggers.
TriggerIncludeBuildLogs, TriggerIncludeBuildLogsArgs        
- IncludeBuild Logs Unspecified 
- INCLUDE_BUILD_LOGS_UNSPECIFIEDBuild logs will not be shown on GitHub.
- IncludeBuild Logs With Status 
- INCLUDE_BUILD_LOGS_WITH_STATUSBuild logs will be shown on GitHub.
- TriggerInclude Build Logs Include Build Logs Unspecified 
- INCLUDE_BUILD_LOGS_UNSPECIFIEDBuild logs will not be shown on GitHub.
- TriggerInclude Build Logs Include Build Logs With Status 
- INCLUDE_BUILD_LOGS_WITH_STATUSBuild logs will be shown on GitHub.
- IncludeBuild Logs Unspecified 
- INCLUDE_BUILD_LOGS_UNSPECIFIEDBuild logs will not be shown on GitHub.
- IncludeBuild Logs With Status 
- INCLUDE_BUILD_LOGS_WITH_STATUSBuild logs will be shown on GitHub.
- IncludeBuild Logs Unspecified 
- INCLUDE_BUILD_LOGS_UNSPECIFIEDBuild logs will not be shown on GitHub.
- IncludeBuild Logs With Status 
- INCLUDE_BUILD_LOGS_WITH_STATUSBuild logs will be shown on GitHub.
- INCLUDE_BUILD_LOGS_UNSPECIFIED
- INCLUDE_BUILD_LOGS_UNSPECIFIEDBuild logs will not be shown on GitHub.
- INCLUDE_BUILD_LOGS_WITH_STATUS
- INCLUDE_BUILD_LOGS_WITH_STATUSBuild logs will be shown on GitHub.
- "INCLUDE_BUILD_LOGS_UNSPECIFIED"
- INCLUDE_BUILD_LOGS_UNSPECIFIEDBuild logs will not be shown on GitHub.
- "INCLUDE_BUILD_LOGS_WITH_STATUS"
- INCLUDE_BUILD_LOGS_WITH_STATUSBuild logs will be shown on GitHub.
UploadedMavenArtifactResponse, UploadedMavenArtifactResponseArgs        
- FileHashes Pulumi.Google Native. Cloud Build. V1. Inputs. File Hashes Response 
- Hash types and values of the Maven Artifact.
- PushTiming Pulumi.Google Native. Cloud Build. V1. Inputs. Time Span Response 
- Stores timing information for pushing the specified artifact.
- Uri string
- URI of the uploaded artifact.
- FileHashes FileHashes Response 
- Hash types and values of the Maven Artifact.
- PushTiming TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- Uri string
- URI of the uploaded artifact.
- fileHashes FileHashes Response 
- Hash types and values of the Maven Artifact.
- pushTiming TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- uri String
- URI of the uploaded artifact.
- fileHashes FileHashes Response 
- Hash types and values of the Maven Artifact.
- pushTiming TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- uri string
- URI of the uploaded artifact.
- file_hashes FileHashes Response 
- Hash types and values of the Maven Artifact.
- push_timing TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- uri str
- URI of the uploaded artifact.
- fileHashes Property Map
- Hash types and values of the Maven Artifact.
- pushTiming Property Map
- Stores timing information for pushing the specified artifact.
- uri String
- URI of the uploaded artifact.
UploadedNpmPackageResponse, UploadedNpmPackageResponseArgs        
- FileHashes Pulumi.Google Native. Cloud Build. V1. Inputs. File Hashes Response 
- Hash types and values of the npm package.
- PushTiming Pulumi.Google Native. Cloud Build. V1. Inputs. Time Span Response 
- Stores timing information for pushing the specified artifact.
- Uri string
- URI of the uploaded npm package.
- FileHashes FileHashes Response 
- Hash types and values of the npm package.
- PushTiming TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- Uri string
- URI of the uploaded npm package.
- fileHashes FileHashes Response 
- Hash types and values of the npm package.
- pushTiming TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- uri String
- URI of the uploaded npm package.
- fileHashes FileHashes Response 
- Hash types and values of the npm package.
- pushTiming TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- uri string
- URI of the uploaded npm package.
- file_hashes FileHashes Response 
- Hash types and values of the npm package.
- push_timing TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- uri str
- URI of the uploaded npm package.
- fileHashes Property Map
- Hash types and values of the npm package.
- pushTiming Property Map
- Stores timing information for pushing the specified artifact.
- uri String
- URI of the uploaded npm package.
UploadedPythonPackageResponse, UploadedPythonPackageResponseArgs        
- FileHashes Pulumi.Google Native. Cloud Build. V1. Inputs. File Hashes Response 
- Hash types and values of the Python Artifact.
- PushTiming Pulumi.Google Native. Cloud Build. V1. Inputs. Time Span Response 
- Stores timing information for pushing the specified artifact.
- Uri string
- URI of the uploaded artifact.
- FileHashes FileHashes Response 
- Hash types and values of the Python Artifact.
- PushTiming TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- Uri string
- URI of the uploaded artifact.
- fileHashes FileHashes Response 
- Hash types and values of the Python Artifact.
- pushTiming TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- uri String
- URI of the uploaded artifact.
- fileHashes FileHashes Response 
- Hash types and values of the Python Artifact.
- pushTiming TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- uri string
- URI of the uploaded artifact.
- file_hashes FileHashes Response 
- Hash types and values of the Python Artifact.
- push_timing TimeSpan Response 
- Stores timing information for pushing the specified artifact.
- uri str
- URI of the uploaded artifact.
- fileHashes Property Map
- Hash types and values of the Python Artifact.
- pushTiming Property Map
- Stores timing information for pushing the specified artifact.
- uri 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 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.
WarningResponse, WarningResponseArgs    
WebhookConfig, WebhookConfigArgs    
- Secret string
- Resource name for the secret required as a URL parameter.
- State
Pulumi.Google Native. Cloud Build. V1. Webhook Config State 
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- Secret string
- Resource name for the secret required as a URL parameter.
- State
WebhookConfig State 
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- secret String
- Resource name for the secret required as a URL parameter.
- state
WebhookConfig State 
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- secret string
- Resource name for the secret required as a URL parameter.
- state
WebhookConfig State 
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- secret str
- Resource name for the secret required as a URL parameter.
- state
WebhookConfig State 
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
- secret String
- Resource name for the secret required as a URL parameter.
- state "STATE_UNSPECIFIED" | "OK" | "SECRET_DELETED"
- Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
WebhookConfigResponse, WebhookConfigResponseArgs      
WebhookConfigState, WebhookConfigStateArgs      
- StateUnspecified 
- STATE_UNSPECIFIEDThe webhook auth configuration not been checked.
- Ok
- OKThe auth configuration is properly setup.
- SecretDeleted 
- SECRET_DELETEDThe secret provided in auth_method has been deleted.
- WebhookConfig State State Unspecified 
- STATE_UNSPECIFIEDThe webhook auth configuration not been checked.
- WebhookConfig State Ok 
- OKThe auth configuration is properly setup.
- WebhookConfig State Secret Deleted 
- SECRET_DELETEDThe secret provided in auth_method has been deleted.
- StateUnspecified 
- STATE_UNSPECIFIEDThe webhook auth configuration not been checked.
- Ok
- OKThe auth configuration is properly setup.
- SecretDeleted 
- SECRET_DELETEDThe secret provided in auth_method has been deleted.
- StateUnspecified 
- STATE_UNSPECIFIEDThe webhook auth configuration not been checked.
- Ok
- OKThe auth configuration is properly setup.
- SecretDeleted 
- SECRET_DELETEDThe secret provided in auth_method has been deleted.
- STATE_UNSPECIFIED
- STATE_UNSPECIFIEDThe webhook auth configuration not been checked.
- OK
- OKThe auth configuration is properly setup.
- SECRET_DELETED
- SECRET_DELETEDThe secret provided in auth_method has been deleted.
- "STATE_UNSPECIFIED"
- STATE_UNSPECIFIEDThe webhook auth configuration not been checked.
- "OK"
- OKThe auth configuration is properly setup.
- "SECRET_DELETED"
- SECRET_DELETEDThe secret provided in auth_method has been deleted.
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.