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 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 This property is required. string
The unique name of the resource.
args This property is required. RepositoryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. RepositoryArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. RepositoryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
    },
});
Copy
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"),
	},
})
Copy
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());
Copy
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",
    })
Copy
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",
    },
});
Copy
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
Copy

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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 This property is required. string
The Git remote's default branch name.
Url This property is required. 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 This property is required. string
The Git remote's default branch name.
Url This property is required. 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 This property is required. String
The Git remote's default branch name.
url This property is required. 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 This property is required. string
The Git remote's default branch name.
url This property is required. 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 This property is required. str
The Git remote's default branch name.
url This property is required. 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 This property is required. String
The Git remote's default branch name.
url This property is required. 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 This property is required. 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 This property is required. string
The Git remote's default branch name.
SshAuthenticationConfig This property is required. Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.SshAuthenticationConfigResponse
Optional. Authentication fields for remote uris using SSH protocol.
TokenStatus This property is required. 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 This property is required. string
The Git remote's URL.
AuthenticationTokenSecretVersion This property is required. 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 This property is required. string
The Git remote's default branch name.
SshAuthenticationConfig This property is required. SshAuthenticationConfigResponse
Optional. Authentication fields for remote uris using SSH protocol.
TokenStatus This property is required. 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 This property is required. string
The Git remote's URL.
authenticationTokenSecretVersion This property is required. 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 This property is required. String
The Git remote's default branch name.
sshAuthenticationConfig This property is required. SshAuthenticationConfigResponse
Optional. Authentication fields for remote uris using SSH protocol.
tokenStatus This property is required. 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 This property is required. String
The Git remote's URL.
authenticationTokenSecretVersion This property is required. 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 This property is required. string
The Git remote's default branch name.
sshAuthenticationConfig This property is required. SshAuthenticationConfigResponse
Optional. Authentication fields for remote uris using SSH protocol.
tokenStatus This property is required. 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 This property is required. string
The Git remote's URL.
authentication_token_secret_version This property is required. 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 This property is required. str
The Git remote's default branch name.
ssh_authentication_config This property is required. SshAuthenticationConfigResponse
Optional. Authentication fields for remote uris using SSH protocol.
token_status This property is required. 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 This property is required. str
The Git remote's URL.
authenticationTokenSecretVersion This property is required. 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 This property is required. String
The Git remote's default branch name.
sshAuthenticationConfig This property is required. Property Map
Optional. Authentication fields for remote uris using SSH protocol.
tokenStatus This property is required. 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 This property is required. String
The Git remote's URL.

SshAuthenticationConfig
, SshAuthenticationConfigArgs

HostPublicKey This property is required. string
Content of a public SSH key to verify an identity of a remote Git host.
UserPrivateKeySecretVersion This property is required. 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 This property is required. string
Content of a public SSH key to verify an identity of a remote Git host.
UserPrivateKeySecretVersion This property is required. 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 This property is required. String
Content of a public SSH key to verify an identity of a remote Git host.
userPrivateKeySecretVersion This property is required. 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 This property is required. string
Content of a public SSH key to verify an identity of a remote Git host.
userPrivateKeySecretVersion This property is required. 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 This property is required. str
Content of a public SSH key to verify an identity of a remote Git host.
user_private_key_secret_version This property is required. 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 This property is required. String
Content of a public SSH key to verify an identity of a remote Git host.
userPrivateKeySecretVersion This property is required. 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 This property is required. string
Content of a public SSH key to verify an identity of a remote Git host.
UserPrivateKeySecretVersion This property is required. 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 This property is required. string
Content of a public SSH key to verify an identity of a remote Git host.
UserPrivateKeySecretVersion This property is required. 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 This property is required. String
Content of a public SSH key to verify an identity of a remote Git host.
userPrivateKeySecretVersion This property is required. 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 This property is required. string
Content of a public SSH key to verify an identity of a remote Git host.
userPrivateKeySecretVersion This property is required. 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 This property is required. str
Content of a public SSH key to verify an identity of a remote Git host.
user_private_key_secret_version This property is required. 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 This property is required. String
Content of a public SSH key to verify an identity of a remote Git host.
userPrivateKeySecretVersion This property is required. 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 This property is required. string
Optional. The default database (Google Cloud project ID).
SchemaSuffix This property is required. string
Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
TablePrefix This property is required. string
Optional. The prefix that should be prepended to all table names.
DefaultDatabase This property is required. string
Optional. The default database (Google Cloud project ID).
SchemaSuffix This property is required. string
Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
TablePrefix This property is required. string
Optional. The prefix that should be prepended to all table names.
defaultDatabase This property is required. String
Optional. The default database (Google Cloud project ID).
schemaSuffix This property is required. String
Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
tablePrefix This property is required. String
Optional. The prefix that should be prepended to all table names.
defaultDatabase This property is required. string
Optional. The default database (Google Cloud project ID).
schemaSuffix This property is required. string
Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
tablePrefix This property is required. string
Optional. The prefix that should be prepended to all table names.
default_database This property is required. str
Optional. The default database (Google Cloud project ID).
schema_suffix This property is required. str
Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
table_prefix This property is required. str
Optional. The prefix that should be prepended to all table names.
defaultDatabase This property is required. String
Optional. The default database (Google Cloud project ID).
schemaSuffix This property is required. String
Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
tablePrefix This property is required. 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.

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