Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.dataform/v1beta1.Repository
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new Repository in a given project and location. Auto-naming is currently not supported for this resource.
Create Repository Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Repository(name: string, args: RepositoryArgs, opts?: CustomResourceOptions);@overload
def Repository(resource_name: str,
               args: RepositoryArgs,
               opts: Optional[ResourceOptions] = None)
@overload
def Repository(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               repository_id: Optional[str] = None,
               display_name: Optional[str] = None,
               git_remote_settings: Optional[GitRemoteSettingsArgs] = None,
               labels: Optional[Mapping[str, str]] = None,
               location: Optional[str] = None,
               npmrc_environment_variables_secret_version: Optional[str] = None,
               project: Optional[str] = None,
               service_account: Optional[str] = None,
               set_authenticated_user_admin: Optional[bool] = None,
               workspace_compilation_overrides: Optional[WorkspaceCompilationOverridesArgs] = None)func NewRepository(ctx *Context, name string, args RepositoryArgs, opts ...ResourceOption) (*Repository, error)public Repository(string name, RepositoryArgs args, CustomResourceOptions? opts = null)
public Repository(String name, RepositoryArgs args)
public Repository(String name, RepositoryArgs args, CustomResourceOptions options)
type: google-native:dataform/v1beta1:Repository
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 RepositoryArgs
- 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 RepositoryArgs
- 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 RepositoryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RepositoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RepositoryArgs
- 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 examplerepositoryResourceResourceFromDataformv1beta1 = new GoogleNative.Dataform.V1Beta1.Repository("examplerepositoryResourceResourceFromDataformv1beta1", new()
{
    RepositoryId = "string",
    DisplayName = "string",
    GitRemoteSettings = new GoogleNative.Dataform.V1Beta1.Inputs.GitRemoteSettingsArgs
    {
        DefaultBranch = "string",
        Url = "string",
        AuthenticationTokenSecretVersion = "string",
        SshAuthenticationConfig = new GoogleNative.Dataform.V1Beta1.Inputs.SshAuthenticationConfigArgs
        {
            HostPublicKey = "string",
            UserPrivateKeySecretVersion = "string",
        },
    },
    Labels = 
    {
        { "string", "string" },
    },
    Location = "string",
    NpmrcEnvironmentVariablesSecretVersion = "string",
    Project = "string",
    ServiceAccount = "string",
    SetAuthenticatedUserAdmin = false,
    WorkspaceCompilationOverrides = new GoogleNative.Dataform.V1Beta1.Inputs.WorkspaceCompilationOverridesArgs
    {
        DefaultDatabase = "string",
        SchemaSuffix = "string",
        TablePrefix = "string",
    },
});
example, err := dataform.NewRepository(ctx, "examplerepositoryResourceResourceFromDataformv1beta1", &dataform.RepositoryArgs{
	RepositoryId: pulumi.String("string"),
	DisplayName:  pulumi.String("string"),
	GitRemoteSettings: &dataform.GitRemoteSettingsArgs{
		DefaultBranch:                    pulumi.String("string"),
		Url:                              pulumi.String("string"),
		AuthenticationTokenSecretVersion: pulumi.String("string"),
		SshAuthenticationConfig: &dataform.SshAuthenticationConfigArgs{
			HostPublicKey:               pulumi.String("string"),
			UserPrivateKeySecretVersion: pulumi.String("string"),
		},
	},
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Location:                               pulumi.String("string"),
	NpmrcEnvironmentVariablesSecretVersion: pulumi.String("string"),
	Project:                                pulumi.String("string"),
	ServiceAccount:                         pulumi.String("string"),
	SetAuthenticatedUserAdmin:              pulumi.Bool(false),
	WorkspaceCompilationOverrides: &dataform.WorkspaceCompilationOverridesArgs{
		DefaultDatabase: pulumi.String("string"),
		SchemaSuffix:    pulumi.String("string"),
		TablePrefix:     pulumi.String("string"),
	},
})
var examplerepositoryResourceResourceFromDataformv1beta1 = new Repository("examplerepositoryResourceResourceFromDataformv1beta1", RepositoryArgs.builder()
    .repositoryId("string")
    .displayName("string")
    .gitRemoteSettings(GitRemoteSettingsArgs.builder()
        .defaultBranch("string")
        .url("string")
        .authenticationTokenSecretVersion("string")
        .sshAuthenticationConfig(SshAuthenticationConfigArgs.builder()
            .hostPublicKey("string")
            .userPrivateKeySecretVersion("string")
            .build())
        .build())
    .labels(Map.of("string", "string"))
    .location("string")
    .npmrcEnvironmentVariablesSecretVersion("string")
    .project("string")
    .serviceAccount("string")
    .setAuthenticatedUserAdmin(false)
    .workspaceCompilationOverrides(WorkspaceCompilationOverridesArgs.builder()
        .defaultDatabase("string")
        .schemaSuffix("string")
        .tablePrefix("string")
        .build())
    .build());
