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
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",
},
});
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:
- Repository
Id This property is required. Changes to this property will trigger replacement.
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- Display
Name string - Optional. The repository's user-friendly name.
- Git
Remote 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
Changes to this property will trigger replacement.
- Npmrc
Environment 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
Changes to this property will trigger replacement.
- Service
Account string - 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 Pulumi.Overrides Google Native. Dataform. V1Beta1. Inputs. Workspace Compilation Overrides - 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 forWorkspaceCompilationOverrides
for more information.
- Repository
Id This property is required. Changes to this property will trigger replacement.
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- Display
Name string - 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 map[string]string
- Optional. Repository user labels.
- Location
Changes to this property will trigger replacement.
- Npmrc
Environment 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
Changes to this property will trigger replacement.
- Service
Account string - 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_overrides
override the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation forWorkspaceCompilationOverrides
for more information.
- repository
Id This property is required. Changes to this property will trigger replacement.
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- display
Name String - Optional. The repository's user-friendly name.
- git
Remote 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
Changes to this property will trigger replacement.
- npmrc
Environment 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
Changes to this property will trigger replacement.
- service
Account String - Optional. The service account to run workflow invocations under.
- set
Authenticated 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
- workspace
Compilation WorkspaceOverrides Compilation Overrides - 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 forWorkspaceCompilationOverrides
for more information.
- repository
Id This property is required. Changes to this property will trigger replacement.
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- display
Name string - Optional. The repository's user-friendly name.
- git
Remote 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
Changes to this property will trigger replacement.
- npmrc
Environment 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
Changes to this property will trigger replacement.
- service
Account string - Optional. The service account to run workflow invocations under.
- set
Authenticated 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
- workspace
Compilation WorkspaceOverrides Compilation Overrides - 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 forWorkspaceCompilationOverrides
for more information.
- repository_
id This property is required. Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- 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_overrides
override the default compilation settings that are specified in dataform.json when creating workspace-scoped compilation results. See documentation forWorkspaceCompilationOverrides
for more information.
- repository
Id This property is required. Changes to this property will trigger replacement.
- Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- display
Name String - Optional. The repository's user-friendly name.
- git
Remote Property MapSettings - 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.
- npmrc
Environment 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
Changes to this property will trigger replacement.
- service
Account String - Optional. The service account to run workflow invocations under.
- set
Authenticated 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
- workspace
Compilation Property MapOverrides - 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 forWorkspaceCompilationOverrides
for 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
- Default
Branch This property is required. string - The Git remote's default branch name.
- Url
This property is required. string - The Git remote's URL.
- Authentication
Token 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/*
. - Ssh
Authentication Pulumi.Config Google Native. Dataform. V1Beta1. Inputs. Ssh Authentication Config - Optional. Authentication fields for remote uris using SSH protocol.
- Default
Branch This property is required. string - The Git remote's default branch name.
- Url
This property is required. string - The Git remote's URL.
- Authentication
Token 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/*
. - Ssh
Authentication SshConfig Authentication Config - Optional. Authentication fields for remote uris using SSH protocol.
- default
Branch This property is required. String - The Git remote's default branch name.
- url
This property is required. String - The Git remote's URL.
- authentication
Token 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/*
. - ssh
Authentication SshConfig Authentication Config - Optional. Authentication fields for remote uris using SSH protocol.
- default
Branch This property is required. string - The Git remote's default branch name.
- url
This property is required. string - The Git remote's URL.
- authentication
Token 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/*
. - ssh
Authentication SshConfig Authentication Config - 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_ 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.
- default
Branch This property is required. String - The Git remote's default branch name.
- url
This property is required. String - The Git remote's URL.
- authentication
Token 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/*
. - ssh
Authentication Property MapConfig - Optional. Authentication fields for remote uris using SSH protocol.
GitRemoteSettingsResponse, GitRemoteSettingsResponseArgs
- Authentication
Token Secret Version 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/*
. - Default
Branch This property is required. string - The Git remote's default branch name.
- Ssh
Authentication Config This property is required. Pulumi.Google Native. Dataform. V1Beta1. Inputs. Ssh Authentication Config Response - Optional. Authentication fields for remote uris using SSH protocol.
- Token
Status 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
- Url
This property is required. string - The Git remote's URL.
- Authentication
Token Secret Version 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/*
. - Default
Branch This property is required. string - The Git remote's default branch name.
- Ssh
Authentication Config This property is required. SshAuthentication Config Response - Optional. Authentication fields for remote uris using SSH protocol.
- Token
Status 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
- Url
This property is required. string - The Git remote's URL.
- authentication
Token Secret Version 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/*
. - default
Branch This property is required. String - The Git remote's default branch name.
- ssh
Authentication Config This property is required. SshAuthentication Config Response - Optional. Authentication fields for remote uris using SSH protocol.
- token
Status 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
- url
This property is required. String - The Git remote's URL.
- authentication
Token Secret Version 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/*
. - default
Branch This property is required. string - The Git remote's default branch name.
- ssh
Authentication Config This property is required. SshAuthentication Config Response - Optional. Authentication fields for remote uris using SSH protocol.
- token
Status 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
- 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. SshAuthentication Config Response - 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
- url
This property is required. str - The Git remote's URL.
- authentication
Token Secret Version 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/*
. - default
Branch This property is required. String - The Git remote's default branch name.
- ssh
Authentication Config This property is required. Property Map - Optional. Authentication fields for remote uris using SSH protocol.
- token
Status 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
- url
This property is required. String - The Git remote's URL.
SshAuthenticationConfig, SshAuthenticationConfigArgs
- Host
Public Key This property is required. string - Content of a public SSH key to verify an identity of a remote Git host.
- User
Private Key Secret Version 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. string - Content of a public SSH key to verify an identity of a remote Git host.
- User
Private Key Secret Version 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. String - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private Key Secret Version 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. string - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private Key Secret Version 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/*
.
- host
Public Key This property is required. String - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private Key Secret Version 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
- Host
Public Key This property is required. string - Content of a public SSH key to verify an identity of a remote Git host.
- User
Private Key Secret Version 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. string - Content of a public SSH key to verify an identity of a remote Git host.
- User
Private Key Secret Version 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. String - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private Key Secret Version 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. string - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private Key Secret Version 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/*
.
- host
Public Key This property is required. String - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private Key Secret Version 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
- Default
Database string - Optional. The default database (Google Cloud project ID).
- Schema
Suffix string - Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- Table
Prefix string - Optional. The prefix that should be prepended to all table names.
- Default
Database string - Optional. The default database (Google Cloud project ID).
- Schema
Suffix string - Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- Table
Prefix string - Optional. The prefix that should be prepended to all table names.
- default
Database String - Optional. The default database (Google Cloud project ID).
- schema
Suffix String - Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- table
Prefix String - Optional. The prefix that should be prepended to all table names.
- default
Database string - Optional. The default database (Google Cloud project ID).
- schema
Suffix string - Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- table
Prefix 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.
- default
Database String - Optional. The default database (Google Cloud project ID).
- schema
Suffix String - Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- table
Prefix String - Optional. The prefix that should be prepended to all table names.
WorkspaceCompilationOverridesResponse, WorkspaceCompilationOverridesResponseArgs
- Default
Database This property is required. string - Optional. The default database (Google Cloud project ID).
- Schema
Suffix This property is required. string - Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- Table
Prefix This property is required. string - Optional. The prefix that should be prepended to all table names.
- Default
Database This property is required. string - Optional. The default database (Google Cloud project ID).
- Schema
Suffix This property is required. string - Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- Table
Prefix This property is required. string - Optional. The prefix that should be prepended to all table names.
- default
Database This property is required. String - Optional. The default database (Google Cloud project ID).
- schema
Suffix This property is required. String - Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- table
Prefix This property is required. String - Optional. The prefix that should be prepended to all table names.
- default
Database This property is required. string - Optional. The default database (Google Cloud project ID).
- schema
Suffix This property is required. string - Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- table
Prefix 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.
- default
Database This property is required. String - Optional. The default database (Google Cloud project ID).
- schema
Suffix This property is required. String - Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.
- table
Prefix 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.