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

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.CompilationResult

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 CompilationResult in a given project and location. Auto-naming is currently not supported for this resource. Note - this resource’s API doesn’t support deletion. When deleted, the resource will persist on Google Cloud even though it will be deleted from Pulumi state.

Create CompilationResult Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CompilationResult(name: string, args: CompilationResultArgs, opts?: CustomResourceOptions);
@overload
def CompilationResult(resource_name: str,
                      args: CompilationResultArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def CompilationResult(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      repository_id: Optional[str] = None,
                      code_compilation_config: Optional[CodeCompilationConfigArgs] = None,
                      git_commitish: Optional[str] = None,
                      location: Optional[str] = None,
                      project: Optional[str] = None,
                      release_config: Optional[str] = None,
                      workspace: Optional[str] = None)
func NewCompilationResult(ctx *Context, name string, args CompilationResultArgs, opts ...ResourceOption) (*CompilationResult, error)
public CompilationResult(string name, CompilationResultArgs args, CustomResourceOptions? opts = null)
public CompilationResult(String name, CompilationResultArgs args)
public CompilationResult(String name, CompilationResultArgs args, CustomResourceOptions options)
type: google-native:dataform/v1beta1:CompilationResult
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. CompilationResultArgs
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. CompilationResultArgs
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. CompilationResultArgs
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. CompilationResultArgs
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. CompilationResultArgs
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 compilationResultResource = new GoogleNative.Dataform.V1Beta1.CompilationResult("compilationResultResource", new()
{
    RepositoryId = "string",
    CodeCompilationConfig = new GoogleNative.Dataform.V1Beta1.Inputs.CodeCompilationConfigArgs
    {
        AssertionSchema = "string",
        DatabaseSuffix = "string",
        DefaultDatabase = "string",
        DefaultLocation = "string",
        DefaultSchema = "string",
        SchemaSuffix = "string",
        TablePrefix = "string",
        Vars = 
        {
            { "string", "string" },
        },
    },
    GitCommitish = "string",
    Location = "string",
    Project = "string",
    ReleaseConfig = "string",
    Workspace = "string",
});
Copy
example, err := dataform.NewCompilationResult(ctx, "compilationResultResource", &dataform.CompilationResultArgs{
	RepositoryId: pulumi.String("string"),
	CodeCompilationConfig: &dataform.CodeCompilationConfigArgs{
		AssertionSchema: pulumi.String("string"),
		DatabaseSuffix:  pulumi.String("string"),
		DefaultDatabase: pulumi.String("string"),
		DefaultLocation: pulumi.String("string"),
		DefaultSchema:   pulumi.String("string"),
		SchemaSuffix:    pulumi.String("string"),
		TablePrefix:     pulumi.String("string"),
		Vars: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
	},
	GitCommitish:  pulumi.String("string"),
	Location:      pulumi.String("string"),
	Project:       pulumi.String("string"),
	ReleaseConfig: pulumi.String("string"),
	Workspace:     pulumi.String("string"),
})
Copy
var compilationResultResource = new CompilationResult("compilationResultResource", CompilationResultArgs.builder()
    .repositoryId("string")
    .codeCompilationConfig(CodeCompilationConfigArgs.builder()
        .assertionSchema("string")
        .databaseSuffix("string")
        .defaultDatabase("string")
        .defaultLocation("string")
        .defaultSchema("string")
        .schemaSuffix("string")
        .tablePrefix("string")
        .vars(Map.of("string", "string"))
        .build())
    .gitCommitish("string")
    .location("string")
    .project("string")
    .releaseConfig("string")
    .workspace("string")
    .build());
Copy
compilation_result_resource = google_native.dataform.v1beta1.CompilationResult("compilationResultResource",
    repository_id="string",
    code_compilation_config={
        "assertion_schema": "string",
        "database_suffix": "string",
        "default_database": "string",
        "default_location": "string",
        "default_schema": "string",
        "schema_suffix": "string",
        "table_prefix": "string",
        "vars": {
            "string": "string",
        },
    },
    git_commitish="string",
    location="string",
    project="string",
    release_config="string",
    workspace="string")
Copy
const compilationResultResource = new google_native.dataform.v1beta1.CompilationResult("compilationResultResource", {
    repositoryId: "string",
    codeCompilationConfig: {
        assertionSchema: "string",
        databaseSuffix: "string",
        defaultDatabase: "string",
        defaultLocation: "string",
        defaultSchema: "string",
        schemaSuffix: "string",
        tablePrefix: "string",
        vars: {
            string: "string",
        },
    },
    gitCommitish: "string",
    location: "string",
    project: "string",
    releaseConfig: "string",
    workspace: "string",
});
Copy
type: google-native:dataform/v1beta1:CompilationResult
properties:
    codeCompilationConfig:
        assertionSchema: string
        databaseSuffix: string
        defaultDatabase: string
        defaultLocation: string
        defaultSchema: string
        schemaSuffix: string
        tablePrefix: string
        vars:
            string: string
    gitCommitish: string
    location: string
    project: string
    releaseConfig: string
    repositoryId: string
    workspace: string
Copy

CompilationResult 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 CompilationResult resource accepts the following input properties:

RepositoryId
This property is required.
Changes to this property will trigger replacement.
string
CodeCompilationConfig Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.CodeCompilationConfig
Immutable. If set, fields of code_compilation_config override the default compilation settings that are specified in dataform.json.
GitCommitish string
Immutable. Git commit/tag/branch name at which the repository should be compiled. Must exist in the remote repository. Examples: - a commit SHA: 12ade345 - a tag: tag1 - a branch name: branch1
Location Changes to this property will trigger replacement. string
Project Changes to this property will trigger replacement. string
ReleaseConfig string
Immutable. The name of the release config to compile. The release config's 'current_compilation_result' field will be updated to this compilation result. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
Workspace string
Immutable. The name of the workspace to compile. Must be in the format projects/*/locations/*/repositories/*/workspaces/*.
RepositoryId
This property is required.
Changes to this property will trigger replacement.
string
CodeCompilationConfig CodeCompilationConfigArgs
Immutable. If set, fields of code_compilation_config override the default compilation settings that are specified in dataform.json.
GitCommitish string
Immutable. Git commit/tag/branch name at which the repository should be compiled. Must exist in the remote repository. Examples: - a commit SHA: 12ade345 - a tag: tag1 - a branch name: branch1
Location Changes to this property will trigger replacement. string
Project Changes to this property will trigger replacement. string
ReleaseConfig string
Immutable. The name of the release config to compile. The release config's 'current_compilation_result' field will be updated to this compilation result. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
Workspace string
Immutable. The name of the workspace to compile. Must be in the format projects/*/locations/*/repositories/*/workspaces/*.
repositoryId
This property is required.
Changes to this property will trigger replacement.
String
codeCompilationConfig CodeCompilationConfig
Immutable. If set, fields of code_compilation_config override the default compilation settings that are specified in dataform.json.
gitCommitish String
Immutable. Git commit/tag/branch name at which the repository should be compiled. Must exist in the remote repository. Examples: - a commit SHA: 12ade345 - a tag: tag1 - a branch name: branch1
location Changes to this property will trigger replacement. String
project Changes to this property will trigger replacement. String
releaseConfig String
Immutable. The name of the release config to compile. The release config's 'current_compilation_result' field will be updated to this compilation result. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
workspace String
Immutable. The name of the workspace to compile. Must be in the format projects/*/locations/*/repositories/*/workspaces/*.
repositoryId
This property is required.
Changes to this property will trigger replacement.
string
codeCompilationConfig CodeCompilationConfig
Immutable. If set, fields of code_compilation_config override the default compilation settings that are specified in dataform.json.
gitCommitish string
Immutable. Git commit/tag/branch name at which the repository should be compiled. Must exist in the remote repository. Examples: - a commit SHA: 12ade345 - a tag: tag1 - a branch name: branch1
location Changes to this property will trigger replacement. string
project Changes to this property will trigger replacement. string
releaseConfig string
Immutable. The name of the release config to compile. The release config's 'current_compilation_result' field will be updated to this compilation result. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
workspace string
Immutable. The name of the workspace to compile. Must be in the format projects/*/locations/*/repositories/*/workspaces/*.
repository_id
This property is required.
Changes to this property will trigger replacement.
str
code_compilation_config CodeCompilationConfigArgs
Immutable. If set, fields of code_compilation_config override the default compilation settings that are specified in dataform.json.
git_commitish str
Immutable. Git commit/tag/branch name at which the repository should be compiled. Must exist in the remote repository. Examples: - a commit SHA: 12ade345 - a tag: tag1 - a branch name: branch1
location Changes to this property will trigger replacement. str
project Changes to this property will trigger replacement. str
release_config str
Immutable. The name of the release config to compile. The release config's 'current_compilation_result' field will be updated to this compilation result. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
workspace str
Immutable. The name of the workspace to compile. Must be in the format projects/*/locations/*/repositories/*/workspaces/*.
repositoryId
This property is required.
Changes to this property will trigger replacement.
String
codeCompilationConfig Property Map
Immutable. If set, fields of code_compilation_config override the default compilation settings that are specified in dataform.json.
gitCommitish String
Immutable. Git commit/tag/branch name at which the repository should be compiled. Must exist in the remote repository. Examples: - a commit SHA: 12ade345 - a tag: tag1 - a branch name: branch1
location Changes to this property will trigger replacement. String
project Changes to this property will trigger replacement. String
releaseConfig String
Immutable. The name of the release config to compile. The release config's 'current_compilation_result' field will be updated to this compilation result. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
workspace String
Immutable. The name of the workspace to compile. Must be in the format projects/*/locations/*/repositories/*/workspaces/*.

Outputs

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

CompilationErrors List<Pulumi.GoogleNative.Dataform.V1Beta1.Outputs.CompilationErrorResponse>
Errors encountered during project compilation.
DataformCoreVersion string
The version of @dataform/core that was used for compilation.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The compilation result's name.
ResolvedGitCommitSha string
The fully resolved Git commit SHA of the code that was compiled. Not set for compilation results whose source is a workspace.
CompilationErrors []CompilationErrorResponse
Errors encountered during project compilation.
DataformCoreVersion string
The version of @dataform/core that was used for compilation.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The compilation result's name.
ResolvedGitCommitSha string
The fully resolved Git commit SHA of the code that was compiled. Not set for compilation results whose source is a workspace.
compilationErrors List<CompilationErrorResponse>
Errors encountered during project compilation.
dataformCoreVersion String
The version of @dataform/core that was used for compilation.
id String
The provider-assigned unique ID for this managed resource.
name String
The compilation result's name.
resolvedGitCommitSha String
The fully resolved Git commit SHA of the code that was compiled. Not set for compilation results whose source is a workspace.
compilationErrors CompilationErrorResponse[]
Errors encountered during project compilation.
dataformCoreVersion string
The version of @dataform/core that was used for compilation.
id string
The provider-assigned unique ID for this managed resource.
name string
The compilation result's name.
resolvedGitCommitSha string
The fully resolved Git commit SHA of the code that was compiled. Not set for compilation results whose source is a workspace.
compilation_errors Sequence[CompilationErrorResponse]
Errors encountered during project compilation.
dataform_core_version str
The version of @dataform/core that was used for compilation.
id str
The provider-assigned unique ID for this managed resource.
name str
The compilation result's name.
resolved_git_commit_sha str
The fully resolved Git commit SHA of the code that was compiled. Not set for compilation results whose source is a workspace.
compilationErrors List<Property Map>
Errors encountered during project compilation.
dataformCoreVersion String
The version of @dataform/core that was used for compilation.
id String
The provider-assigned unique ID for this managed resource.
name String
The compilation result's name.
resolvedGitCommitSha String
The fully resolved Git commit SHA of the code that was compiled. Not set for compilation results whose source is a workspace.

Supporting Types

CodeCompilationConfig
, CodeCompilationConfigArgs

AssertionSchema string
Optional. The default schema (BigQuery dataset ID) for assertions.
DatabaseSuffix string
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
DefaultDatabase string
Optional. The default database (Google Cloud project ID).
DefaultLocation string
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
DefaultSchema string
Optional. The default schema (BigQuery dataset 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.
Vars Dictionary<string, string>
Optional. User-defined variables that are made available to project code during compilation.
AssertionSchema string
Optional. The default schema (BigQuery dataset ID) for assertions.
DatabaseSuffix string
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
DefaultDatabase string
Optional. The default database (Google Cloud project ID).
DefaultLocation string
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
DefaultSchema string
Optional. The default schema (BigQuery dataset 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.
Vars map[string]string
Optional. User-defined variables that are made available to project code during compilation.
assertionSchema String
Optional. The default schema (BigQuery dataset ID) for assertions.
databaseSuffix String
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
defaultDatabase String
Optional. The default database (Google Cloud project ID).
defaultLocation String
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
defaultSchema String
Optional. The default schema (BigQuery dataset 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.
vars Map<String,String>
Optional. User-defined variables that are made available to project code during compilation.
assertionSchema string
Optional. The default schema (BigQuery dataset ID) for assertions.
databaseSuffix string
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
defaultDatabase string
Optional. The default database (Google Cloud project ID).
defaultLocation string
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
defaultSchema string
Optional. The default schema (BigQuery dataset 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.
vars {[key: string]: string}
Optional. User-defined variables that are made available to project code during compilation.
assertion_schema str
Optional. The default schema (BigQuery dataset ID) for assertions.
database_suffix str
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
default_database str
Optional. The default database (Google Cloud project ID).
default_location str
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
default_schema str
Optional. The default schema (BigQuery dataset 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.
vars Mapping[str, str]
Optional. User-defined variables that are made available to project code during compilation.
assertionSchema String
Optional. The default schema (BigQuery dataset ID) for assertions.
databaseSuffix String
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
defaultDatabase String
Optional. The default database (Google Cloud project ID).
defaultLocation String
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
defaultSchema String
Optional. The default schema (BigQuery dataset 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.
vars Map<String>
Optional. User-defined variables that are made available to project code during compilation.

CodeCompilationConfigResponse
, CodeCompilationConfigResponseArgs

AssertionSchema This property is required. string
Optional. The default schema (BigQuery dataset ID) for assertions.
DatabaseSuffix This property is required. string
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
DefaultDatabase This property is required. string
Optional. The default database (Google Cloud project ID).
DefaultLocation This property is required. string
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
DefaultSchema This property is required. string
Optional. The default schema (BigQuery dataset 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.
Vars This property is required. Dictionary<string, string>
Optional. User-defined variables that are made available to project code during compilation.
AssertionSchema This property is required. string
Optional. The default schema (BigQuery dataset ID) for assertions.
DatabaseSuffix This property is required. string
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
DefaultDatabase This property is required. string
Optional. The default database (Google Cloud project ID).
DefaultLocation This property is required. string
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
DefaultSchema This property is required. string
Optional. The default schema (BigQuery dataset 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.
Vars This property is required. map[string]string
Optional. User-defined variables that are made available to project code during compilation.
assertionSchema This property is required. String
Optional. The default schema (BigQuery dataset ID) for assertions.
databaseSuffix This property is required. String
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
defaultDatabase This property is required. String
Optional. The default database (Google Cloud project ID).
defaultLocation This property is required. String
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
defaultSchema This property is required. String
Optional. The default schema (BigQuery dataset 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.
vars This property is required. Map<String,String>
Optional. User-defined variables that are made available to project code during compilation.
assertionSchema This property is required. string
Optional. The default schema (BigQuery dataset ID) for assertions.
databaseSuffix This property is required. string
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
defaultDatabase This property is required. string
Optional. The default database (Google Cloud project ID).
defaultLocation This property is required. string
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
defaultSchema This property is required. string
Optional. The default schema (BigQuery dataset 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.
vars This property is required. {[key: string]: string}
Optional. User-defined variables that are made available to project code during compilation.
assertion_schema This property is required. str
Optional. The default schema (BigQuery dataset ID) for assertions.
database_suffix This property is required. str
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
default_database This property is required. str
Optional. The default database (Google Cloud project ID).
default_location This property is required. str
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
default_schema This property is required. str
Optional. The default schema (BigQuery dataset 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.
vars This property is required. Mapping[str, str]
Optional. User-defined variables that are made available to project code during compilation.
assertionSchema This property is required. String
Optional. The default schema (BigQuery dataset ID) for assertions.
databaseSuffix This property is required. String
Optional. The suffix that should be appended to all database (Google Cloud project ID) names.
defaultDatabase This property is required. String
Optional. The default database (Google Cloud project ID).
defaultLocation This property is required. String
Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.
defaultSchema This property is required. String
Optional. The default schema (BigQuery dataset 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.
vars This property is required. Map<String>
Optional. User-defined variables that are made available to project code during compilation.

CompilationErrorResponse
, CompilationErrorResponseArgs

ActionTarget This property is required. Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.TargetResponse
The identifier of the action where this error occurred, if available.
Message This property is required. string
The error's top level message.
Path This property is required. string
The path of the file where this error occurred, if available, relative to the project root.
Stack This property is required. string
The error's full stack trace.
ActionTarget This property is required. TargetResponse
The identifier of the action where this error occurred, if available.
Message This property is required. string
The error's top level message.
Path This property is required. string
The path of the file where this error occurred, if available, relative to the project root.
Stack This property is required. string
The error's full stack trace.
actionTarget This property is required. TargetResponse
The identifier of the action where this error occurred, if available.
message This property is required. String
The error's top level message.
path This property is required. String
The path of the file where this error occurred, if available, relative to the project root.
stack This property is required. String
The error's full stack trace.
actionTarget This property is required. TargetResponse
The identifier of the action where this error occurred, if available.
message This property is required. string
The error's top level message.
path This property is required. string
The path of the file where this error occurred, if available, relative to the project root.
stack This property is required. string
The error's full stack trace.
action_target This property is required. TargetResponse
The identifier of the action where this error occurred, if available.
message This property is required. str
The error's top level message.
path This property is required. str
The path of the file where this error occurred, if available, relative to the project root.
stack This property is required. str
The error's full stack trace.
actionTarget This property is required. Property Map
The identifier of the action where this error occurred, if available.
message This property is required. String
The error's top level message.
path This property is required. String
The path of the file where this error occurred, if available, relative to the project root.
stack This property is required. String
The error's full stack trace.

TargetResponse
, TargetResponseArgs

Database This property is required. string
The action's database (Google Cloud project ID) .
Name This property is required. string
The action's name, within database and schema.
Schema This property is required. string
The action's schema (BigQuery dataset ID), within database.
Database This property is required. string
The action's database (Google Cloud project ID) .
Name This property is required. string
The action's name, within database and schema.
Schema This property is required. string
The action's schema (BigQuery dataset ID), within database.
database This property is required. String
The action's database (Google Cloud project ID) .
name This property is required. String
The action's name, within database and schema.
schema This property is required. String
The action's schema (BigQuery dataset ID), within database.
database This property is required. string
The action's database (Google Cloud project ID) .
name This property is required. string
The action's name, within database and schema.
schema This property is required. string
The action's schema (BigQuery dataset ID), within database.
database This property is required. str
The action's database (Google Cloud project ID) .
name This property is required. str
The action's name, within database and schema.
schema This property is required. str
The action's schema (BigQuery dataset ID), within database.
database This property is required. String
The action's database (Google Cloud project ID) .
name This property is required. String
The action's name, within database and schema.
schema This property is required. String
The action's schema (BigQuery dataset ID), within database.

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