Sharedflow Deployment Args
data class SharedflowDeploymentArgs(val environment: Output<String>? = null, val orgId: Output<String>? = null, val revision: Output<String>? = null, val serviceAccount: Output<String>? = null, val sharedflowId: Output<String>? = null) : ConvertibleToJava<SharedflowDeploymentArgs>
Deploys a revision of a sharedflow. To get more information about SharedflowDeployment, see:
How-to Guides
Import
SharedflowDeployment can be imported using any of these accepted formats* organizations/{{org_id}}/environments/{{environment}}/sharedflows/{{sharedflow_id}}/revisions/{{revision}}/deployments/{{name}} * {{org_id}}/{{environment}}/{{sharedflow_id}}/{{revision}}/{{name}} In Terraform v1.5.0 and later, use an import block to import SharedflowDeployment using one of the formats above. For exampletf import { id = "organizations/{{org_id}}/environments/{{environment}}/sharedflows/{{sharedflow_id}}/revisions/{{revision}}/deployments/{{name}}" to = google_apigee_flowhook.default }
$ pulumi import gcp:apigee/sharedflowDeployment:SharedflowDeployment When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), SharedflowDeployment can be imported using one of the formats above. For exampleContent copied to clipboard
$ pulumi import gcp:apigee/sharedflowDeployment:SharedflowDeployment default organizations/{{org_id}}/environments/{{environment}}/sharedflows/{{sharedflow_id}}/revisions/{{revision}}/deployments/{{name}}Content copied to clipboard
$ pulumi import gcp:apigee/sharedflowDeployment:SharedflowDeployment default {{org_id}}/{{environment}}/{{sharedflow_id}}/{{revision}}/{{name}}Content copied to clipboard