oci.ContainerEngine.ClusterWorkloadMapping
Explore with Pulumi AI
This resource provides the Cluster Workload Mapping resource in Oracle Cloud Infrastructure Container Engine service.
Create the specified workloadMapping for a cluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testClusterWorkloadMapping = new oci.containerengine.ClusterWorkloadMapping("test_cluster_workload_mapping", {
clusterId: testCluster.id,
mappedCompartmentId: testCompartment.id,
namespace: clusterWorkloadMappingNamespace,
definedTags: {
"Operations.CostCenter": "42",
},
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_cluster_workload_mapping = oci.container_engine.ClusterWorkloadMapping("test_cluster_workload_mapping",
cluster_id=test_cluster["id"],
mapped_compartment_id=test_compartment["id"],
namespace=cluster_workload_mapping_namespace,
defined_tags={
"Operations.CostCenter": "42",
},
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/ContainerEngine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ContainerEngine.NewClusterWorkloadMapping(ctx, "test_cluster_workload_mapping", &ContainerEngine.ClusterWorkloadMappingArgs{
ClusterId: pulumi.Any(testCluster.Id),
MappedCompartmentId: pulumi.Any(testCompartment.Id),
Namespace: pulumi.Any(clusterWorkloadMappingNamespace),
DefinedTags: pulumi.Map{
"Operations.CostCenter": pulumi.Any("42"),
},
FreeformTags: pulumi.Map{
"Department": pulumi.Any("Finance"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testClusterWorkloadMapping = new Oci.ContainerEngine.ClusterWorkloadMapping("test_cluster_workload_mapping", new()
{
ClusterId = testCluster.Id,
MappedCompartmentId = testCompartment.Id,
Namespace = clusterWorkloadMappingNamespace,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ContainerEngine.ClusterWorkloadMapping;
import com.pulumi.oci.ContainerEngine.ClusterWorkloadMappingArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testClusterWorkloadMapping = new ClusterWorkloadMapping("testClusterWorkloadMapping", ClusterWorkloadMappingArgs.builder()
.clusterId(testCluster.id())
.mappedCompartmentId(testCompartment.id())
.namespace(clusterWorkloadMappingNamespace)
.definedTags(Map.of("Operations.CostCenter", "42"))
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testClusterWorkloadMapping:
type: oci:ContainerEngine:ClusterWorkloadMapping
name: test_cluster_workload_mapping
properties:
clusterId: ${testCluster.id}
mappedCompartmentId: ${testCompartment.id}
namespace: ${clusterWorkloadMappingNamespace}
definedTags:
Operations.CostCenter: '42'
freeformTags:
Department: Finance
Create ClusterWorkloadMapping Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClusterWorkloadMapping(name: string, args: ClusterWorkloadMappingArgs, opts?: CustomResourceOptions);
@overload
def ClusterWorkloadMapping(resource_name: str,
args: ClusterWorkloadMappingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ClusterWorkloadMapping(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
mapped_compartment_id: Optional[str] = None,
namespace: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
freeform_tags: Optional[Mapping[str, Any]] = None)
func NewClusterWorkloadMapping(ctx *Context, name string, args ClusterWorkloadMappingArgs, opts ...ResourceOption) (*ClusterWorkloadMapping, error)
public ClusterWorkloadMapping(string name, ClusterWorkloadMappingArgs args, CustomResourceOptions? opts = null)
public ClusterWorkloadMapping(String name, ClusterWorkloadMappingArgs args)
public ClusterWorkloadMapping(String name, ClusterWorkloadMappingArgs args, CustomResourceOptions options)
type: oci:ContainerEngine:ClusterWorkloadMapping
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 ClusterWorkloadMappingArgs
- 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 ClusterWorkloadMappingArgs
- 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 ClusterWorkloadMappingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterWorkloadMappingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterWorkloadMappingArgs
- 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 clusterWorkloadMappingResource = new Oci.ContainerEngine.ClusterWorkloadMapping("clusterWorkloadMappingResource", new()
{
ClusterId = "string",
MappedCompartmentId = "string",
Namespace = "string",
DefinedTags =
{
{ "string", "any" },
},
FreeformTags =
{
{ "string", "any" },
},
});
example, err := ContainerEngine.NewClusterWorkloadMapping(ctx, "clusterWorkloadMappingResource", &ContainerEngine.ClusterWorkloadMappingArgs{
ClusterId: pulumi.String("string"),
MappedCompartmentId: pulumi.String("string"),
Namespace: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
})
var clusterWorkloadMappingResource = new ClusterWorkloadMapping("clusterWorkloadMappingResource", ClusterWorkloadMappingArgs.builder()
.clusterId("string")
.mappedCompartmentId("string")
.namespace("string")
.definedTags(Map.of("string", "any"))
.freeformTags(Map.of("string", "any"))
.build());
cluster_workload_mapping_resource = oci.container_engine.ClusterWorkloadMapping("clusterWorkloadMappingResource",
cluster_id="string",
mapped_compartment_id="string",
namespace="string",
defined_tags={
"string": "any",
},
freeform_tags={
"string": "any",
})
const clusterWorkloadMappingResource = new oci.containerengine.ClusterWorkloadMapping("clusterWorkloadMappingResource", {
clusterId: "string",
mappedCompartmentId: "string",
namespace: "string",
definedTags: {
string: "any",
},
freeformTags: {
string: "any",
},
});
type: oci:ContainerEngine:ClusterWorkloadMapping
properties:
clusterId: string
definedTags:
string: any
freeformTags:
string: any
mappedCompartmentId: string
namespace: string
ClusterWorkloadMapping 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 ClusterWorkloadMapping resource accepts the following input properties:
- Cluster
Id string - The OCID of the cluster.
- Mapped
Compartment stringId - (Updatable) The OCID of the mapped customer compartment.
- Namespace string
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Dictionary<string, object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Cluster
Id string - The OCID of the cluster.
- Mapped
Compartment stringId - (Updatable) The OCID of the mapped customer compartment.
- Namespace string
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- map[string]interface{}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- cluster
Id String - The OCID of the cluster.
- mapped
Compartment StringId - (Updatable) The OCID of the mapped customer compartment.
- namespace String
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<String,Object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- cluster
Id string - The OCID of the cluster.
- mapped
Compartment stringId - (Updatable) The OCID of the mapped customer compartment.
- namespace string
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- {[key: string]: any}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- cluster_
id str - The OCID of the cluster.
- mapped_
compartment_ strid - (Updatable) The OCID of the mapped customer compartment.
- namespace str
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Mapping[str, Any]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- cluster
Id String - The OCID of the cluster.
- mapped
Compartment StringId - (Updatable) The OCID of the mapped customer compartment.
- namespace String
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<Any>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
Outputs
All input properties are implicitly available as output properties. Additionally, the ClusterWorkloadMapping resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Mapped
Tenancy stringId - The OCID of the mapped customer tenancy.
- State string
- The state of the workloadMapping.
- Time
Created string - The time the cluster was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Mapped
Tenancy stringId - The OCID of the mapped customer tenancy.
- State string
- The state of the workloadMapping.
- Time
Created string - The time the cluster was created.
- id String
- The provider-assigned unique ID for this managed resource.
- mapped
Tenancy StringId - The OCID of the mapped customer tenancy.
- state String
- The state of the workloadMapping.
- time
Created String - The time the cluster was created.
- id string
- The provider-assigned unique ID for this managed resource.
- mapped
Tenancy stringId - The OCID of the mapped customer tenancy.
- state string
- The state of the workloadMapping.
- time
Created string - The time the cluster was created.
- id str
- The provider-assigned unique ID for this managed resource.
- mapped_
tenancy_ strid - The OCID of the mapped customer tenancy.
- state str
- The state of the workloadMapping.
- time_
created str - The time the cluster was created.
- id String
- The provider-assigned unique ID for this managed resource.
- mapped
Tenancy StringId - The OCID of the mapped customer tenancy.
- state String
- The state of the workloadMapping.
- time
Created String - The time the cluster was created.
Look up Existing ClusterWorkloadMapping Resource
Get an existing ClusterWorkloadMapping 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?: ClusterWorkloadMappingState, opts?: CustomResourceOptions): ClusterWorkloadMapping
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
mapped_compartment_id: Optional[str] = None,
mapped_tenancy_id: Optional[str] = None,
namespace: Optional[str] = None,
state: Optional[str] = None,
time_created: Optional[str] = None) -> ClusterWorkloadMapping
func GetClusterWorkloadMapping(ctx *Context, name string, id IDInput, state *ClusterWorkloadMappingState, opts ...ResourceOption) (*ClusterWorkloadMapping, error)
public static ClusterWorkloadMapping Get(string name, Input<string> id, ClusterWorkloadMappingState? state, CustomResourceOptions? opts = null)
public static ClusterWorkloadMapping get(String name, Output<String> id, ClusterWorkloadMappingState 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.
- Cluster
Id string - The OCID of the cluster.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Dictionary<string, object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Mapped
Compartment stringId - (Updatable) The OCID of the mapped customer compartment.
- Mapped
Tenancy stringId - The OCID of the mapped customer tenancy.
- Namespace string
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The state of the workloadMapping.
- Time
Created string - The time the cluster was created.
- Cluster
Id string - The OCID of the cluster.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- map[string]interface{}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Mapped
Compartment stringId - (Updatable) The OCID of the mapped customer compartment.
- Mapped
Tenancy stringId - The OCID of the mapped customer tenancy.
- Namespace string
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The state of the workloadMapping.
- Time
Created string - The time the cluster was created.
- cluster
Id String - The OCID of the cluster.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<String,Object>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- mapped
Compartment StringId - (Updatable) The OCID of the mapped customer compartment.
- mapped
Tenancy StringId - The OCID of the mapped customer tenancy.
- namespace String
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The state of the workloadMapping.
- time
Created String - The time the cluster was created.
- cluster
Id string - The OCID of the cluster.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- {[key: string]: any}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- mapped
Compartment stringId - (Updatable) The OCID of the mapped customer compartment.
- mapped
Tenancy stringId - The OCID of the mapped customer tenancy.
- namespace string
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state string
- The state of the workloadMapping.
- time
Created string - The time the cluster was created.
- cluster_
id str - The OCID of the cluster.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Mapping[str, Any]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- mapped_
compartment_ strid - (Updatable) The OCID of the mapped customer compartment.
- mapped_
tenancy_ strid - The OCID of the mapped customer tenancy.
- namespace str
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state str
- The state of the workloadMapping.
- time_
created str - The time the cluster was created.
- cluster
Id String - The OCID of the cluster.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<Any>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- mapped
Compartment StringId - (Updatable) The OCID of the mapped customer compartment.
- mapped
Tenancy StringId - The OCID of the mapped customer tenancy.
- namespace String
The namespace of the workloadMapping.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The state of the workloadMapping.
- time
Created String - The time the cluster was created.
Import
ClusterWorkloadMappings can be imported using the id
, e.g.
$ pulumi import oci:ContainerEngine/clusterWorkloadMapping:ClusterWorkloadMapping test_cluster_workload_mapping "clusters/{clusterId}/workloadMappings/{workloadMappingId}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.