Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.deploymentmanager/v2beta.Deployment
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a deployment and all of the resources described by the deployment manifest.
Create Deployment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Deployment(name: string, args?: DeploymentArgs, opts?: CustomResourceOptions);
@overload
def Deployment(resource_name: str,
args: Optional[DeploymentArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Deployment(resource_name: str,
opts: Optional[ResourceOptions] = None,
create_policy: Optional[str] = None,
description: Optional[str] = None,
id: Optional[str] = None,
labels: Optional[Sequence[DeploymentLabelEntryArgs]] = None,
name: Optional[str] = None,
preview: Optional[bool] = None,
project: Optional[str] = None,
target: Optional[TargetConfigurationArgs] = None)
func NewDeployment(ctx *Context, name string, args *DeploymentArgs, opts ...ResourceOption) (*Deployment, error)
public Deployment(string name, DeploymentArgs? args = null, CustomResourceOptions? opts = null)
public Deployment(String name, DeploymentArgs args)
public Deployment(String name, DeploymentArgs args, CustomResourceOptions options)
type: google-native:deploymentmanager/v2beta:Deployment
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 DeploymentArgs
- 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 DeploymentArgs
- 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 DeploymentArgs
- 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 DeploymentArgs
- 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. DeploymentArgs - 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 exampledeploymentResourceResourceFromDeploymentmanagerv2beta = new GoogleNative.DeploymentManager.V2Beta.Deployment("exampledeploymentResourceResourceFromDeploymentmanagerv2beta", new()
{
CreatePolicy = "string",
Description = "string",
Id = "string",
Labels = new[]
{
new GoogleNative.DeploymentManager.V2Beta.Inputs.DeploymentLabelEntryArgs
{
Key = "string",
Value = "string",
},
},
Name = "string",
Preview = false,
Project = "string",
Target = new GoogleNative.DeploymentManager.V2Beta.Inputs.TargetConfigurationArgs
{
Config = new GoogleNative.DeploymentManager.V2Beta.Inputs.ConfigFileArgs
{
Content = "string",
},
Imports = new[]
{
new GoogleNative.DeploymentManager.V2Beta.Inputs.ImportFileArgs
{
Content = "string",
Name = "string",
},
},
},
});
example, err := deploymentmanagerv2beta.NewDeployment(ctx, "exampledeploymentResourceResourceFromDeploymentmanagerv2beta", &deploymentmanagerv2beta.DeploymentArgs{
CreatePolicy: pulumi.String("string"),
Description: pulumi.String("string"),
Id: pulumi.String("string"),
Labels: deploymentmanager.DeploymentLabelEntryArray{
&deploymentmanager.DeploymentLabelEntryArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Preview: pulumi.Bool(false),
Project: pulumi.String("string"),
Target: &deploymentmanager.TargetConfigurationArgs{
Config: &deploymentmanager.ConfigFileArgs{
Content: pulumi.String("string"),
},
Imports: deploymentmanager.ImportFileArray{
&deploymentmanager.ImportFileArgs{
Content: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
},
})
var exampledeploymentResourceResourceFromDeploymentmanagerv2beta = new Deployment("exampledeploymentResourceResourceFromDeploymentmanagerv2beta", DeploymentArgs.builder()
.createPolicy("string")
.description("string")
.id("string")
.labels(DeploymentLabelEntryArgs.builder()
.key("string")
.value("string")
.build())
.name("string")
.preview(false)
.project("string")
.target(TargetConfigurationArgs.builder()
.config(ConfigFileArgs.builder()
.content("string")
.build())
.imports(ImportFileArgs.builder()
.content("string")
.name("string")
.build())
.build())
.build());
exampledeployment_resource_resource_from_deploymentmanagerv2beta = google_native.deploymentmanager.v2beta.Deployment("exampledeploymentResourceResourceFromDeploymentmanagerv2beta",
create_policy="string",
description="string",
id="string",
labels=[{
"key": "string",
"value": "string",
}],
name="string",
preview=False,
project="string",
target={
"config": {
"content": "string",
},
"imports": [{
"content": "string",
"name": "string",
}],
})
const exampledeploymentResourceResourceFromDeploymentmanagerv2beta = new google_native.deploymentmanager.v2beta.Deployment("exampledeploymentResourceResourceFromDeploymentmanagerv2beta", {
createPolicy: "string",
description: "string",
id: "string",
labels: [{
key: "string",
value: "string",
}],
name: "string",
preview: false,
project: "string",
target: {
config: {
content: "string",
},
imports: [{
content: "string",
name: "string",
}],
},
});
type: google-native:deploymentmanager/v2beta:Deployment
properties:
createPolicy: string
description: string
id: string
labels:
- key: string
value: string
name: string
preview: false
project: string
target:
config:
content: string
imports:
- content: string
name: string
Deployment 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 Deployment resource accepts the following input properties:
- Create
Policy string - Sets the policy to use for creating new resources.
- Description string
- An optional user-provided description of the deployment.
- Id string
- Labels
List<Pulumi.
Google Native. Deployment Manager. V2Beta. Inputs. Deployment Label Entry> - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - Name string
- Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - Preview bool
- If set to true, creates a deployment and creates "shell" resources but does not actually instantiate these resources. This allows you to preview what your deployment looks like. After previewing a deployment, you can deploy your resources by making a request with the
update()
method or you can use thecancelPreview()
method to cancel the preview altogether. Note that the deployment will still exist after you cancel the preview and you must separately delete this deployment if you want to remove it. - Project
Changes to this property will trigger replacement.
- Target
Pulumi.
Google Native. Deployment Manager. V2Beta. Inputs. Target Configuration - [Input Only] The parameters that define your deployment, including the deployment configuration and relevant templates.
- Create
Policy string - Sets the policy to use for creating new resources.
- Description string
- An optional user-provided description of the deployment.
- Id string
- Labels
[]Deployment
Label Entry Args - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - Name string
- Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - Preview bool
- If set to true, creates a deployment and creates "shell" resources but does not actually instantiate these resources. This allows you to preview what your deployment looks like. After previewing a deployment, you can deploy your resources by making a request with the
update()
method or you can use thecancelPreview()
method to cancel the preview altogether. Note that the deployment will still exist after you cancel the preview and you must separately delete this deployment if you want to remove it. - Project
Changes to this property will trigger replacement.
- Target
Target
Configuration Args - [Input Only] The parameters that define your deployment, including the deployment configuration and relevant templates.
- create
Policy String - Sets the policy to use for creating new resources.
- description String
- An optional user-provided description of the deployment.
- id String
- labels
List<Deployment
Label Entry> - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - name String
- Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - preview Boolean
- If set to true, creates a deployment and creates "shell" resources but does not actually instantiate these resources. This allows you to preview what your deployment looks like. After previewing a deployment, you can deploy your resources by making a request with the
update()
method or you can use thecancelPreview()
method to cancel the preview altogether. Note that the deployment will still exist after you cancel the preview and you must separately delete this deployment if you want to remove it. - project
Changes to this property will trigger replacement.
- target
Target
Configuration - [Input Only] The parameters that define your deployment, including the deployment configuration and relevant templates.
- create
Policy string - Sets the policy to use for creating new resources.
- description string
- An optional user-provided description of the deployment.
- id string
- labels
Deployment
Label Entry[] - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - name string
- Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - preview boolean
- If set to true, creates a deployment and creates "shell" resources but does not actually instantiate these resources. This allows you to preview what your deployment looks like. After previewing a deployment, you can deploy your resources by making a request with the
update()
method or you can use thecancelPreview()
method to cancel the preview altogether. Note that the deployment will still exist after you cancel the preview and you must separately delete this deployment if you want to remove it. - project
Changes to this property will trigger replacement.
- target
Target
Configuration - [Input Only] The parameters that define your deployment, including the deployment configuration and relevant templates.
- create_
policy str - Sets the policy to use for creating new resources.
- description str
- An optional user-provided description of the deployment.
- id str
- labels
Sequence[Deployment
Label Entry Args] - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - name str
- Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - preview bool
- If set to true, creates a deployment and creates "shell" resources but does not actually instantiate these resources. This allows you to preview what your deployment looks like. After previewing a deployment, you can deploy your resources by making a request with the
update()
method or you can use thecancelPreview()
method to cancel the preview altogether. Note that the deployment will still exist after you cancel the preview and you must separately delete this deployment if you want to remove it. - project
Changes to this property will trigger replacement.
- target
Target
Configuration Args - [Input Only] The parameters that define your deployment, including the deployment configuration and relevant templates.
- create
Policy String - Sets the policy to use for creating new resources.
- description String
- An optional user-provided description of the deployment.
- id String
- labels List<Property Map>
- Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - name String
- Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - preview Boolean
- If set to true, creates a deployment and creates "shell" resources but does not actually instantiate these resources. This allows you to preview what your deployment looks like. After previewing a deployment, you can deploy your resources by making a request with the
update()
method or you can use thecancelPreview()
method to cancel the preview altogether. Note that the deployment will still exist after you cancel the preview and you must separately delete this deployment if you want to remove it. - project
Changes to this property will trigger replacement.
- target Property Map
- [Input Only] The parameters that define your deployment, including the deployment configuration and relevant templates.
Outputs
All input properties are implicitly available as output properties. Additionally, the Deployment resource produces the following output properties:
- Fingerprint string
- Provides a fingerprint to use in requests to modify a deployment, such as
update()
,stop()
, andcancelPreview()
requests. A fingerprint is a randomly generated value that must be provided withupdate()
,stop()
, andcancelPreview()
requests to perform optimistic locking. This ensures optimistic concurrency so that only one request happens at a time. The fingerprint is initially generated by Deployment Manager and changes after every request to modify data. To get the latest fingerprint value, perform aget()
request to a deployment. - Id string
- The provider-assigned unique ID for this managed resource.
- Insert
Time string - Creation timestamp in RFC3339 text format.
- Manifest string
- URL of the manifest representing the last manifest that was successfully deployed. If no manifest has been successfully deployed, this field will be absent.
- Operation
Pulumi.
Google Native. Deployment Manager. V2Beta. Outputs. Operation Response - The Operation that most recently ran, or is currently running, on this deployment.
- Self
Link string - Server defined URL for the resource.
- Update
Pulumi.
Google Native. Deployment Manager. V2Beta. Outputs. Deployment Update Response - If Deployment Manager is currently updating or previewing an update to this deployment, the updated configuration appears here.
- Update
Time string - Update timestamp in RFC3339 text format.
- Fingerprint string
- Provides a fingerprint to use in requests to modify a deployment, such as
update()
,stop()
, andcancelPreview()
requests. A fingerprint is a randomly generated value that must be provided withupdate()
,stop()
, andcancelPreview()
requests to perform optimistic locking. This ensures optimistic concurrency so that only one request happens at a time. The fingerprint is initially generated by Deployment Manager and changes after every request to modify data. To get the latest fingerprint value, perform aget()
request to a deployment. - Id string
- The provider-assigned unique ID for this managed resource.
- Insert
Time string - Creation timestamp in RFC3339 text format.
- Manifest string
- URL of the manifest representing the last manifest that was successfully deployed. If no manifest has been successfully deployed, this field will be absent.
- Operation
Operation
Response - The Operation that most recently ran, or is currently running, on this deployment.
- Self
Link string - Server defined URL for the resource.
- Update
Deployment
Update Response - If Deployment Manager is currently updating or previewing an update to this deployment, the updated configuration appears here.
- Update
Time string - Update timestamp in RFC3339 text format.
- fingerprint String
- Provides a fingerprint to use in requests to modify a deployment, such as
update()
,stop()
, andcancelPreview()
requests. A fingerprint is a randomly generated value that must be provided withupdate()
,stop()
, andcancelPreview()
requests to perform optimistic locking. This ensures optimistic concurrency so that only one request happens at a time. The fingerprint is initially generated by Deployment Manager and changes after every request to modify data. To get the latest fingerprint value, perform aget()
request to a deployment. - id String
- The provider-assigned unique ID for this managed resource.
- insert
Time String - Creation timestamp in RFC3339 text format.
- manifest String
- URL of the manifest representing the last manifest that was successfully deployed. If no manifest has been successfully deployed, this field will be absent.
- operation
Operation
Response - The Operation that most recently ran, or is currently running, on this deployment.
- self
Link String - Server defined URL for the resource.
- update
Deployment
Update Response - If Deployment Manager is currently updating or previewing an update to this deployment, the updated configuration appears here.
- update
Time String - Update timestamp in RFC3339 text format.
- fingerprint string
- Provides a fingerprint to use in requests to modify a deployment, such as
update()
,stop()
, andcancelPreview()
requests. A fingerprint is a randomly generated value that must be provided withupdate()
,stop()
, andcancelPreview()
requests to perform optimistic locking. This ensures optimistic concurrency so that only one request happens at a time. The fingerprint is initially generated by Deployment Manager and changes after every request to modify data. To get the latest fingerprint value, perform aget()
request to a deployment. - id string
- The provider-assigned unique ID for this managed resource.
- insert
Time string - Creation timestamp in RFC3339 text format.
- manifest string
- URL of the manifest representing the last manifest that was successfully deployed. If no manifest has been successfully deployed, this field will be absent.
- operation
Operation
Response - The Operation that most recently ran, or is currently running, on this deployment.
- self
Link string - Server defined URL for the resource.
- update
Deployment
Update Response - If Deployment Manager is currently updating or previewing an update to this deployment, the updated configuration appears here.
- update
Time string - Update timestamp in RFC3339 text format.
- fingerprint str
- Provides a fingerprint to use in requests to modify a deployment, such as
update()
,stop()
, andcancelPreview()
requests. A fingerprint is a randomly generated value that must be provided withupdate()
,stop()
, andcancelPreview()
requests to perform optimistic locking. This ensures optimistic concurrency so that only one request happens at a time. The fingerprint is initially generated by Deployment Manager and changes after every request to modify data. To get the latest fingerprint value, perform aget()
request to a deployment. - id str
- The provider-assigned unique ID for this managed resource.
- insert_
time str - Creation timestamp in RFC3339 text format.
- manifest str
- URL of the manifest representing the last manifest that was successfully deployed. If no manifest has been successfully deployed, this field will be absent.
- operation
Operation
Response - The Operation that most recently ran, or is currently running, on this deployment.
- self_
link str - Server defined URL for the resource.
- update
Deployment
Update Response - If Deployment Manager is currently updating or previewing an update to this deployment, the updated configuration appears here.
- update_
time str - Update timestamp in RFC3339 text format.
- fingerprint String
- Provides a fingerprint to use in requests to modify a deployment, such as
update()
,stop()
, andcancelPreview()
requests. A fingerprint is a randomly generated value that must be provided withupdate()
,stop()
, andcancelPreview()
requests to perform optimistic locking. This ensures optimistic concurrency so that only one request happens at a time. The fingerprint is initially generated by Deployment Manager and changes after every request to modify data. To get the latest fingerprint value, perform aget()
request to a deployment. - id String
- The provider-assigned unique ID for this managed resource.
- insert
Time String - Creation timestamp in RFC3339 text format.
- manifest String
- URL of the manifest representing the last manifest that was successfully deployed. If no manifest has been successfully deployed, this field will be absent.
- operation Property Map
- The Operation that most recently ran, or is currently running, on this deployment.
- self
Link String - Server defined URL for the resource.
- update Property Map
- If Deployment Manager is currently updating or previewing an update to this deployment, the updated configuration appears here.
- update
Time String - Update timestamp in RFC3339 text format.
Supporting Types
ConfigFile, ConfigFileArgs
- Content string
- The contents of the file.
- Content string
- The contents of the file.
- content String
- The contents of the file.
- content string
- The contents of the file.
- content str
- The contents of the file.
- content String
- The contents of the file.
ConfigFileResponse, ConfigFileResponseArgs
- Content
This property is required. string - The contents of the file.
- Content
This property is required. string - The contents of the file.
- content
This property is required. String - The contents of the file.
- content
This property is required. string - The contents of the file.
- content
This property is required. str - The contents of the file.
- content
This property is required. String - The contents of the file.
DeploymentLabelEntry, DeploymentLabelEntryArgs
DeploymentLabelEntryResponse, DeploymentLabelEntryResponseArgs
DeploymentUpdateLabelEntryResponse, DeploymentUpdateLabelEntryResponseArgs
DeploymentUpdateResponse, DeploymentUpdateResponseArgs
- Description
This property is required. string - An optional user-provided description of the deployment after the current update has been applied.
- Labels
This property is required. List<Pulumi.Google Native. Deployment Manager. V2Beta. Inputs. Deployment Update Label Entry Response> - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - Manifest
This property is required. string - URL of the manifest representing the update configuration of this deployment.
- Description
This property is required. string - An optional user-provided description of the deployment after the current update has been applied.
- Labels
This property is required. []DeploymentUpdate Label Entry Response - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - Manifest
This property is required. string - URL of the manifest representing the update configuration of this deployment.
- description
This property is required. String - An optional user-provided description of the deployment after the current update has been applied.
- labels
This property is required. List<DeploymentUpdate Label Entry Response> - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - manifest
This property is required. String - URL of the manifest representing the update configuration of this deployment.
- description
This property is required. string - An optional user-provided description of the deployment after the current update has been applied.
- labels
This property is required. DeploymentUpdate Label Entry Response[] - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - manifest
This property is required. string - URL of the manifest representing the update configuration of this deployment.
- description
This property is required. str - An optional user-provided description of the deployment after the current update has been applied.
- labels
This property is required. Sequence[DeploymentUpdate Label Entry Response] - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - manifest
This property is required. str - URL of the manifest representing the update configuration of this deployment.
- description
This property is required. String - An optional user-provided description of the deployment after the current update has been applied.
- labels
This property is required. List<Property Map> - Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression:
[a-z]([-a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and must conform to the regular expression([a-z]([-a-z0-9]*[a-z0-9])?)?
. - manifest
This property is required. String - URL of the manifest representing the update configuration of this deployment.
ImportFile, ImportFileArgs
ImportFileResponse, ImportFileResponseArgs
InstancesBulkInsertOperationMetadataResponse, InstancesBulkInsertOperationMetadataResponseArgs
- Per
Location Status This property is required. Dictionary<string, string> - Status information per location (location name is key). Example key: zones/us-central1-a
- Per
Location Status This property is required. map[string]string - Status information per location (location name is key). Example key: zones/us-central1-a
- per
Location Status This property is required. Map<String,String> - Status information per location (location name is key). Example key: zones/us-central1-a
- per
Location Status This property is required. {[key: string]: string} - Status information per location (location name is key). Example key: zones/us-central1-a
- per_
location_ status This property is required. Mapping[str, str] - Status information per location (location name is key). Example key: zones/us-central1-a
- per
Location Status This property is required. Map<String> - Status information per location (location name is key). Example key: zones/us-central1-a
OperationErrorErrorsItemResponse, OperationErrorErrorsItemResponseArgs
OperationErrorResponse, OperationErrorResponseArgs
- Errors
This property is required. List<Pulumi.Google Native. Deployment Manager. V2Beta. Inputs. Operation Error Errors Item Response> - The array of errors encountered while processing this operation.
- Errors
This property is required. []OperationError Errors Item Response - The array of errors encountered while processing this operation.
- errors
This property is required. List<OperationError Errors Item Response> - The array of errors encountered while processing this operation.
- errors
This property is required. OperationError Errors Item Response[] - The array of errors encountered while processing this operation.
- errors
This property is required. Sequence[OperationError Errors Item Response] - The array of errors encountered while processing this operation.
- errors
This property is required. List<Property Map> - The array of errors encountered while processing this operation.
OperationResponse, OperationResponseArgs
- Client
Operation Id This property is required. string - The value of
requestId
if you provided it in the request. Not present otherwise. - Creation
Timestamp This property is required. string - [Deprecated] This field is deprecated.
- Description
This property is required. string - A textual description of the operation, which is set when the operation is created.
- End
Time This property is required. string - The time that this operation was completed. This value is in RFC3339 text format.
- Error
This property is required. Pulumi.Google Native. Deployment Manager. V2Beta. Inputs. Operation Error Response - If errors are generated during processing of the operation, this field will be populated.
- Http
Error Message This property is required. string - If the operation fails, this field contains the HTTP error message that was returned, such as
NOT FOUND
. - Http
Error Status Code This property is required. int - If the operation fails, this field contains the HTTP error status code that was returned. For example, a
404
means the resource was not found. - Insert
Time This property is required. string - The time that this operation was requested. This value is in RFC3339 text format.
- Instances
Bulk Insert Operation Metadata This property is required. Pulumi.Google Native. Deployment Manager. V2Beta. Inputs. Instances Bulk Insert Operation Metadata Response - Kind
This property is required. string - Type of the resource. Always
compute#operation
for Operation resources. - Name
This property is required. string - Name of the operation.
- Operation
Group Id This property is required. string - An ID that represents a group of operations, such as when a group of operations results from a
bulkInsert
API request. - Operation
Type This property is required. string - The type of operation, such as
insert
,update
, ordelete
, and so on. - Progress
This property is required. int - An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses.
- Region
This property is required. string - The URL of the region where the operation resides. Only applicable when performing regional operations.
- Self
Link This property is required. string - Server-defined URL for the resource.
- Set
Common Instance Metadata Operation Metadata This property is required. Pulumi.Google Native. Deployment Manager. V2Beta. Inputs. Set Common Instance Metadata Operation Metadata Response - If the operation is for projects.setCommonInstanceMetadata, this field will contain information on all underlying zonal actions and their state.
- Start
Time This property is required. string - The time that this operation was started by the server. This value is in RFC3339 text format.
- Status
This property is required. string - The status of the operation, which can be one of the following:
PENDING
,RUNNING
, orDONE
. - Status
Message This property is required. string - An optional textual description of the current status of the operation.
- Target
Id This property is required. string - The unique target ID, which identifies a specific incarnation of the target resource.
- Target
Link This property is required. string - The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the persistent disk that the snapshot was created from.
- User
This property is required. string - User who requested the operation, for example:
user@example.com
oralice_smith_identifier (global/workforcePools/example-com-us-employees)
. - Warnings
This property is required. List<Pulumi.Google Native. Deployment Manager. V2Beta. Inputs. Operation Warnings Item Response> - If warning messages are generated during processing of the operation, this field will be populated.
- Zone
This property is required. string - The URL of the zone where the operation resides. Only applicable when performing per-zone operations.
- Client
Operation Id This property is required. string - The value of
requestId
if you provided it in the request. Not present otherwise. - Creation
Timestamp This property is required. string - [Deprecated] This field is deprecated.
- Description
This property is required. string - A textual description of the operation, which is set when the operation is created.
- End
Time This property is required. string - The time that this operation was completed. This value is in RFC3339 text format.
- Error
This property is required. OperationError Response - If errors are generated during processing of the operation, this field will be populated.
- Http
Error Message This property is required. string - If the operation fails, this field contains the HTTP error message that was returned, such as
NOT FOUND
. - Http
Error Status Code This property is required. int - If the operation fails, this field contains the HTTP error status code that was returned. For example, a
404
means the resource was not found. - Insert
Time This property is required. string - The time that this operation was requested. This value is in RFC3339 text format.
- Instances
Bulk Insert Operation Metadata This property is required. InstancesBulk Insert Operation Metadata Response - Kind
This property is required. string - Type of the resource. Always
compute#operation
for Operation resources. - Name
This property is required. string - Name of the operation.
- Operation
Group Id This property is required. string - An ID that represents a group of operations, such as when a group of operations results from a
bulkInsert
API request. - Operation
Type This property is required. string - The type of operation, such as
insert
,update
, ordelete
, and so on. - Progress
This property is required. int - An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses.
- Region
This property is required. string - The URL of the region where the operation resides. Only applicable when performing regional operations.
- Self
Link This property is required. string - Server-defined URL for the resource.
- Set
Common Instance Metadata Operation Metadata This property is required. SetCommon Instance Metadata Operation Metadata Response - If the operation is for projects.setCommonInstanceMetadata, this field will contain information on all underlying zonal actions and their state.
- Start
Time This property is required. string - The time that this operation was started by the server. This value is in RFC3339 text format.
- Status
This property is required. string - The status of the operation, which can be one of the following:
PENDING
,RUNNING
, orDONE
. - Status
Message This property is required. string - An optional textual description of the current status of the operation.
- Target
Id This property is required. string - The unique target ID, which identifies a specific incarnation of the target resource.
- Target
Link This property is required. string - The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the persistent disk that the snapshot was created from.
- User
This property is required. string - User who requested the operation, for example:
user@example.com
oralice_smith_identifier (global/workforcePools/example-com-us-employees)
. - Warnings
This property is required. []OperationWarnings Item Response - If warning messages are generated during processing of the operation, this field will be populated.
- Zone
This property is required. string - The URL of the zone where the operation resides. Only applicable when performing per-zone operations.
- client
Operation Id This property is required. String - The value of
requestId
if you provided it in the request. Not present otherwise. - creation
Timestamp This property is required. String - [Deprecated] This field is deprecated.
- description
This property is required. String - A textual description of the operation, which is set when the operation is created.
- end
Time This property is required. String - The time that this operation was completed. This value is in RFC3339 text format.
- error
This property is required. OperationError Response - If errors are generated during processing of the operation, this field will be populated.
- http
Error Message This property is required. String - If the operation fails, this field contains the HTTP error message that was returned, such as
NOT FOUND
. - http
Error Status Code This property is required. Integer - If the operation fails, this field contains the HTTP error status code that was returned. For example, a
404
means the resource was not found. - insert
Time This property is required. String - The time that this operation was requested. This value is in RFC3339 text format.
- instances
Bulk Insert Operation Metadata This property is required. InstancesBulk Insert Operation Metadata Response - kind
This property is required. String - Type of the resource. Always
compute#operation
for Operation resources. - name
This property is required. String - Name of the operation.
- operation
Group Id This property is required. String - An ID that represents a group of operations, such as when a group of operations results from a
bulkInsert
API request. - operation
Type This property is required. String - The type of operation, such as
insert
,update
, ordelete
, and so on. - progress
This property is required. Integer - An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses.
- region
This property is required. String - The URL of the region where the operation resides. Only applicable when performing regional operations.
- self
Link This property is required. String - Server-defined URL for the resource.
- set
Common Instance Metadata Operation Metadata This property is required. SetCommon Instance Metadata Operation Metadata Response - If the operation is for projects.setCommonInstanceMetadata, this field will contain information on all underlying zonal actions and their state.
- start
Time This property is required. String - The time that this operation was started by the server. This value is in RFC3339 text format.
- status
This property is required. String - The status of the operation, which can be one of the following:
PENDING
,RUNNING
, orDONE
. - status
Message This property is required. String - An optional textual description of the current status of the operation.
- target
Id This property is required. String - The unique target ID, which identifies a specific incarnation of the target resource.
- target
Link This property is required. String - The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the persistent disk that the snapshot was created from.
- user
This property is required. String - User who requested the operation, for example:
user@example.com
oralice_smith_identifier (global/workforcePools/example-com-us-employees)
. - warnings
This property is required. List<OperationWarnings Item Response> - If warning messages are generated during processing of the operation, this field will be populated.
- zone
This property is required. String - The URL of the zone where the operation resides. Only applicable when performing per-zone operations.
- client
Operation Id This property is required. string - The value of
requestId
if you provided it in the request. Not present otherwise. - creation
Timestamp This property is required. string - [Deprecated] This field is deprecated.
- description
This property is required. string - A textual description of the operation, which is set when the operation is created.
- end
Time This property is required. string - The time that this operation was completed. This value is in RFC3339 text format.
- error
This property is required. OperationError Response - If errors are generated during processing of the operation, this field will be populated.
- http
Error Message This property is required. string - If the operation fails, this field contains the HTTP error message that was returned, such as
NOT FOUND
. - http
Error Status Code This property is required. number - If the operation fails, this field contains the HTTP error status code that was returned. For example, a
404
means the resource was not found. - insert
Time This property is required. string - The time that this operation was requested. This value is in RFC3339 text format.
- instances
Bulk Insert Operation Metadata This property is required. InstancesBulk Insert Operation Metadata Response - kind
This property is required. string - Type of the resource. Always
compute#operation
for Operation resources. - name
This property is required. string - Name of the operation.
- operation
Group Id This property is required. string - An ID that represents a group of operations, such as when a group of operations results from a
bulkInsert
API request. - operation
Type This property is required. string - The type of operation, such as
insert
,update
, ordelete
, and so on. - progress
This property is required. number - An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses.
- region
This property is required. string - The URL of the region where the operation resides. Only applicable when performing regional operations.
- self
Link This property is required. string - Server-defined URL for the resource.
- set
Common Instance Metadata Operation Metadata This property is required. SetCommon Instance Metadata Operation Metadata Response - If the operation is for projects.setCommonInstanceMetadata, this field will contain information on all underlying zonal actions and their state.
- start
Time This property is required. string - The time that this operation was started by the server. This value is in RFC3339 text format.
- status
This property is required. string - The status of the operation, which can be one of the following:
PENDING
,RUNNING
, orDONE
. - status
Message This property is required. string - An optional textual description of the current status of the operation.
- target
Id This property is required. string - The unique target ID, which identifies a specific incarnation of the target resource.
- target
Link This property is required. string - The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the persistent disk that the snapshot was created from.
- user
This property is required. string - User who requested the operation, for example:
user@example.com
oralice_smith_identifier (global/workforcePools/example-com-us-employees)
. - warnings
This property is required. OperationWarnings Item Response[] - If warning messages are generated during processing of the operation, this field will be populated.
- zone
This property is required. string - The URL of the zone where the operation resides. Only applicable when performing per-zone operations.
- client_
operation_ id This property is required. str - The value of
requestId
if you provided it in the request. Not present otherwise. - creation_
timestamp This property is required. str - [Deprecated] This field is deprecated.
- description
This property is required. str - A textual description of the operation, which is set when the operation is created.
- end_
time This property is required. str - The time that this operation was completed. This value is in RFC3339 text format.
- error
This property is required. OperationError Response - If errors are generated during processing of the operation, this field will be populated.
- http_
error_ message This property is required. str - If the operation fails, this field contains the HTTP error message that was returned, such as
NOT FOUND
. - http_
error_ status_ code This property is required. int - If the operation fails, this field contains the HTTP error status code that was returned. For example, a
404
means the resource was not found. - insert_
time This property is required. str - The time that this operation was requested. This value is in RFC3339 text format.
- instances_
bulk_ insert_ operation_ metadata This property is required. InstancesBulk Insert Operation Metadata Response - kind
This property is required. str - Type of the resource. Always
compute#operation
for Operation resources. - name
This property is required. str - Name of the operation.
- operation_
group_ id This property is required. str - An ID that represents a group of operations, such as when a group of operations results from a
bulkInsert
API request. - operation_
type This property is required. str - The type of operation, such as
insert
,update
, ordelete
, and so on. - progress
This property is required. int - An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses.
- region
This property is required. str - The URL of the region where the operation resides. Only applicable when performing regional operations.
- self_
link This property is required. str - Server-defined URL for the resource.
- set_
common_ instance_ metadata_ operation_ metadata This property is required. SetCommon Instance Metadata Operation Metadata Response - If the operation is for projects.setCommonInstanceMetadata, this field will contain information on all underlying zonal actions and their state.
- start_
time This property is required. str - The time that this operation was started by the server. This value is in RFC3339 text format.
- status
This property is required. str - The status of the operation, which can be one of the following:
PENDING
,RUNNING
, orDONE
. - status_
message This property is required. str - An optional textual description of the current status of the operation.
- target_
id This property is required. str - The unique target ID, which identifies a specific incarnation of the target resource.
- target_
link This property is required. str - The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the persistent disk that the snapshot was created from.
- user
This property is required. str - User who requested the operation, for example:
user@example.com
oralice_smith_identifier (global/workforcePools/example-com-us-employees)
. - warnings
This property is required. Sequence[OperationWarnings Item Response] - If warning messages are generated during processing of the operation, this field will be populated.
- zone
This property is required. str - The URL of the zone where the operation resides. Only applicable when performing per-zone operations.
- client
Operation Id This property is required. String - The value of
requestId
if you provided it in the request. Not present otherwise. - creation
Timestamp This property is required. String - [Deprecated] This field is deprecated.
- description
This property is required. String - A textual description of the operation, which is set when the operation is created.
- end
Time This property is required. String - The time that this operation was completed. This value is in RFC3339 text format.
- error
This property is required. Property Map - If errors are generated during processing of the operation, this field will be populated.
- http
Error Message This property is required. String - If the operation fails, this field contains the HTTP error message that was returned, such as
NOT FOUND
. - http
Error Status Code This property is required. Number - If the operation fails, this field contains the HTTP error status code that was returned. For example, a
404
means the resource was not found. - insert
Time This property is required. String - The time that this operation was requested. This value is in RFC3339 text format.
- instances
Bulk Insert Operation Metadata This property is required. Property Map - kind
This property is required. String - Type of the resource. Always
compute#operation
for Operation resources. - name
This property is required. String - Name of the operation.
- operation
Group Id This property is required. String - An ID that represents a group of operations, such as when a group of operations results from a
bulkInsert
API request. - operation
Type This property is required. String - The type of operation, such as
insert
,update
, ordelete
, and so on. - progress
This property is required. Number - An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses.
- region
This property is required. String - The URL of the region where the operation resides. Only applicable when performing regional operations.
- self
Link This property is required. String - Server-defined URL for the resource.
- set
Common Instance Metadata Operation Metadata This property is required. Property Map - If the operation is for projects.setCommonInstanceMetadata, this field will contain information on all underlying zonal actions and their state.
- start
Time This property is required. String - The time that this operation was started by the server. This value is in RFC3339 text format.
- status
This property is required. String - The status of the operation, which can be one of the following:
PENDING
,RUNNING
, orDONE
. - status
Message This property is required. String - An optional textual description of the current status of the operation.
- target
Id This property is required. String - The unique target ID, which identifies a specific incarnation of the target resource.
- target
Link This property is required. String - The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the persistent disk that the snapshot was created from.
- user
This property is required. String - User who requested the operation, for example:
user@example.com
oralice_smith_identifier (global/workforcePools/example-com-us-employees)
. - warnings
This property is required. List<Property Map> - If warning messages are generated during processing of the operation, this field will be populated.
- zone
This property is required. String - The URL of the zone where the operation resides. Only applicable when performing per-zone operations.
OperationWarningsItemDataItemResponse, OperationWarningsItemDataItemResponseArgs
- Key
This property is required. string - A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
- Value
This property is required. string - A warning data value corresponding to the key.
- Key
This property is required. string - A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
- Value
This property is required. string - A warning data value corresponding to the key.
- key
This property is required. String - A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
- value
This property is required. String - A warning data value corresponding to the key.
- key
This property is required. string - A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
- value
This property is required. string - A warning data value corresponding to the key.
- key
This property is required. str - A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
- value
This property is required. str - A warning data value corresponding to the key.
- key
This property is required. String - A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
- value
This property is required. String - A warning data value corresponding to the key.
OperationWarningsItemResponse, OperationWarningsItemResponseArgs
- Code
This property is required. string - A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
- Data
This property is required. List<Pulumi.Google Native. Deployment Manager. V2Beta. Inputs. Operation Warnings Item Data Item Response> - Metadata about this warning in key: value format. For example: "data": [ { "key": "scope", "value": "zones/us-east1-d" }
- Message
This property is required. string - A human-readable description of the warning code.
- Code
This property is required. string - A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
- Data
This property is required. []OperationWarnings Item Data Item Response - Metadata about this warning in key: value format. For example: "data": [ { "key": "scope", "value": "zones/us-east1-d" }
- Message
This property is required. string - A human-readable description of the warning code.
- code
This property is required. String - A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
- data
This property is required. List<OperationWarnings Item Data Item Response> - Metadata about this warning in key: value format. For example: "data": [ { "key": "scope", "value": "zones/us-east1-d" }
- message
This property is required. String - A human-readable description of the warning code.
- code
This property is required. string - A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
- data
This property is required. OperationWarnings Item Data Item Response[] - Metadata about this warning in key: value format. For example: "data": [ { "key": "scope", "value": "zones/us-east1-d" }
- message
This property is required. string - A human-readable description of the warning code.
- code
This property is required. str - A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
- data
This property is required. Sequence[OperationWarnings Item Data Item Response] - Metadata about this warning in key: value format. For example: "data": [ { "key": "scope", "value": "zones/us-east1-d" }
- message
This property is required. str - A human-readable description of the warning code.
- code
This property is required. String - A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
- data
This property is required. List<Property Map> - Metadata about this warning in key: value format. For example: "data": [ { "key": "scope", "value": "zones/us-east1-d" }
- message
This property is required. String - A human-readable description of the warning code.
SetCommonInstanceMetadataOperationMetadataResponse, SetCommonInstanceMetadataOperationMetadataResponseArgs
- Client
Operation Id This property is required. string - The client operation id.
- Per
Location Operations This property is required. Dictionary<string, string> - Status information per location (location name is key). Example key: zones/us-central1-a
- Client
Operation Id This property is required. string - The client operation id.
- Per
Location Operations This property is required. map[string]string - Status information per location (location name is key). Example key: zones/us-central1-a
- client
Operation Id This property is required. String - The client operation id.
- per
Location Operations This property is required. Map<String,String> - Status information per location (location name is key). Example key: zones/us-central1-a
- client
Operation Id This property is required. string - The client operation id.
- per
Location Operations This property is required. {[key: string]: string} - Status information per location (location name is key). Example key: zones/us-central1-a
- client_
operation_ id This property is required. str - The client operation id.
- per_
location_ operations This property is required. Mapping[str, str] - Status information per location (location name is key). Example key: zones/us-central1-a
- client
Operation Id This property is required. String - The client operation id.
- per
Location Operations This property is required. Map<String> - Status information per location (location name is key). Example key: zones/us-central1-a
TargetConfiguration, TargetConfigurationArgs
- Config
Pulumi.
Google Native. Deployment Manager. V2Beta. Inputs. Config File - The configuration to use for this deployment.
- Imports
List<Pulumi.
Google Native. Deployment Manager. V2Beta. Inputs. Import File> - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
- Config
Config
File - The configuration to use for this deployment.
- Imports
[]Import
File - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
- config
Config
File - The configuration to use for this deployment.
- imports
List<Import
File> - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
- config
Config
File - The configuration to use for this deployment.
- imports
Import
File[] - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
- config
Config
File - The configuration to use for this deployment.
- imports
Sequence[Import
File] - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
- config Property Map
- The configuration to use for this deployment.
- imports List<Property Map>
- Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
TargetConfigurationResponse, TargetConfigurationResponseArgs
- Config
This property is required. Pulumi.Google Native. Deployment Manager. V2Beta. Inputs. Config File Response - The configuration to use for this deployment.
- Imports
This property is required. List<Pulumi.Google Native. Deployment Manager. V2Beta. Inputs. Import File Response> - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
- Config
This property is required. ConfigFile Response - The configuration to use for this deployment.
- Imports
This property is required. []ImportFile Response - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
- config
This property is required. ConfigFile Response - The configuration to use for this deployment.
- imports
This property is required. List<ImportFile Response> - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
- config
This property is required. ConfigFile Response - The configuration to use for this deployment.
- imports
This property is required. ImportFile Response[] - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
- config
This property is required. ConfigFile Response - The configuration to use for this deployment.
- imports
This property is required. Sequence[ImportFile Response] - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
- config
This property is required. Property Map - The configuration to use for this deployment.
- imports
This property is required. List<Property Map> - Specifies any files to import for this configuration. This can be used to import templates or other files. For example, you might import a text file in order to use the file in a template.
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.