examplerepository_resource_resource_from_dataformv1beta1 = google_native.dataform.v1beta1.Repository("examplerepositoryResourceResourceFromDataformv1beta1",
    repository_id="string",
    display_name="string",
    git_remote_settings={
        "default_branch": "string",
        "url": "string",
        "authentication_token_secret_version": "string",
        "ssh_authentication_config": {
            "host_public_key": "string",
            "user_private_key_secret_version": "string",
        },
    },
    labels={
        "string": "string",
    },
    location="string",
    npmrc_environment_variables_secret_version="string",
    project="string",
    service_account="string",
    set_authenticated_user_admin=False,
    workspace_compilation_overrides={
        "default_database": "string",
        "schema_suffix": "string",
        "table_prefix": "string",
    })
const examplerepositoryResourceResourceFromDataformv1beta1 = new google_native.dataform.v1beta1.Repository("examplerepositoryResourceResourceFromDataformv1beta1", {
    repositoryId: "string",
    displayName: "string",
    gitRemoteSettings: {
        defaultBranch: "string",
        url: "string",
        authenticationTokenSecretVersion: "string",
        sshAuthenticationConfig: {
            hostPublicKey: "string",
            userPrivateKeySecretVersion: "string",
        },
    },
    labels: {
        string: "string",
    },
    location: "string",
    npmrcEnvironmentVariablesSecretVersion: "string",
    project: "string",
    serviceAccount: "string",
    setAuthenticatedUserAdmin: false,
    workspaceCompilationOverrides: {
        defaultDatabase: "string",
        schemaSuffix: "string",
        tablePrefix: "string",
    },
});
type: google-native:dataform/v1beta1:Repository
properties:
    displayName: string
    gitRemoteSettings:
        authenticationTokenSecretVersion: string
        defaultBranch: string
        sshAuthenticationConfig:
            hostPublicKey: string
            userPrivateKeySecretVersion: string
        url: string
    labels:
        string: string
    location: string
    npmrcEnvironmentVariablesSecretVersion: string
    project: string
    repositoryId: string
    serviceAccount: string
    setAuthenticatedUserAdmin: false
    workspaceCompilationOverrides:
        defaultDatabase: string
        schemaSuffix: string
        tablePrefix: string
