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

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

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 WorkflowConfig in a given Repository. Auto-naming is currently not supported for this resource.

Create WorkflowConfig Resource

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

Constructor syntax

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

@overload
def WorkflowConfig(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   release_config: Optional[str] = None,
                   repository_id: Optional[str] = None,
                   workflow_config_id: Optional[str] = None,
                   cron_schedule: Optional[str] = None,
                   invocation_config: Optional[InvocationConfigArgs] = None,
                   location: Optional[str] = None,
                   project: Optional[str] = None,
                   time_zone: Optional[str] = None)
func NewWorkflowConfig(ctx *Context, name string, args WorkflowConfigArgs, opts ...ResourceOption) (*WorkflowConfig, error)
public WorkflowConfig(string name, WorkflowConfigArgs args, CustomResourceOptions? opts = null)
public WorkflowConfig(String name, WorkflowConfigArgs args)
public WorkflowConfig(String name, WorkflowConfigArgs args, CustomResourceOptions options)
type: google-native:dataform/v1beta1:WorkflowConfig
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. WorkflowConfigArgs
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. WorkflowConfigArgs
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. WorkflowConfigArgs
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. WorkflowConfigArgs
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. WorkflowConfigArgs
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 workflowConfigResource = new GoogleNative.Dataform.V1Beta1.WorkflowConfig("workflowConfigResource", new()
{
    ReleaseConfig = "string",
    RepositoryId = "string",
    WorkflowConfigId = "string",
    CronSchedule = "string",
    InvocationConfig = new GoogleNative.Dataform.V1Beta1.Inputs.InvocationConfigArgs
    {
        FullyRefreshIncrementalTablesEnabled = false,
        IncludedTags = new[]
        {
            "string",
        },
        IncludedTargets = new[]
        {
            new GoogleNative.Dataform.V1Beta1.Inputs.TargetArgs
            {
                Database = "string",
                Name = "string",
                Schema = "string",
            },
        },
        ServiceAccount = "string",
        TransitiveDependenciesIncluded = false,
        TransitiveDependentsIncluded = false,
    },
    Location = "string",
    Project = "string",
    TimeZone = "string",
});
Copy
example, err := dataform.NewWorkflowConfig(ctx, "workflowConfigResource", &dataform.WorkflowConfigArgs{
	ReleaseConfig:    pulumi.String("string"),
	RepositoryId:     pulumi.String("string"),
	WorkflowConfigId: pulumi.String("string"),
	CronSchedule:     pulumi.String("string"),
	InvocationConfig: &dataform.InvocationConfigArgs{
		FullyRefreshIncrementalTablesEnabled: pulumi.Bool(false),
		IncludedTags: pulumi.StringArray{
			pulumi.String("string"),
		},
		IncludedTargets: dataform.TargetArray{
			&dataform.TargetArgs{
				Database: pulumi.String("string"),
				Name:     pulumi.String("string"),
				Schema:   pulumi.String("string"),
			},
		},
		ServiceAccount:                 pulumi.String("string"),
		TransitiveDependenciesIncluded: pulumi.Bool(false),
		TransitiveDependentsIncluded:   pulumi.Bool(false),
	},
	Location: pulumi.String("string"),
	Project:  pulumi.String("string"),
	TimeZone: pulumi.String("string"),
})
Copy
var workflowConfigResource = new WorkflowConfig("workflowConfigResource", WorkflowConfigArgs.builder()
    .releaseConfig("string")
    .repositoryId("string")
    .workflowConfigId("string")
    .cronSchedule("string")
    .invocationConfig(InvocationConfigArgs.builder()
        .fullyRefreshIncrementalTablesEnabled(false)
        .includedTags("string")
        .includedTargets(TargetArgs.builder()
            .database("string")
            .name("string")
            .schema("string")
            .build())
        .serviceAccount("string")
        .transitiveDependenciesIncluded(false)
        .transitiveDependentsIncluded(false)
        .build())
    .location("string")
    .project("string")
    .timeZone("string")
    .build());
