1. Packages
  2. Google Cloud Native
  3. API Docs
  4. dataform
  5. dataform/v1beta1
  6. Repository

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

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

google-native.dataform/v1beta1.Repository

Explore with Pulumi AI

google-native logo

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

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

    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.

    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=google_native.dataform.v1beta1.GitRemoteSettingsArgs(
            default_branch="string",
            url="string",
            authentication_token_secret_version="string",
            ssh_authentication_config=google_native.dataform.v1beta1.SshAuthenticationConfigArgs(
                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=google_native.dataform.v1beta1.WorkspaceCompilationOverridesArgs(
            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

    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.
    GitRemoteSettings Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.GitRemoteSettings
    Optional. If set, configures this repository to be linked to a Git remote.
    Labels Dictionary<string, string>
    Optional. Repository user labels.
    Location string
    NpmrcEnvironmentVariablesSecretVersion string
    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.
    SetAuthenticatedUserAdmin bool
    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
    WorkspaceCompilationOverrides Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.WorkspaceCompilationOverrides
    Optional. If set, fields of workspace_compilation_overrides override the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation for WorkspaceCompilationOverrides for 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.
    GitRemoteSettings GitRemoteSettingsArgs
    Optional. If set, configures this repository to be linked to a Git remote.
    Labels map[string]string
    Optional. Repository user labels.
    Location string
    NpmrcEnvironmentVariablesSecretVersion string
    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.
    SetAuthenticatedUserAdmin bool
    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
    WorkspaceCompilationOverrides WorkspaceCompilationOverridesArgs
    Optional. If set, fields of workspace_compilation_overrides override the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation for WorkspaceCompilationOverrides for 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.
    gitRemoteSettings GitRemoteSettings
    Optional. If set, configures this repository to be linked to a Git remote.
    labels Map<String,String>
    Optional. Repository user labels.
    location String
    npmrcEnvironmentVariablesSecretVersion String
    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.
    setAuthenticatedUserAdmin Boolean
    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
    workspaceCompilationOverrides WorkspaceCompilationOverrides
    Optional. If set, fields of workspace_compilation_overrides override the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation for WorkspaceCompilationOverrides for 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.
    gitRemoteSettings GitRemoteSettings
    Optional. If set, configures this repository to be linked to a Git remote.
    labels {[key: string]: string}
    Optional. Repository user labels.
    location string
    npmrcEnvironmentVariablesSecretVersion string
    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.
    setAuthenticatedUserAdmin boolean
    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
    workspaceCompilationOverrides WorkspaceCompilationOverrides
    Optional. If set, fields of workspace_compilation_overrides override the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation for WorkspaceCompilationOverrides for 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_settings GitRemoteSettingsArgs
    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_variables_secret_version str
    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_user_admin bool
    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_overrides WorkspaceCompilationOverridesArgs
    Optional. If set, fields of workspace_compilation_overrides override the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation for WorkspaceCompilationOverrides for 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.
    gitRemoteSettings Property Map
    Optional. If set, configures this repository to be linked to a Git remote.
    labels Map<String>
    Optional. Repository user labels.
    location String
    npmrcEnvironmentVariablesSecretVersion String
    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.
    setAuthenticatedUserAdmin Boolean
    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
    workspaceCompilationOverrides Property Map
    Optional. If set, fields of workspace_compilation_overrides override the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation for WorkspaceCompilationOverrides for more information.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The repository's name.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The repository's name.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The repository's name.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The repository's name.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The repository's name.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The repository's name.

    Supporting Types

    GitRemoteSettings, GitRemoteSettingsArgs

    DefaultBranch string
    The Git remote's default branch name.
    Url string
    The Git remote's URL.
    AuthenticationTokenSecretVersion string
    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/*.
    SshAuthenticationConfig Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.SshAuthenticationConfig
    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.
    AuthenticationTokenSecretVersion string
    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/*.
    SshAuthenticationConfig SshAuthenticationConfig
    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.
    authenticationTokenSecretVersion String
    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/*.
    sshAuthenticationConfig SshAuthenticationConfig
    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.
    authenticationTokenSecretVersion string
    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/*.
    sshAuthenticationConfig SshAuthenticationConfig
    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_secret_version str
    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_config SshAuthenticationConfig
    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.
    authenticationTokenSecretVersion String
    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/*.
    sshAuthenticationConfig Property Map
    Optional. Authentication fields for remote uris using SSH protocol.

    GitRemoteSettingsResponse, GitRemoteSettingsResponseArgs

    AuthenticationTokenSecretVersion string
    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.
    SshAuthenticationConfig Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.SshAuthenticationConfigResponse
    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

    Deprecated: Output only. 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.
    AuthenticationTokenSecretVersion string
    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.
    SshAuthenticationConfig SshAuthenticationConfigResponse
    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

    Deprecated: Output only. 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.
    authenticationTokenSecretVersion String
    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.
    sshAuthenticationConfig SshAuthenticationConfigResponse
    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

    Deprecated: Output only. 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.
    authenticationTokenSecretVersion string
    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.
    sshAuthenticationConfig SshAuthenticationConfigResponse
    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

    Deprecated: Output only. 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_secret_version str
    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_config SshAuthenticationConfigResponse
    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

    Deprecated: Output only. 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.
    authenticationTokenSecretVersion String
    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.
    sshAuthenticationConfig Property Map
    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

    Deprecated: Output only. 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

    HostPublicKey string
    Content of a public SSH key to verify an identity of a remote Git host.
    UserPrivateKeySecretVersion string
    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/*.
    HostPublicKey string
    Content of a public SSH key to verify an identity of a remote Git host.
    UserPrivateKeySecretVersion string
    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/*.
    hostPublicKey String
    Content of a public SSH key to verify an identity of a remote Git host.
    userPrivateKeySecretVersion String
    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/*.
    hostPublicKey string
    Content of a public SSH key to verify an identity of a remote Git host.
    userPrivateKeySecretVersion string
    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_key str
    Content of a public SSH key to verify an identity of a remote Git host.
    user_private_key_secret_version str
    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/*.
    hostPublicKey String
    Content of a public SSH key to verify an identity of a remote Git host.
    userPrivateKeySecretVersion String
    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

    HostPublicKey string
    Content of a public SSH key to verify an identity of a remote Git host.
    UserPrivateKeySecretVersion string
    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/*.
    HostPublicKey string
    Content of a public SSH key to verify an identity of a remote Git host.
    UserPrivateKeySecretVersion string
    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/*.
    hostPublicKey String
    Content of a public SSH key to verify an identity of a remote Git host.
    userPrivateKeySecretVersion String
    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/*.
    hostPublicKey string
    Content of a public SSH key to verify an identity of a remote Git host.
    userPrivateKeySecretVersion string
    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_key str
    Content of a public SSH key to verify an identity of a remote Git host.
    user_private_key_secret_version str
    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/*.
    hostPublicKey String
    Content of a public SSH key to verify an identity of a remote Git host.
    userPrivateKeySecretVersion String
    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-native logo

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

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