oci.Tenantmanagercontrolplane.SubscriptionMapping
Explore with Pulumi AI
This resource provides the Subscription Mapping resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service.
Assign the tenancy record identified by the compartment ID to the given subscription ID.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSubscriptionMapping = new oci.tenantmanagercontrolplane.SubscriptionMapping("test_subscription_mapping", {
compartmentId: compartmentId,
subscriptionId: testSubscription.id,
});
import pulumi
import pulumi_oci as oci
test_subscription_mapping = oci.tenantmanagercontrolplane.SubscriptionMapping("test_subscription_mapping",
compartment_id=compartment_id,
subscription_id=test_subscription["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/tenantmanagercontrolplane"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tenantmanagercontrolplane.NewSubscriptionMapping(ctx, "test_subscription_mapping", &tenantmanagercontrolplane.SubscriptionMappingArgs{
CompartmentId: pulumi.Any(compartmentId),
SubscriptionId: pulumi.Any(testSubscription.Id),
})
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 testSubscriptionMapping = new Oci.Tenantmanagercontrolplane.SubscriptionMapping("test_subscription_mapping", new()
{
CompartmentId = compartmentId,
SubscriptionId = testSubscription.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Tenantmanagercontrolplane.SubscriptionMapping;
import com.pulumi.oci.Tenantmanagercontrolplane.SubscriptionMappingArgs;
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 testSubscriptionMapping = new SubscriptionMapping("testSubscriptionMapping", SubscriptionMappingArgs.builder()
.compartmentId(compartmentId)
.subscriptionId(testSubscription.id())
.build());
}
}
resources:
testSubscriptionMapping:
type: oci:Tenantmanagercontrolplane:SubscriptionMapping
name: test_subscription_mapping
properties:
compartmentId: ${compartmentId}
subscriptionId: ${testSubscription.id}
Create SubscriptionMapping Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SubscriptionMapping(name: string, args: SubscriptionMappingArgs, opts?: CustomResourceOptions);
@overload
def SubscriptionMapping(resource_name: str,
args: SubscriptionMappingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SubscriptionMapping(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
subscription_id: Optional[str] = None)
func NewSubscriptionMapping(ctx *Context, name string, args SubscriptionMappingArgs, opts ...ResourceOption) (*SubscriptionMapping, error)
public SubscriptionMapping(string name, SubscriptionMappingArgs args, CustomResourceOptions? opts = null)
public SubscriptionMapping(String name, SubscriptionMappingArgs args)
public SubscriptionMapping(String name, SubscriptionMappingArgs args, CustomResourceOptions options)
type: oci:Tenantmanagercontrolplane:SubscriptionMapping
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 SubscriptionMappingArgs
- 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 SubscriptionMappingArgs
- 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 SubscriptionMappingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SubscriptionMappingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SubscriptionMappingArgs
- 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 subscriptionMappingResource = new Oci.Tenantmanagercontrolplane.SubscriptionMapping("subscriptionMappingResource", new()
{
CompartmentId = "string",
SubscriptionId = "string",
});
example, err := Tenantmanagercontrolplane.NewSubscriptionMapping(ctx, "subscriptionMappingResource", &Tenantmanagercontrolplane.SubscriptionMappingArgs{
CompartmentId: pulumi.String("string"),
SubscriptionId: pulumi.String("string"),
})
var subscriptionMappingResource = new SubscriptionMapping("subscriptionMappingResource", SubscriptionMappingArgs.builder()
.compartmentId("string")
.subscriptionId("string")
.build());
subscription_mapping_resource = oci.tenantmanagercontrolplane.SubscriptionMapping("subscriptionMappingResource",
compartment_id="string",
subscription_id="string")
const subscriptionMappingResource = new oci.tenantmanagercontrolplane.SubscriptionMapping("subscriptionMappingResource", {
compartmentId: "string",
subscriptionId: "string",
});
type: oci:Tenantmanagercontrolplane:SubscriptionMapping
properties:
compartmentId: string
subscriptionId: string
SubscriptionMapping 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 SubscriptionMapping resource accepts the following input properties:
- Compartment
Id string - OCID of the compartment. Always a tenancy OCID.
- Subscription
Id string OCID of Subscription.
** 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
- Compartment
Id string - OCID of the compartment. Always a tenancy OCID.
- Subscription
Id string OCID of Subscription.
** 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
- compartment
Id String - OCID of the compartment. Always a tenancy OCID.
- subscription
Id String OCID of Subscription.
** 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
- compartment
Id string - OCID of the compartment. Always a tenancy OCID.
- subscription
Id string OCID of Subscription.
** 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
- compartment_
id str - OCID of the compartment. Always a tenancy OCID.
- subscription_
id str OCID of Subscription.
** 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
- compartment
Id String - OCID of the compartment. Always a tenancy OCID.
- subscription
Id String OCID of Subscription.
** 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
Outputs
All input properties are implicitly available as output properties. Additionally, the SubscriptionMapping resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Explicitly boolAssigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- State string
- Lifecycle state of the subscriptionMapping.
- Time
Created string - Date-time when subscription mapping was created.
- Time
Terminated string - Date-time when subscription mapping was terminated.
- Time
Updated string - Date-time when subscription mapping was updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Explicitly boolAssigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- State string
- Lifecycle state of the subscriptionMapping.
- Time
Created string - Date-time when subscription mapping was created.
- Time
Terminated string - Date-time when subscription mapping was terminated.
- Time
Updated string - Date-time when subscription mapping was updated.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Explicitly BooleanAssigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- state String
- Lifecycle state of the subscriptionMapping.
- time
Created String - Date-time when subscription mapping was created.
- time
Terminated String - Date-time when subscription mapping was terminated.
- time
Updated String - Date-time when subscription mapping was updated.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Explicitly booleanAssigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- state string
- Lifecycle state of the subscriptionMapping.
- time
Created string - Date-time when subscription mapping was created.
- time
Terminated string - Date-time when subscription mapping was terminated.
- time
Updated string - Date-time when subscription mapping was updated.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
explicitly_ boolassigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- state str
- Lifecycle state of the subscriptionMapping.
- time_
created str - Date-time when subscription mapping was created.
- time_
terminated str - Date-time when subscription mapping was terminated.
- time_
updated str - Date-time when subscription mapping was updated.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Explicitly BooleanAssigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- state String
- Lifecycle state of the subscriptionMapping.
- time
Created String - Date-time when subscription mapping was created.
- time
Terminated String - Date-time when subscription mapping was terminated.
- time
Updated String - Date-time when subscription mapping was updated.
Look up Existing SubscriptionMapping Resource
Get an existing SubscriptionMapping 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?: SubscriptionMappingState, opts?: CustomResourceOptions): SubscriptionMapping
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
is_explicitly_assigned: Optional[bool] = None,
state: Optional[str] = None,
subscription_id: Optional[str] = None,
time_created: Optional[str] = None,
time_terminated: Optional[str] = None,
time_updated: Optional[str] = None) -> SubscriptionMapping
func GetSubscriptionMapping(ctx *Context, name string, id IDInput, state *SubscriptionMappingState, opts ...ResourceOption) (*SubscriptionMapping, error)
public static SubscriptionMapping Get(string name, Input<string> id, SubscriptionMappingState? state, CustomResourceOptions? opts = null)
public static SubscriptionMapping get(String name, Output<String> id, SubscriptionMappingState state, CustomResourceOptions options)
resources: _: type: oci:Tenantmanagercontrolplane:SubscriptionMapping get: id: ${id}
- 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.
- Compartment
Id string - OCID of the compartment. Always a tenancy OCID.
- Is
Explicitly boolAssigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- State string
- Lifecycle state of the subscriptionMapping.
- Subscription
Id string OCID of Subscription.
** 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
- Time
Created string - Date-time when subscription mapping was created.
- Time
Terminated string - Date-time when subscription mapping was terminated.
- Time
Updated string - Date-time when subscription mapping was updated.
- Compartment
Id string - OCID of the compartment. Always a tenancy OCID.
- Is
Explicitly boolAssigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- State string
- Lifecycle state of the subscriptionMapping.
- Subscription
Id string OCID of Subscription.
** 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
- Time
Created string - Date-time when subscription mapping was created.
- Time
Terminated string - Date-time when subscription mapping was terminated.
- Time
Updated string - Date-time when subscription mapping was updated.
- compartment
Id String - OCID of the compartment. Always a tenancy OCID.
- is
Explicitly BooleanAssigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- state String
- Lifecycle state of the subscriptionMapping.
- subscription
Id String OCID of Subscription.
** 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
- time
Created String - Date-time when subscription mapping was created.
- time
Terminated String - Date-time when subscription mapping was terminated.
- time
Updated String - Date-time when subscription mapping was updated.
- compartment
Id string - OCID of the compartment. Always a tenancy OCID.
- is
Explicitly booleanAssigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- state string
- Lifecycle state of the subscriptionMapping.
- subscription
Id string OCID of Subscription.
** 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
- time
Created string - Date-time when subscription mapping was created.
- time
Terminated string - Date-time when subscription mapping was terminated.
- time
Updated string - Date-time when subscription mapping was updated.
- compartment_
id str - OCID of the compartment. Always a tenancy OCID.
- is_
explicitly_ boolassigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- state str
- Lifecycle state of the subscriptionMapping.
- subscription_
id str OCID of Subscription.
** 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
- time_
created str - Date-time when subscription mapping was created.
- time_
terminated str - Date-time when subscription mapping was terminated.
- time_
updated str - Date-time when subscription mapping was updated.
- compartment
Id String - OCID of the compartment. Always a tenancy OCID.
- is
Explicitly BooleanAssigned - Denotes if the subscription is explicity assigned to the root compartment or tenancy.
- state String
- Lifecycle state of the subscriptionMapping.
- subscription
Id String OCID of Subscription.
** 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
- time
Created String - Date-time when subscription mapping was created.
- time
Terminated String - Date-time when subscription mapping was terminated.
- time
Updated String - Date-time when subscription mapping was updated.
Import
SubscriptionMappings can be imported using the id
, e.g.
$ pulumi import oci:Tenantmanagercontrolplane/subscriptionMapping:SubscriptionMapping test_subscription_mapping "id"
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.