Copy
workflow_config_resource = google_native.dataform.v1beta1.WorkflowConfig("workflowConfigResource",
    release_config="string",
    repository_id="string",
    workflow_config_id="string",
    cron_schedule="string",
    invocation_config={
        "fully_refresh_incremental_tables_enabled": False,
        "included_tags": ["string"],
        "included_targets": [{
            "database": "string",
            "name": "string",
            "schema": "string",
        }],
        "service_account": "string",
        "transitive_dependencies_included": False,
        "transitive_dependents_included": False,
    },
    location="string",
    project="string",
    time_zone="string")
Copy
const workflowConfigResource = new google_native.dataform.v1beta1.WorkflowConfig("workflowConfigResource", {
    releaseConfig: "string",
    repositoryId: "string",
    workflowConfigId: "string",
    cronSchedule: "string",
    invocationConfig: {
        fullyRefreshIncrementalTablesEnabled: false,
        includedTags: ["string"],
        includedTargets: [{
            database: "string",
            name: "string",
            schema: "string",
        }],
        serviceAccount: "string",
        transitiveDependenciesIncluded: false,
        transitiveDependentsIncluded: false,
    },
    location: "string",
    project: "string",
    timeZone: "string",
});
Copy
type: google-native:dataform/v1beta1:WorkflowConfig
properties:
    cronSchedule: string
    invocationConfig:
        fullyRefreshIncrementalTablesEnabled: false
        includedTags:
            - string
        includedTargets:
            - database: string
              name: string
              schema: string
        serviceAccount: string
        transitiveDependenciesIncluded: false
        transitiveDependentsIncluded: false
    location: string
    project: string
    releaseConfig: string
    repositoryId: string
    timeZone: string
    workflowConfigId: string
Copy

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

