Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.dataform/v1beta1.Repository
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new Repository in a given project and location. Auto-naming is currently not supported for this resource.
Create Repository Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Repository(name: string, args: RepositoryArgs, opts?: CustomResourceOptions);
@overload
def Repository(resource_name: str,
args: RepositoryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Repository(resource_name: str,
opts: Optional[ResourceOptions] = None,
repository_id: Optional[str] = None,
display_name: Optional[str] = None,
git_remote_settings: Optional[GitRemoteSettingsArgs] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
npmrc_environment_variables_secret_version: Optional[str] = None,
project: Optional[str] = None,
service_account: Optional[str] = None,
set_authenticated_user_admin: Optional[bool] = None,
workspace_compilation_overrides: Optional[WorkspaceCompilationOverridesArgs] = None)
func NewRepository(ctx *Context, name string, args RepositoryArgs, opts ...ResourceOption) (*Repository, error)
public Repository(string name, RepositoryArgs args, CustomResourceOptions? opts = null)
public Repository(String name, RepositoryArgs args)
public Repository(String name, RepositoryArgs args, CustomResourceOptions options)
type: google-native:dataform/v1beta1:Repository
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RepositoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RepositoryArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RepositoryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RepositoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RepositoryArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var examplerepositoryResourceResourceFromDataformv1beta1 = new GoogleNative.Dataform.V1Beta1.Repository("examplerepositoryResourceResourceFromDataformv1beta1", new()
{
RepositoryId = "string",
DisplayName = "string",
GitRemoteSettings = new GoogleNative.Dataform.V1Beta1.Inputs.GitRemoteSettingsArgs
{
DefaultBranch = "string",
Url = "string",
AuthenticationTokenSecretVersion = "string",
SshAuthenticationConfig = new GoogleNative.Dataform.V1Beta1.Inputs.SshAuthenticationConfigArgs
{
HostPublicKey = "string",
UserPrivateKeySecretVersion = "string",
},
},
Labels =
{
{ "string", "string" },
},
Location = "string",
NpmrcEnvironmentVariablesSecretVersion = "string",
Project = "string",
ServiceAccount = "string",
SetAuthenticatedUserAdmin = false,
WorkspaceCompilationOverrides = new GoogleNative.Dataform.V1Beta1.Inputs.WorkspaceCompilationOverridesArgs
{
DefaultDatabase = "string",
SchemaSuffix = "string",
TablePrefix = "string",
},
});
example, err := dataform.NewRepository(ctx, "examplerepositoryResourceResourceFromDataformv1beta1", &dataform.RepositoryArgs{
RepositoryId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
GitRemoteSettings: &dataform.GitRemoteSettingsArgs{
DefaultBranch: pulumi.String("string"),
Url: pulumi.String("string"),
AuthenticationTokenSecretVersion: pulumi.String("string"),
SshAuthenticationConfig: &dataform.SshAuthenticationConfigArgs{
HostPublicKey: pulumi.String("string"),
UserPrivateKeySecretVersion: pulumi.String("string"),
},
},
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Location: pulumi.String("string"),
NpmrcEnvironmentVariablesSecretVersion: pulumi.String("string"),
Project: pulumi.String("string"),
ServiceAccount: pulumi.String("string"),
SetAuthenticatedUserAdmin: pulumi.Bool(false),
WorkspaceCompilationOverrides: &dataform.WorkspaceCompilationOverridesArgs{
DefaultDatabase: pulumi.String("string"),
SchemaSuffix: pulumi.String("string"),
TablePrefix: pulumi.String("string"),
},
})
var examplerepositoryResourceResourceFromDataformv1beta1 = new Repository("examplerepositoryResourceResourceFromDataformv1beta1", RepositoryArgs.builder()
.repositoryId("string")
.displayName("string")
.gitRemoteSettings(GitRemoteSettingsArgs.builder()
.defaultBranch("string")
.url("string")
.authenticationTokenSecretVersion("string")
.sshAuthenticationConfig(SshAuthenticationConfigArgs.builder()
.hostPublicKey("string")
.userPrivateKeySecretVersion("string")
.build())
.build())
.labels(Map.of("string", "string"))
.location("string")
.npmrcEnvironmentVariablesSecretVersion("string")
.project("string")
.serviceAccount("string")
.setAuthenticatedUserAdmin(false)
.workspaceCompilationOverrides(WorkspaceCompilationOverridesArgs.builder()
.defaultDatabase("string")
.schemaSuffix("string")
.tablePrefix("string")
.build())
.build());
examplerepository_resource_resource_from_dataformv1beta1 = google_native.dataform.v1beta1.Repository("examplerepositoryResourceResourceFromDataformv1beta1",
repository_id="string",
display_name="string",
git_remote_settings=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:
- Repository
Id string - 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 string
- 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 string
- 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 string - 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 string
- 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 string
- 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 String - 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 String
- 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 String
- 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 string - 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 string
- 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 string
- 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 str - Required. The ID to use for the repository, which will become the final component of the repository's resource name.
- display_
name str - Optional. The repository's user-friendly name.
- git_
remote_ Gitsettings Remote Settings Args - Optional. If set, configures this repository to be linked to a Git remote.
- labels Mapping[str, str]
- Optional. Repository user labels.
- location str
- npmrc_
environment_ strvariables_ secret_ version - Optional. The name of the Secret Manager secret version to be used to interpolate variables into the .npmrc file for package installation operations. Must be in the format
projects/*/secrets/*/versions/*
. The file itself must be in a JSON format. - project str
- service_
account str - Optional. The service account to run workflow invocations under.
- set_
authenticated_ booluser_ admin - Optional. Input only. If set to true, the authenticated user will be granted the roles/dataform.admin role on the created repository. To modify access to the created repository later apply setIamPolicy from https://cloud.google.com/dataform/reference/rest#rest-resource:-v1beta1.projects.locations.repositories
- workspace_
compilation_ Workspaceoverrides Compilation Overrides Args - Optional. If set, fields of
workspace_compilation_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 String - 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 String
- 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 String
- 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 string - The Git remote's default branch name.
- Url 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 string - The Git remote's default branch name.
- Url 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 String - The Git remote's default branch name.
- url 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 string - The Git remote's default branch name.
- url 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 str - The Git remote's default branch name.
- url str
- The Git remote's URL.
- authentication_
token_ strsecret_ version - Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format
projects/*/secrets/*/versions/*
. - ssh_
authentication_ Sshconfig Authentication Config - Optional. Authentication fields for remote uris using SSH protocol.
- default
Branch String - The Git remote's default branch name.
- url 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 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/*
. - Default
Branch string - The Git remote's default branch name.
- Ssh
Authentication Pulumi.Config Google Native. Dataform. V1Beta1. Inputs. Ssh Authentication Config Response - Optional. Authentication fields for remote uris using SSH protocol.
- Token
Status string - Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- Url string
- The Git remote's URL.
- Authentication
Token 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/*
. - Default
Branch string - The Git remote's default branch name.
- Ssh
Authentication SshConfig Authentication Config Response - Optional. Authentication fields for remote uris using SSH protocol.
- Token
Status string - Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- Url string
- The Git remote's URL.
- authentication
Token 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/*
. - default
Branch String - The Git remote's default branch name.
- ssh
Authentication SshConfig Authentication Config Response - Optional. Authentication fields for remote uris using SSH protocol.
- token
Status String - Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- url String
- The Git remote's URL.
- authentication
Token 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/*
. - default
Branch string - The Git remote's default branch name.
- ssh
Authentication SshConfig Authentication Config Response - Optional. Authentication fields for remote uris using SSH protocol.
- token
Status string - Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- url string
- The Git remote's URL.
- authentication_
token_ strsecret_ version - Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format
projects/*/secrets/*/versions/*
. - default_
branch str - The Git remote's default branch name.
- ssh_
authentication_ Sshconfig Authentication Config Response - Optional. Authentication fields for remote uris using SSH protocol.
- token_
status str - Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- url str
- The Git remote's URL.
- 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/*
. - default
Branch String - The Git remote's default branch name.
- ssh
Authentication Property MapConfig - Optional. Authentication fields for remote uris using SSH protocol.
- token
Status String - Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus
- url String
- The Git remote's URL.
SshAuthenticationConfig, SshAuthenticationConfigArgs
- Host
Public stringKey - Content of a public SSH key to verify an identity of a remote Git host.
- User
Private stringKey Secret Version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
- Host
Public stringKey - Content of a public SSH key to verify an identity of a remote Git host.
- User
Private stringKey Secret Version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
- host
Public StringKey - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private StringKey Secret Version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
- host
Public stringKey - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private stringKey Secret Version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
- host_
public_ strkey - Content of a public SSH key to verify an identity of a remote Git host.
- user_
private_ strkey_ secret_ version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
- host
Public StringKey - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private StringKey Secret Version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
SshAuthenticationConfigResponse, SshAuthenticationConfigResponseArgs
- Host
Public stringKey - Content of a public SSH key to verify an identity of a remote Git host.
- User
Private stringKey Secret Version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
- Host
Public stringKey - Content of a public SSH key to verify an identity of a remote Git host.
- User
Private stringKey Secret Version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
- host
Public StringKey - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private StringKey Secret Version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
- host
Public stringKey - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private stringKey Secret Version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
- host_
public_ strkey - Content of a public SSH key to verify an identity of a remote Git host.
- user_
private_ strkey_ secret_ version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
- host
Public StringKey - Content of a public SSH key to verify an identity of a remote Git host.
- user
Private StringKey Secret Version - The name of the Secret Manager secret version to use as a ssh private key for Git operations. Must be in the format
projects/*/secrets/*/versions/*
.
WorkspaceCompilationOverrides, WorkspaceCompilationOverridesArgs
- 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 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.
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.