gcp.apphub.Workload
Explore with Pulumi AI
Workload represents a binary deployment (such as Managed Instance Groups (MIGs), GKE deployments, etc.) that performs the smallest logical subset of business functionality. It registers identified workload to the Application.
Example Usage
Create Workload Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Workload(name: string, args: WorkloadArgs, opts?: CustomResourceOptions);
@overload
def Workload(resource_name: str,
args: WorkloadArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Workload(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
discovered_workload: Optional[str] = None,
location: Optional[str] = None,
workload_id: Optional[str] = None,
attributes: Optional[WorkloadAttributesArgs] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
project: Optional[str] = None)
func NewWorkload(ctx *Context, name string, args WorkloadArgs, opts ...ResourceOption) (*Workload, error)
public Workload(string name, WorkloadArgs args, CustomResourceOptions? opts = null)
public Workload(String name, WorkloadArgs args)
public Workload(String name, WorkloadArgs args, CustomResourceOptions options)
type: gcp:apphub:Workload
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WorkloadArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WorkloadArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WorkloadArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkloadArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkloadArgs
- 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 workloadResource = new Gcp.Apphub.Workload("workloadResource", new()
{
ApplicationId = "string",
DiscoveredWorkload = "string",
Location = "string",
WorkloadId = "string",
Attributes = new Gcp.Apphub.Inputs.WorkloadAttributesArgs
{
BusinessOwners = new[]
{
new Gcp.Apphub.Inputs.WorkloadAttributesBusinessOwnerArgs
{
Email = "string",
DisplayName = "string",
},
},
Criticality = new Gcp.Apphub.Inputs.WorkloadAttributesCriticalityArgs
{
Type = "string",
},
DeveloperOwners = new[]
{
new Gcp.Apphub.Inputs.WorkloadAttributesDeveloperOwnerArgs
{
Email = "string",
DisplayName = "string",
},
},
Environment = new Gcp.Apphub.Inputs.WorkloadAttributesEnvironmentArgs
{
Type = "string",
},
OperatorOwners = new[]
{
new Gcp.Apphub.Inputs.WorkloadAttributesOperatorOwnerArgs
{
Email = "string",
DisplayName = "string",
},
},
},
Description = "string",
DisplayName = "string",
Project = "string",
});
example, err := apphub.NewWorkload(ctx, "workloadResource", &apphub.WorkloadArgs{
ApplicationId: pulumi.String("string"),
DiscoveredWorkload: pulumi.String("string"),
Location: pulumi.String("string"),
WorkloadId: pulumi.String("string"),
Attributes: &apphub.WorkloadAttributesArgs{
BusinessOwners: apphub.WorkloadAttributesBusinessOwnerArray{
&apphub.WorkloadAttributesBusinessOwnerArgs{
Email: pulumi.String("string"),
DisplayName: pulumi.String("string"),
},
},
Criticality: &apphub.WorkloadAttributesCriticalityArgs{
Type: pulumi.String("string"),
},
DeveloperOwners: apphub.WorkloadAttributesDeveloperOwnerArray{
&apphub.WorkloadAttributesDeveloperOwnerArgs{
Email: pulumi.String("string"),
DisplayName: pulumi.String("string"),
},
},
Environment: &apphub.WorkloadAttributesEnvironmentArgs{
Type: pulumi.String("string"),
},
OperatorOwners: apphub.WorkloadAttributesOperatorOwnerArray{
&apphub.WorkloadAttributesOperatorOwnerArgs{
Email: pulumi.String("string"),
DisplayName: pulumi.String("string"),
},
},
},
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Project: pulumi.String("string"),
})
var workloadResource = new Workload("workloadResource", WorkloadArgs.builder()
.applicationId("string")
.discoveredWorkload("string")
.location("string")
.workloadId("string")
.attributes(WorkloadAttributesArgs.builder()
.businessOwners(WorkloadAttributesBusinessOwnerArgs.builder()
.email("string")
.displayName("string")
.build())
.criticality(WorkloadAttributesCriticalityArgs.builder()
.type("string")
.build())
.developerOwners(WorkloadAttributesDeveloperOwnerArgs.builder()
.email("string")
.displayName("string")
.build())
.environment(WorkloadAttributesEnvironmentArgs.builder()
.type("string")
.build())
.operatorOwners(WorkloadAttributesOperatorOwnerArgs.builder()
.email("string")
.displayName("string")
.build())
.build())
.description("string")
.displayName("string")
.project("string")
.build());
workload_resource = gcp.apphub.Workload("workloadResource",
application_id="string",
discovered_workload="string",
location="string",
workload_id="string",
attributes={
"businessOwners": [{
"email": "string",
"displayName": "string",
}],
"criticality": {
"type": "string",
},
"developerOwners": [{
"email": "string",
"displayName": "string",
}],
"environment": {
"type": "string",
},
"operatorOwners": [{
"email": "string",
"displayName": "string",
}],
},
description="string",
display_name="string",
project="string")
const workloadResource = new gcp.apphub.Workload("workloadResource", {
applicationId: "string",
discoveredWorkload: "string",
location: "string",
workloadId: "string",
attributes: {
businessOwners: [{
email: "string",
displayName: "string",
}],
criticality: {
type: "string",
},
developerOwners: [{
email: "string",
displayName: "string",
}],
environment: {
type: "string",
},
operatorOwners: [{
email: "string",
displayName: "string",
}],
},
description: "string",
displayName: "string",
project: "string",
});
type: gcp:apphub:Workload
properties:
applicationId: string
attributes:
businessOwners:
- displayName: string
email: string
criticality:
type: string
developerOwners:
- displayName: string
email: string
environment:
type: string
operatorOwners:
- displayName: string
email: string
description: string
discoveredWorkload: string
displayName: string
location: string
project: string
workloadId: string
Workload Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Workload resource accepts the following input properties:
- Application
Id string - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - Discovered
Workload string - Immutable. The resource name of the original discovered workload.
- Location string
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - Workload
Id string - The Workload identifier.
- Attributes
Workload
Attributes - Consumer provided attributes. Structure is documented below.
- Description string
- User-defined description of a Workload.
- Display
Name string - User-defined name for the Workload.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Application
Id string - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - Discovered
Workload string - Immutable. The resource name of the original discovered workload.
- Location string
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - Workload
Id string - The Workload identifier.
- Attributes
Workload
Attributes Args - Consumer provided attributes. Structure is documented below.
- Description string
- User-defined description of a Workload.
- Display
Name string - User-defined name for the Workload.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- application
Id String - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - discovered
Workload String - Immutable. The resource name of the original discovered workload.
- location String
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - workload
Id String - The Workload identifier.
- attributes
Workload
Attributes - Consumer provided attributes. Structure is documented below.
- description String
- User-defined description of a Workload.
- display
Name String - User-defined name for the Workload.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- application
Id string - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - discovered
Workload string - Immutable. The resource name of the original discovered workload.
- location string
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - workload
Id string - The Workload identifier.
- attributes
Workload
Attributes - Consumer provided attributes. Structure is documented below.
- description string
- User-defined description of a Workload.
- display
Name string - User-defined name for the Workload.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- application_
id str - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - discovered_
workload str - Immutable. The resource name of the original discovered workload.
- location str
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - workload_
id str - The Workload identifier.
- attributes
Workload
Attributes Args - Consumer provided attributes. Structure is documented below.
- description str
- User-defined description of a Workload.
- display_
name str - User-defined name for the Workload.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- application
Id String - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - discovered
Workload String - Immutable. The resource name of the original discovered workload.
- location String
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - workload
Id String - The Workload identifier.
- attributes Property Map
- Consumer provided attributes. Structure is documented below.
- description String
- User-defined description of a Workload.
- display
Name String - User-defined name for the Workload.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the Workload resource produces the following output properties:
- Create
Time string - Output only. Create time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- State string
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- Uid string
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - Update
Time string - Output only. Update time.
- Workload
Properties List<WorkloadWorkload Property> - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- Workload
References List<WorkloadWorkload Reference> - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
- Create
Time string - Output only. Create time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- State string
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- Uid string
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - Update
Time string - Output only. Update time.
- Workload
Properties []WorkloadWorkload Property - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- Workload
References []WorkloadWorkload Reference - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
- create
Time String - Output only. Create time.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- state String
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- uid String
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - update
Time String - Output only. Update time.
- workload
Properties List<WorkloadWorkload Property> - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- workload
References List<WorkloadWorkload Reference> - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
- create
Time string - Output only. Create time.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- state string
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- uid string
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - update
Time string - Output only. Update time.
- workload
Properties WorkloadWorkload Property[] - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- workload
References WorkloadWorkload Reference[] - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
- create_
time str - Output only. Create time.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- state str
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- uid str
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - update_
time str - Output only. Update time.
- workload_
properties Sequence[WorkloadWorkload Property] - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- workload_
references Sequence[WorkloadWorkload Reference] - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
- create
Time String - Output only. Create time.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- state String
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- uid String
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - update
Time String - Output only. Update time.
- workload
Properties List<Property Map> - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- workload
References List<Property Map> - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
Look up Existing Workload Resource
Get an existing Workload resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: WorkloadState, opts?: CustomResourceOptions): Workload
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
attributes: Optional[WorkloadAttributesArgs] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
discovered_workload: Optional[str] = None,
display_name: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
state: Optional[str] = None,
uid: Optional[str] = None,
update_time: Optional[str] = None,
workload_id: Optional[str] = None,
workload_properties: Optional[Sequence[WorkloadWorkloadPropertyArgs]] = None,
workload_references: Optional[Sequence[WorkloadWorkloadReferenceArgs]] = None) -> Workload
func GetWorkload(ctx *Context, name string, id IDInput, state *WorkloadState, opts ...ResourceOption) (*Workload, error)
public static Workload Get(string name, Input<string> id, WorkloadState? state, CustomResourceOptions? opts = null)
public static Workload get(String name, Output<String> id, WorkloadState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Application
Id string - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - Attributes
Workload
Attributes - Consumer provided attributes. Structure is documented below.
- Create
Time string - Output only. Create time.
- Description string
- User-defined description of a Workload.
- Discovered
Workload string - Immutable. The resource name of the original discovered workload.
- Display
Name string - User-defined name for the Workload.
- Location string
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - Name string
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- State string
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- Uid string
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - Update
Time string - Output only. Update time.
- Workload
Id string - The Workload identifier.
- Workload
Properties List<WorkloadWorkload Property> - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- Workload
References List<WorkloadWorkload Reference> - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
- Application
Id string - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - Attributes
Workload
Attributes Args - Consumer provided attributes. Structure is documented below.
- Create
Time string - Output only. Create time.
- Description string
- User-defined description of a Workload.
- Discovered
Workload string - Immutable. The resource name of the original discovered workload.
- Display
Name string - User-defined name for the Workload.
- Location string
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - Name string
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- State string
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- Uid string
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - Update
Time string - Output only. Update time.
- Workload
Id string - The Workload identifier.
- Workload
Properties []WorkloadWorkload Property Args - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- Workload
References []WorkloadWorkload Reference Args - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
- application
Id String - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - attributes
Workload
Attributes - Consumer provided attributes. Structure is documented below.
- create
Time String - Output only. Create time.
- description String
- User-defined description of a Workload.
- discovered
Workload String - Immutable. The resource name of the original discovered workload.
- display
Name String - User-defined name for the Workload.
- location String
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - name String
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- state String
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- uid String
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - update
Time String - Output only. Update time.
- workload
Id String - The Workload identifier.
- workload
Properties List<WorkloadWorkload Property> - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- workload
References List<WorkloadWorkload Reference> - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
- application
Id string - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - attributes
Workload
Attributes - Consumer provided attributes. Structure is documented below.
- create
Time string - Output only. Create time.
- description string
- User-defined description of a Workload.
- discovered
Workload string - Immutable. The resource name of the original discovered workload.
- display
Name string - User-defined name for the Workload.
- location string
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - name string
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- state string
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- uid string
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - update
Time string - Output only. Update time.
- workload
Id string - The Workload identifier.
- workload
Properties WorkloadWorkload Property[] - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- workload
References WorkloadWorkload Reference[] - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
- application_
id str - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - attributes
Workload
Attributes Args - Consumer provided attributes. Structure is documented below.
- create_
time str - Output only. Create time.
- description str
- User-defined description of a Workload.
- discovered_
workload str - Immutable. The resource name of the original discovered workload.
- display_
name str - User-defined name for the Workload.
- location str
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - name str
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- state str
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- uid str
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - update_
time str - Output only. Update time.
- workload_
id str - The Workload identifier.
- workload_
properties Sequence[WorkloadWorkload Property Args] - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- workload_
references Sequence[WorkloadWorkload Reference Args] - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
- application
Id String - Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - attributes Property Map
- Consumer provided attributes. Structure is documented below.
- create
Time String - Output only. Create time.
- description String
- User-defined description of a Workload.
- discovered
Workload String - Immutable. The resource name of the original discovered workload.
- display
Name String - User-defined name for the Workload.
- location String
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - name String
- Identifier. The resource name of the Workload. Format:"projects/{host-project-id}/locations/{location}/applications/{application-id}/workloads/{workload-id}"
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- state String
- Output only. Workload state. Possible values: STATE_UNSPECIFIED CREATING ACTIVE DELETING DETACHED
- uid String
- Output only. A universally unique identifier (UUID) for the
Workload
in the UUID4 format. - update
Time String - Output only. Update time.
- workload
Id String - The Workload identifier.
- workload
Properties List<Property Map> - Properties of an underlying compute resource represented by the Workload. Structure is documented below.
- workload
References List<Property Map> - Reference of an underlying compute resource represented by the Workload. Structure is documented below.
Supporting Types
WorkloadAttributes, WorkloadAttributesArgs
- Business
Owners List<WorkloadAttributes Business Owner> - Business team that ensures user needs are met and value is delivered Structure is documented below.
- Criticality
Workload
Attributes Criticality - Criticality of the Application, Service, or Workload Structure is documented below.
- Developer
Owners List<WorkloadAttributes Developer Owner> - Developer team that owns development and coding. Structure is documented below.
- Environment
Workload
Attributes Environment - Environment of the Application, Service, or Workload Structure is documented below.
- Operator
Owners List<WorkloadAttributes Operator Owner> - Operator team that ensures runtime and operations. Structure is documented below.
- Business
Owners []WorkloadAttributes Business Owner - Business team that ensures user needs are met and value is delivered Structure is documented below.
- Criticality
Workload
Attributes Criticality - Criticality of the Application, Service, or Workload Structure is documented below.
- Developer
Owners []WorkloadAttributes Developer Owner - Developer team that owns development and coding. Structure is documented below.
- Environment
Workload
Attributes Environment - Environment of the Application, Service, or Workload Structure is documented below.
- Operator
Owners []WorkloadAttributes Operator Owner - Operator team that ensures runtime and operations. Structure is documented below.
- business
Owners List<WorkloadAttributes Business Owner> - Business team that ensures user needs are met and value is delivered Structure is documented below.
- criticality
Workload
Attributes Criticality - Criticality of the Application, Service, or Workload Structure is documented below.
- developer
Owners List<WorkloadAttributes Developer Owner> - Developer team that owns development and coding. Structure is documented below.
- environment
Workload
Attributes Environment - Environment of the Application, Service, or Workload Structure is documented below.
- operator
Owners List<WorkloadAttributes Operator Owner> - Operator team that ensures runtime and operations. Structure is documented below.
- business
Owners WorkloadAttributes Business Owner[] - Business team that ensures user needs are met and value is delivered Structure is documented below.
- criticality
Workload
Attributes Criticality - Criticality of the Application, Service, or Workload Structure is documented below.
- developer
Owners WorkloadAttributes Developer Owner[] - Developer team that owns development and coding. Structure is documented below.
- environment
Workload
Attributes Environment - Environment of the Application, Service, or Workload Structure is documented below.
- operator
Owners WorkloadAttributes Operator Owner[] - Operator team that ensures runtime and operations. Structure is documented below.
- business_
owners Sequence[WorkloadAttributes Business Owner] - Business team that ensures user needs are met and value is delivered Structure is documented below.
- criticality
Workload
Attributes Criticality - Criticality of the Application, Service, or Workload Structure is documented below.
- developer_
owners Sequence[WorkloadAttributes Developer Owner] - Developer team that owns development and coding. Structure is documented below.
- environment
Workload
Attributes Environment - Environment of the Application, Service, or Workload Structure is documented below.
- operator_
owners Sequence[WorkloadAttributes Operator Owner] - Operator team that ensures runtime and operations. Structure is documented below.
- business
Owners List<Property Map> - Business team that ensures user needs are met and value is delivered Structure is documented below.
- criticality Property Map
- Criticality of the Application, Service, or Workload Structure is documented below.
- developer
Owners List<Property Map> - Developer team that owns development and coding. Structure is documented below.
- environment Property Map
- Environment of the Application, Service, or Workload Structure is documented below.
- operator
Owners List<Property Map> - Operator team that ensures runtime and operations. Structure is documented below.
WorkloadAttributesBusinessOwner, WorkloadAttributesBusinessOwnerArgs
- Email string
- Email address of the contacts.
- Display
Name string - Contact's name.
- Email string
- Email address of the contacts.
- Display
Name string - Contact's name.
- email String
- Email address of the contacts.
- display
Name String - Contact's name.
- email string
- Email address of the contacts.
- display
Name string - Contact's name.
- email str
- Email address of the contacts.
- display_
name str - Contact's name.
- email String
- Email address of the contacts.
- display
Name String - Contact's name.
WorkloadAttributesCriticality, WorkloadAttributesCriticalityArgs
- Type string
- Criticality type.
Possible values are:
MISSION_CRITICAL
,HIGH
,MEDIUM
,LOW
.
- Type string
- Criticality type.
Possible values are:
MISSION_CRITICAL
,HIGH
,MEDIUM
,LOW
.
- type String
- Criticality type.
Possible values are:
MISSION_CRITICAL
,HIGH
,MEDIUM
,LOW
.
- type string
- Criticality type.
Possible values are:
MISSION_CRITICAL
,HIGH
,MEDIUM
,LOW
.
- type str
- Criticality type.
Possible values are:
MISSION_CRITICAL
,HIGH
,MEDIUM
,LOW
.
- type String
- Criticality type.
Possible values are:
MISSION_CRITICAL
,HIGH
,MEDIUM
,LOW
.
WorkloadAttributesDeveloperOwner, WorkloadAttributesDeveloperOwnerArgs
- Email string
- Email address of the contacts.
- Display
Name string - Contact's name.
- Email string
- Email address of the contacts.
- Display
Name string - Contact's name.
- email String
- Email address of the contacts.
- display
Name String - Contact's name.
- email string
- Email address of the contacts.
- display
Name string - Contact's name.
- email str
- Email address of the contacts.
- display_
name str - Contact's name.
- email String
- Email address of the contacts.
- display
Name String - Contact's name.
WorkloadAttributesEnvironment, WorkloadAttributesEnvironmentArgs
- Type string
- Environment type.
Possible values are:
PRODUCTION
,STAGING
,TEST
,DEVELOPMENT
.
- Type string
- Environment type.
Possible values are:
PRODUCTION
,STAGING
,TEST
,DEVELOPMENT
.
- type String
- Environment type.
Possible values are:
PRODUCTION
,STAGING
,TEST
,DEVELOPMENT
.
- type string
- Environment type.
Possible values are:
PRODUCTION
,STAGING
,TEST
,DEVELOPMENT
.
- type str
- Environment type.
Possible values are:
PRODUCTION
,STAGING
,TEST
,DEVELOPMENT
.
- type String
- Environment type.
Possible values are:
PRODUCTION
,STAGING
,TEST
,DEVELOPMENT
.
WorkloadAttributesOperatorOwner, WorkloadAttributesOperatorOwnerArgs
- Email string
- Email address of the contacts.
- Display
Name string - Contact's name.
- Email string
- Email address of the contacts.
- Display
Name string - Contact's name.
- email String
- Email address of the contacts.
- display
Name String - Contact's name.
- email string
- Email address of the contacts.
- display
Name string - Contact's name.
- email str
- Email address of the contacts.
- display_
name str - Contact's name.
- email String
- Email address of the contacts.
- display
Name String - Contact's name.
WorkloadWorkloadProperty, WorkloadWorkloadPropertyArgs
- Gcp
Project string - (Output) Output only. The service project identifier that the underlying cloud resource resides in. Empty for non cloud resources.
- Location string
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - Zone string
- (Output) Output only. The location that the underlying compute resource resides in if it is zonal (e.g us-west1-a).
- Gcp
Project string - (Output) Output only. The service project identifier that the underlying cloud resource resides in. Empty for non cloud resources.
- Location string
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - Zone string
- (Output) Output only. The location that the underlying compute resource resides in if it is zonal (e.g us-west1-a).
- gcp
Project String - (Output) Output only. The service project identifier that the underlying cloud resource resides in. Empty for non cloud resources.
- location String
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - zone String
- (Output) Output only. The location that the underlying compute resource resides in if it is zonal (e.g us-west1-a).
- gcp
Project string - (Output) Output only. The service project identifier that the underlying cloud resource resides in. Empty for non cloud resources.
- location string
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - zone string
- (Output) Output only. The location that the underlying compute resource resides in if it is zonal (e.g us-west1-a).
- gcp_
project str - (Output) Output only. The service project identifier that the underlying cloud resource resides in. Empty for non cloud resources.
- location str
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - zone str
- (Output) Output only. The location that the underlying compute resource resides in if it is zonal (e.g us-west1-a).
- gcp
Project String - (Output) Output only. The service project identifier that the underlying cloud resource resides in. Empty for non cloud resources.
- location String
- Part of
parent
. Full resource name of a parent Application. Example: projects/{HOST_PROJECT_ID}/locations/{LOCATION}/applications/{APPLICATION_ID} - zone String
- (Output) Output only. The location that the underlying compute resource resides in if it is zonal (e.g us-west1-a).
WorkloadWorkloadReference, WorkloadWorkloadReferenceArgs
- Uri string
- (Output) Output only. The underlying compute resource uri.
- Uri string
- (Output) Output only. The underlying compute resource uri.
- uri String
- (Output) Output only. The underlying compute resource uri.
- uri string
- (Output) Output only. The underlying compute resource uri.
- uri str
- (Output) Output only. The underlying compute resource uri.
- uri String
- (Output) Output only. The underlying compute resource uri.
Import
Workload can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/applications/{{application_id}}/workloads/{{workload_id}}
{{project}}/{{location}}/{{application_id}}/{{workload_id}}
{{location}}/{{application_id}}/{{workload_id}}
When using the pulumi import
command, Workload can be imported using one of the formats above. For example:
$ pulumi import gcp:apphub/workload:Workload default projects/{{project}}/locations/{{location}}/applications/{{application_id}}/workloads/{{workload_id}}
$ pulumi import gcp:apphub/workload:Workload default {{project}}/{{location}}/{{application_id}}/{{workload_id}}
$ pulumi import gcp:apphub/workload:Workload default {{location}}/{{application_id}}/{{workload_id}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.