Repository 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 Repository resource accepts the following input properties:
- RepositoryId string
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- DisplayName string
- Optional. The repository's user-friendly name.
- GitRemote Pulumi.Settings Google Native. Dataform. V1Beta1. Inputs. Git Remote Settings 
- Optional. If set, configures this repository to be linked to a Git remote.
- Labels Dictionary<string, string>
- Optional. Repository user labels.
- Location string
- NpmrcEnvironment stringVariables Secret Version 
- Optional. The name of the Secret Manager secret version to be used to interpolate variables into the .npmrc file for package installation operations. Must be in the format projects/*/secrets/*/versions/*. The file itself must be in a JSON format.
- Project string
- ServiceAccount string
- Optional. The service account to run workflow invocations under.
- SetAuthenticated boolUser Admin 
- Optional. Input only. If set to true, the authenticated user will be granted the roles/dataform.admin role on the created repository. To modify access to the created repository later apply setIamPolicy from https://cloud.google.com/dataform/reference/rest#rest-resource:-v1beta1.projects.locations.repositories
- WorkspaceCompilation Pulumi.Overrides Google Native. Dataform. V1Beta1. Inputs. Workspace Compilation Overrides 
- Optional. If set, fields of workspace_compilation_overridesoverride the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation forWorkspaceCompilationOverridesfor more information.
- RepositoryId string
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- DisplayName string
- Optional. The repository's user-friendly name.
- GitRemote GitSettings Remote Settings Args 
- Optional. If set, configures this repository to be linked to a Git remote.
- Labels map[string]string
- Optional. Repository user labels.
- Location string
- NpmrcEnvironment stringVariables Secret Version 
- Optional. The name of the Secret Manager secret version to be used to interpolate variables into the .npmrc file for package installation operations. Must be in the format projects/*/secrets/*/versions/*. The file itself must be in a JSON format.
- Project string
- ServiceAccount string
- Optional. The service account to run workflow invocations under.
- SetAuthenticated boolUser Admin 
- Optional. Input only. If set to true, the authenticated user will be granted the roles/dataform.admin role on the created repository. To modify access to the created repository later apply setIamPolicy from https://cloud.google.com/dataform/reference/rest#rest-resource:-v1beta1.projects.locations.repositories
- WorkspaceCompilation WorkspaceOverrides Compilation Overrides Args 
- Optional. If set, fields of workspace_compilation_overridesoverride the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation forWorkspaceCompilationOverridesfor more information.
- repositoryId String
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- displayName String
- Optional. The repository's user-friendly name.
- gitRemote GitSettings Remote Settings 
- Optional. If set, configures this repository to be linked to a Git remote.
- labels Map<String,String>
- Optional. Repository user labels.
- location String
- npmrcEnvironment StringVariables Secret Version 
- Optional. The name of the Secret Manager secret version to be used to interpolate variables into the .npmrc file for package installation operations. Must be in the format projects/*/secrets/*/versions/*. The file itself must be in a JSON format.
- project String
- serviceAccount String
- Optional. The service account to run workflow invocations under.
- setAuthenticated BooleanUser Admin 
- Optional. Input only. If set to true, the authenticated user will be granted the roles/dataform.admin role on the created repository. To modify access to the created repository later apply setIamPolicy from https://cloud.google.com/dataform/reference/rest#rest-resource:-v1beta1.projects.locations.repositories
- workspaceCompilation WorkspaceOverrides Compilation Overrides 
- Optional. If set, fields of workspace_compilation_overridesoverride the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation forWorkspaceCompilationOverridesfor more information.
- repositoryId string
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- displayName string
- Optional. The repository's user-friendly name.
- gitRemote GitSettings Remote Settings 
- Optional. If set, configures this repository to be linked to a Git remote.
- labels {[key: string]: string}
- Optional. Repository user labels.
- location string
- npmrcEnvironment stringVariables Secret Version 
- Optional. The name of the Secret Manager secret version to be used to interpolate variables into the .npmrc file for package installation operations. Must be in the format projects/*/secrets/*/versions/*. The file itself must be in a JSON format.
- project string
- serviceAccount string
- Optional. The service account to run workflow invocations under.
- setAuthenticated booleanUser Admin 
- Optional. Input only. If set to true, the authenticated user will be granted the roles/dataform.admin role on the created repository. To modify access to the created repository later apply setIamPolicy from https://cloud.google.com/dataform/reference/rest#rest-resource:-v1beta1.projects.locations.repositories
- workspaceCompilation WorkspaceOverrides Compilation Overrides 
- Optional. If set, fields of workspace_compilation_overridesoverride the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation forWorkspaceCompilationOverridesfor more information.
- repository_id str
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- display_name str
- Optional. The repository's user-friendly name.
- git_remote_ Gitsettings Remote Settings Args 
- Optional. If set, configures this repository to be linked to a Git remote.
- labels Mapping[str, str]
- Optional. Repository user labels.
- location str
- npmrc_environment_ strvariables_ secret_ version 
- Optional. The name of the Secret Manager secret version to be used to interpolate variables into the .npmrc file for package installation operations. Must be in the format projects/*/secrets/*/versions/*. The file itself must be in a JSON format.
- project str
- service_account str
- Optional. The service account to run workflow invocations under.
- set_authenticated_ booluser_ admin 
- Optional. Input only. If set to true, the authenticated user will be granted the roles/dataform.admin role on the created repository. To modify access to the created repository later apply setIamPolicy from https://cloud.google.com/dataform/reference/rest#rest-resource:-v1beta1.projects.locations.repositories
- workspace_compilation_ Workspaceoverrides Compilation Overrides Args 
- Optional. If set, fields of workspace_compilation_overridesoverride the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation forWorkspaceCompilationOverridesfor more information.
- repositoryId String
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- displayName String
- Optional. The repository's user-friendly name.
- gitRemote Property MapSettings 
- Optional. If set, configures this repository to be linked to a Git remote.
- labels Map<String>
- Optional. Repository user labels.
- location String
- npmrcEnvironment StringVariables Secret Version 
- Optional. The name of the Secret Manager secret version to be used to interpolate variables into the .npmrc file for package installation operations. Must be in the format projects/*/secrets/*/versions/*. The file itself must be in a JSON format.
- project String
- serviceAccount String
- Optional. The service account to run workflow invocations under.
- setAuthenticated BooleanUser Admin 
- Optional. Input only. If set to true, the authenticated user will be granted the roles/dataform.admin role on the created repository. To modify access to the created repository later apply setIamPolicy from https://cloud.google.com/dataform/reference/rest#rest-resource:-v1beta1.projects.locations.repositories
- workspaceCompilation Property MapOverrides 
- Optional. If set, fields of workspace_compilation_overridesoverride the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation forWorkspaceCompilationOverridesfor more information.
Outputs
All input properties are implicitly available as output properties. Additionally, the Repository resource produces the following output properties:
Supporting Types
GitRemoteSettings, GitRemoteSettingsArgs      
- DefaultBranch string
- The Git remote's default branch name.
- Url string
- The Git remote's URL.
- AuthenticationToken stringSecret Version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- SshAuthentication Pulumi.Config Google Native. Dataform. V1Beta1. Inputs. Ssh Authentication Config 
- Optional. Authentication fields for remote uris using SSH protocol.
- DefaultBranch string
- The Git remote's default branch name.
- Url string
- The Git remote's URL.
- AuthenticationToken stringSecret Version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- SshAuthentication SshConfig Authentication Config 
- Optional. Authentication fields for remote uris using SSH protocol.
- defaultBranch String
- The Git remote's default branch name.
- url String
- The Git remote's URL.
- authenticationToken StringSecret Version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- sshAuthentication SshConfig Authentication Config 
- Optional. Authentication fields for remote uris using SSH protocol.
- defaultBranch string
- The Git remote's default branch name.
- url string
- The Git remote's URL.
- authenticationToken stringSecret Version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- sshAuthentication SshConfig Authentication Config 
- Optional. Authentication fields for remote uris using SSH protocol.
- default_branch str
- The Git remote's default branch name.
- url str
- The Git remote's URL.
- authentication_token_ strsecret_ version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- ssh_authentication_ Sshconfig Authentication Config 
- Optional. Authentication fields for remote uris using SSH protocol.
- defaultBranch String
- The Git remote's default branch name.
- url String
- The Git remote's URL.
- authenticationToken StringSecret Version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- sshAuthentication Property MapConfig 
- Optional. Authentication fields for remote uris using SSH protocol.
GitRemoteSettingsResponse, GitRemoteSettingsResponseArgs        
- AuthenticationToken stringSecret Version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- DefaultBranch string
- The Git remote's default branch name.
- SshAuthentication Pulumi.Config Google Native. Dataform. V1Beta1. Inputs. Ssh Authentication Config Response 
- Optional. Authentication fields for remote uris using SSH protocol.
- TokenStatus string
- Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- Url string
- The Git remote's URL.
- AuthenticationToken stringSecret Version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- DefaultBranch string
- The Git remote's default branch name.
- SshAuthentication SshConfig Authentication Config Response 
- Optional. Authentication fields for remote uris using SSH protocol.
- TokenStatus string
- Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- Url string
- The Git remote's URL.
- authenticationToken StringSecret Version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- defaultBranch String
- The Git remote's default branch name.
- sshAuthentication SshConfig Authentication Config Response 
- Optional. Authentication fields for remote uris using SSH protocol.
- tokenStatus String
- Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- url String
- The Git remote's URL.
- authenticationToken stringSecret Version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- defaultBranch string
- The Git remote's default branch name.
- sshAuthentication SshConfig Authentication Config Response 
- Optional. Authentication fields for remote uris using SSH protocol.
- tokenStatus string
- Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- url string
- The Git remote's URL.
- authentication_token_ strsecret_ version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- default_branch str
- The Git remote's default branch name.
- ssh_authentication_ Sshconfig Authentication Config Response 
- Optional. Authentication fields for remote uris using SSH protocol.
- token_status str
- Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- url str
- The Git remote's URL.
- authenticationToken StringSecret Version 
- Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- defaultBranch String
- The Git remote's default branch name.
- sshAuthentication Property MapConfig 
- Optional. Authentication fields for remote uris using SSH protocol.
- tokenStatus String
- Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- url String
- The Git remote's URL.
SshAuthenticationConfig, SshAuthenticationConfigArgs      
- HostPublic stringKey 
- Content of a public SSH key to verify an identity of a remote Git host.
- UserPrivate stringKey Secret Version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- HostPublic stringKey 
- Content of a public SSH key to verify an identity of a remote Git host.
- UserPrivate stringKey Secret Version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- hostPublic StringKey 
- Content of a public SSH key to verify an identity of a remote Git host.
- userPrivate StringKey Secret Version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- hostPublic stringKey 
- Content of a public SSH key to verify an identity of a remote Git host.
- userPrivate stringKey Secret Version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- host_public_ strkey 
- Content of a public SSH key to verify an identity of a remote Git host.
- user_private_ strkey_ secret_ version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- hostPublic StringKey 
- Content of a public SSH key to verify an identity of a remote Git host.
- userPrivate StringKey Secret Version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
SshAuthenticationConfigResponse, SshAuthenticationConfigResponseArgs        
- HostPublic stringKey 
- Content of a public SSH key to verify an identity of a remote Git host.
- UserPrivate stringKey Secret Version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- HostPublic stringKey 
- Content of a public SSH key to verify an identity of a remote Git host.
- UserPrivate stringKey Secret Version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- hostPublic StringKey 
- Content of a public SSH key to verify an identity of a remote Git host.
- userPrivate StringKey Secret Version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- hostPublic stringKey 
- Content of a public SSH key to verify an identity of a remote Git host.
- userPrivate stringKey Secret Version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- host_public_ strkey 
- Content of a public SSH key to verify an identity of a remote Git host.
- user_private_ strkey_ secret_ version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
- hostPublic StringKey 
- Content of a public SSH key to verify an identity of a remote Git host.
- userPrivate StringKey Secret Version 
- The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format projects/*/secrets/*/versions/*.
WorkspaceCompilationOverrides, WorkspaceCompilationOverridesArgs      
- DefaultDatabase string
- Optional. The default database (Google Cloud project ID).
- SchemaSuffix string
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- TablePrefix string
- Optional. The prefix that should be prepended to all table names.
- DefaultDatabase string
- Optional. The default database (Google Cloud project ID).
- SchemaSuffix string
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- TablePrefix string
- Optional. The prefix that should be prepended to all table names.
- defaultDatabase String
- Optional. The default database (Google Cloud project ID).
- schemaSuffix String
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- tablePrefix String
- Optional. The prefix that should be prepended to all table names.
- defaultDatabase string
- Optional. The default database (Google Cloud project ID).
- schemaSuffix string
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- tablePrefix string
- Optional. The prefix that should be prepended to all table names.
- default_database str
- Optional. The default database (Google Cloud project ID).
- schema_suffix str
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- table_prefix str
- Optional. The prefix that should be prepended to all table names.
- defaultDatabase String
- Optional. The default database (Google Cloud project ID).
- schemaSuffix String
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- tablePrefix String
- Optional. The prefix that should be prepended to all table names.
WorkspaceCompilationOverridesResponse, WorkspaceCompilationOverridesResponseArgs        
- DefaultDatabase string
- Optional. The default database (Google Cloud project ID).
- SchemaSuffix string
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- TablePrefix string
- Optional. The prefix that should be prepended to all table names.
- DefaultDatabase string
- Optional. The default database (Google Cloud project ID).
- SchemaSuffix string
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- TablePrefix string
- Optional. The prefix that should be prepended to all table names.
- defaultDatabase String
- Optional. The default database (Google Cloud project ID).
- schemaSuffix String
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- tablePrefix String
- Optional. The prefix that should be prepended to all table names.
- defaultDatabase string
- Optional. The default database (Google Cloud project ID).
- schemaSuffix string
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- tablePrefix string
- Optional. The prefix that should be prepended to all table names.
- default_database str
- Optional. The default database (Google Cloud project ID).
- schema_suffix str
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- table_prefix str
- Optional. The prefix that should be prepended to all table names.
- defaultDatabase String
- Optional. The default database (Google Cloud project ID).
- schemaSuffix String
- Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- tablePrefix String
- Optional. The prefix that should be prepended to all table names.
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.