ReleaseConfig This property is required. string
The name of the release config whose release_compilation_result should be executed. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
RepositoryId
This property is required.
Changes to this property will trigger replacement.
string
WorkflowConfigId
This property is required.
Changes to this property will trigger replacement.
string
Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name.
CronSchedule string
Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
InvocationConfig Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.InvocationConfig
Optional. If left unset, a default InvocationConfig will be used.
Location Changes to this property will trigger replacement. string
Project Changes to this property will trigger replacement. string
TimeZone string
Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is UTC.
ReleaseConfig This property is required. string
The name of the release config whose release_compilation_result should be executed. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
RepositoryId
This property is required.
Changes to this property will trigger replacement.
string
WorkflowConfigId
This property is required.
Changes to this property will trigger replacement.
string
Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name.
CronSchedule string
Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
InvocationConfig InvocationConfigArgs
Optional. If left unset, a default InvocationConfig will be used.
Location Changes to this property will trigger replacement. string
Project Changes to this property will trigger replacement. string
TimeZone string
Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is UTC.
releaseConfig This property is required. String
The name of the release config whose release_compilation_result should be executed. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
repositoryId
This property is required.
Changes to this property will trigger replacement.
String
workflowConfigId
This property is required.
Changes to this property will trigger replacement.
String
Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name.
cronSchedule String
Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
invocationConfig InvocationConfig
Optional. If left unset, a default InvocationConfig will be used.
location Changes to this property will trigger replacement. String
project Changes to this property will trigger replacement. String
timeZone String
Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is UTC.
releaseConfig This property is required. string
The name of the release config whose release_compilation_result should be executed. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
repositoryId
This property is required.
Changes to this property will trigger replacement.
string
workflowConfigId
This property is required.
Changes to this property will trigger replacement.
string
Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name.
cronSchedule string
Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
invocationConfig InvocationConfig
Optional. If left unset, a default InvocationConfig will be used.
location Changes to this property will trigger replacement. string
project Changes to this property will trigger replacement. string
timeZone string
Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is UTC.
release_config This property is required. str
The name of the release config whose release_compilation_result should be executed. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
repository_id
This property is required.
Changes to this property will trigger replacement.
str
workflow_config_id
This property is required.
Changes to this property will trigger replacement.
str
Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name.
cron_schedule str
Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
invocation_config InvocationConfigArgs
Optional. If left unset, a default InvocationConfig will be used.
location Changes to this property will trigger replacement. str
project Changes to this property will trigger replacement. str
time_zone str
Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is UTC.
releaseConfig This property is required. String
The name of the release config whose release_compilation_result should be executed. Must be in the format projects/*/locations/*/repositories/*/releaseConfigs/*.
repositoryId
This property is required.
Changes to this property will trigger replacement.
String
workflowConfigId
This property is required.
Changes to this property will trigger replacement.
String
Required. The ID to use for the workflow config, which will become the final component of the workflow config's resource name.
cronSchedule String
Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
invocationConfig Property Map
Optional. If left unset, a default InvocationConfig will be used.
location Changes to this property will trigger replacement. String
project Changes to this property will trigger replacement. String
timeZone String
Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is UTC.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
The workflow config's name.
RecentScheduledExecutionRecords List<Pulumi.GoogleNative.Dataform.V1Beta1.Outputs.ScheduledExecutionRecordResponse>
Records of the 10 most recent scheduled execution attempts, ordered in in descending order of execution_time. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The workflow config's name.
RecentScheduledExecutionRecords []ScheduledExecutionRecordResponse
Records of the 10 most recent scheduled execution attempts, ordered in in descending order of execution_time. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
id String
The provider-assigned unique ID for this managed resource.
name String
The workflow config's name.
recentScheduledExecutionRecords List<ScheduledExecutionRecordResponse>
Records of the 10 most recent scheduled execution attempts, ordered in in descending order of execution_time. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
id string
The provider-assigned unique ID for this managed resource.
name string
The workflow config's name.
recentScheduledExecutionRecords ScheduledExecutionRecordResponse[]
Records of the 10 most recent scheduled execution attempts, ordered in in descending order of execution_time. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
id str
The provider-assigned unique ID for this managed resource.
name str
The workflow config's name.
recent_scheduled_execution_records Sequence[ScheduledExecutionRecordResponse]
Records of the 10 most recent scheduled execution attempts, ordered in in descending order of execution_time. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
id String
The provider-assigned unique ID for this managed resource.
name String
The workflow config's name.
recentScheduledExecutionRecords List<Property Map>
Records of the 10 most recent scheduled execution attempts, ordered in in descending order of execution_time. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.

Supporting Types

InvocationConfig
, InvocationConfigArgs

FullyRefreshIncrementalTablesEnabled bool
Optional. When set to true, any incremental tables will be fully refreshed.
IncludedTags List<string>
Optional. The set of tags to include.
IncludedTargets List<Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.Target>
Optional. The set of action identifiers to include.
ServiceAccount string
Optional. The service account to run workflow invocations under.
TransitiveDependenciesIncluded bool
Optional. When set to true, transitive dependencies of included actions will be executed.
TransitiveDependentsIncluded bool
Optional. When set to true, transitive dependents of included actions will be executed.
FullyRefreshIncrementalTablesEnabled bool
Optional. When set to true, any incremental tables will be fully refreshed.
IncludedTags []string
Optional. The set of tags to include.
IncludedTargets []Target
Optional. The set of action identifiers to include.
ServiceAccount string
Optional. The service account to run workflow invocations under.
TransitiveDependenciesIncluded bool
Optional. When set to true, transitive dependencies of included actions will be executed.
TransitiveDependentsIncluded bool
Optional. When set to true, transitive dependents of included actions will be executed.
fullyRefreshIncrementalTablesEnabled Boolean
Optional. When set to true, any incremental tables will be fully refreshed.
includedTags List<String>
Optional. The set of tags to include.
includedTargets List<Target>
Optional. The set of action identifiers to include.
serviceAccount String
Optional. The service account to run workflow invocations under.
transitiveDependenciesIncluded Boolean
Optional. When set to true, transitive dependencies of included actions will be executed.
transitiveDependentsIncluded Boolean
Optional. When set to true, transitive dependents of included actions will be executed.
fullyRefreshIncrementalTablesEnabled boolean
Optional. When set to true, any incremental tables will be fully refreshed.
includedTags string[]
Optional. The set of tags to include.
includedTargets Target[]
Optional. The set of action identifiers to include.
serviceAccount string
Optional. The service account to run workflow invocations under.
transitiveDependenciesIncluded boolean
Optional. When set to true, transitive dependencies of included actions will be executed.
transitiveDependentsIncluded boolean
Optional. When set to true, transitive dependents of included actions will be executed.
fully_refresh_incremental_tables_enabled bool
Optional. When set to true, any incremental tables will be fully refreshed.
included_tags Sequence[str]
Optional. The set of tags to include.
included_targets Sequence[Target]
Optional. The set of action identifiers to include.
service_account str
Optional. The service account to run workflow invocations under.
transitive_dependencies_included bool
Optional. When set to true, transitive dependencies of included actions will be executed.
transitive_dependents_included bool
Optional. When set to true, transitive dependents of included actions will be executed.
fullyRefreshIncrementalTablesEnabled Boolean
Optional. When set to true, any incremental tables will be fully refreshed.
includedTags List<String>
Optional. The set of tags to include.
includedTargets List<Property Map>
Optional. The set of action identifiers to include.
serviceAccount String
Optional. The service account to run workflow invocations under.
transitiveDependenciesIncluded Boolean
Optional. When set to true, transitive dependencies of included actions will be executed.
transitiveDependentsIncluded Boolean
Optional. When set to true, transitive dependents of included actions will be executed.

InvocationConfigResponse
, InvocationConfigResponseArgs

FullyRefreshIncrementalTablesEnabled This property is required. bool
Optional. When set to true, any incremental tables will be fully refreshed.
IncludedTags This property is required. List<string>
Optional. The set of tags to include.
IncludedTargets This property is required. List<Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.TargetResponse>
Optional. The set of action identifiers to include.
ServiceAccount This property is required. string
Optional. The service account to run workflow invocations under.
TransitiveDependenciesIncluded This property is required. bool
Optional. When set to true, transitive dependencies of included actions will be executed.
TransitiveDependentsIncluded This property is required. bool
Optional. When set to true, transitive dependents of included actions will be executed.
FullyRefreshIncrementalTablesEnabled This property is required. bool
Optional. When set to true, any incremental tables will be fully refreshed.
IncludedTags This property is required. []string
Optional. The set of tags to include.
IncludedTargets This property is required. []TargetResponse
Optional. The set of action identifiers to include.
ServiceAccount This property is required. string
Optional. The service account to run workflow invocations under.
TransitiveDependenciesIncluded This property is required. bool
Optional. When set to true, transitive dependencies of included actions will be executed.
TransitiveDependentsIncluded This property is required. bool
Optional. When set to true, transitive dependents of included actions will be executed.
fullyRefreshIncrementalTablesEnabled This property is required. Boolean
Optional. When set to true, any incremental tables will be fully refreshed.
includedTags This property is required. List<String>
Optional. The set of tags to include.
includedTargets This property is required. List<TargetResponse>
Optional. The set of action identifiers to include.
serviceAccount This property is required. String
Optional. The service account to run workflow invocations under.
transitiveDependenciesIncluded This property is required. Boolean
Optional. When set to true, transitive dependencies of included actions will be executed.
transitiveDependentsIncluded This property is required. Boolean
Optional. When set to true, transitive dependents of included actions will be executed.
fullyRefreshIncrementalTablesEnabled This property is required. boolean
Optional. When set to true, any incremental tables will be fully refreshed.
includedTags This property is required. string[]
Optional. The set of tags to include.
includedTargets This property is required. TargetResponse[]
Optional. The set of action identifiers to include.
serviceAccount This property is required. string
Optional. The service account to run workflow invocations under.
transitiveDependenciesIncluded This property is required. boolean
Optional. When set to true, transitive dependencies of included actions will be executed.
transitiveDependentsIncluded This property is required. boolean
Optional. When set to true, transitive dependents of included actions will be executed.
fully_refresh_incremental_tables_enabled This property is required. bool
Optional. When set to true, any incremental tables will be fully refreshed.
included_tags This property is required. Sequence[str]
Optional. The set of tags to include.
included_targets This property is required. Sequence[TargetResponse]
Optional. The set of action identifiers to include.
service_account This property is required. str
Optional. The service account to run workflow invocations under.
transitive_dependencies_included This property is required. bool
Optional. When set to true, transitive dependencies of included actions will be executed.
transitive_dependents_included This property is required. bool
Optional. When set to true, transitive dependents of included actions will be executed.
fullyRefreshIncrementalTablesEnabled This property is required. Boolean
Optional. When set to true, any incremental tables will be fully refreshed.
includedTags This property is required. List<String>
Optional. The set of tags to include.
includedTargets This property is required. List<Property Map>
Optional. The set of action identifiers to include.
serviceAccount This property is required. String
Optional. The service account to run workflow invocations under.
transitiveDependenciesIncluded This property is required. Boolean
Optional. When set to true, transitive dependencies of included actions will be executed.
transitiveDependentsIncluded This property is required. Boolean
Optional. When set to true, transitive dependents of included actions will be executed.

ScheduledExecutionRecordResponse
, ScheduledExecutionRecordResponseArgs

ErrorStatus This property is required. Pulumi.GoogleNative.Dataform.V1Beta1.Inputs.StatusResponse
The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
ExecutionTime This property is required. string
The timestamp of this execution attempt.
WorkflowInvocation This property is required. string
The name of the created workflow invocation, if one was successfully created. Must be in the format projects/*/locations/*/repositories/*/workflowInvocations/*.
ErrorStatus This property is required. StatusResponse
The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
ExecutionTime This property is required. string
The timestamp of this execution attempt.
WorkflowInvocation This property is required. string
The name of the created workflow invocation, if one was successfully created. Must be in the format projects/*/locations/*/repositories/*/workflowInvocations/*.
errorStatus This property is required. StatusResponse
The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
executionTime This property is required. String
The timestamp of this execution attempt.
workflowInvocation This property is required. String
The name of the created workflow invocation, if one was successfully created. Must be in the format projects/*/locations/*/repositories/*/workflowInvocations/*.
errorStatus This property is required. StatusResponse
The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
executionTime This property is required. string
The timestamp of this execution attempt.
workflowInvocation This property is required. string
The name of the created workflow invocation, if one was successfully created. Must be in the format projects/*/locations/*/repositories/*/workflowInvocations/*.
error_status This property is required. StatusResponse
The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
execution_time This property is required. str
The timestamp of this execution attempt.
workflow_invocation This property is required. str
The name of the created workflow invocation, if one was successfully created. Must be in the format projects/*/locations/*/repositories/*/workflowInvocations/*.
errorStatus This property is required. Property Map
The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
executionTime This property is required. String
The timestamp of this execution attempt.
workflowInvocation This property is required. String
The name of the created workflow invocation, if one was successfully created. Must be in the format projects/*/locations/*/repositories/*/workflowInvocations/*.

StatusResponse
, StatusResponseArgs

Code This property is required. int
The status code, which should be an enum value of google.rpc.Code.
Details This property is required. List<ImmutableDictionary<string, string>>
A list of messages that carry the error details. There is a common set of message types for APIs to use.
Message This property is required. string
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
Code This property is required. int
The status code, which should be an enum value of google.rpc.Code.
Details This property is required. []map[string]string
A list of messages that carry the error details. There is a common set of message types for APIs to use.
Message This property is required. string
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
code This property is required. Integer
The status code, which should be an enum value of google.rpc.Code.
details This property is required. List<Map<String,String>>
A list of messages that carry the error details. There is a common set of message types for APIs to use.
message This property is required. String
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
code This property is required. number
The status code, which should be an enum value of google.rpc.Code.
details This property is required. {[key: string]: string}[]
A list of messages that carry the error details. There is a common set of message types for APIs to use.
message This property is required. string
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
code This property is required. int
The status code, which should be an enum value of google.rpc.Code.
details This property is required. Sequence[Mapping[str, str]]
A list of messages that carry the error details. There is a common set of message types for APIs to use.
message This property is required. str
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
code This property is required. Number
The status code, which should be an enum value of google.rpc.Code.
details This property is required. List<Map<String>>
A list of messages that carry the error details. There is a common set of message types for APIs to use.
message This property is required. String
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.

Target
, TargetArgs

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

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