Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testIotDomainGroup = new oci.oci.IotIotDomainGroup("test_iot_domain_group", {
compartmentId: compartmentId,
definedTags: {
"Operations.CostCenter": "42",
},
description: iotDomainGroupDescription,
displayName: iotDomainGroupDisplayName,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_iot_domain_group = oci.oci.IotIotDomainGroup("test_iot_domain_group",
compartment_id=compartment_id,
defined_tags={
"Operations.CostCenter": "42",
},
description=iot_domain_group_description,
display_name=iot_domain_group_display_name,
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := oci.NewIotIotDomainGroup(ctx, "test_iot_domain_group", &oci.IotIotDomainGroupArgs{
CompartmentId: pulumi.Any(compartmentId),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
Description: pulumi.Any(iotDomainGroupDescription),
DisplayName: pulumi.Any(iotDomainGroupDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("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 testIotDomainGroup = new Oci.Oci.IotIotDomainGroup("test_iot_domain_group", new()
{
CompartmentId = compartmentId,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = iotDomainGroupDescription,
DisplayName = iotDomainGroupDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.IotIotDomainGroup;
import com.pulumi.oci.oci.IotIotDomainGroupArgs;
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 testIotDomainGroup = new IotIotDomainGroup("testIotDomainGroup", IotIotDomainGroupArgs.builder()
.compartmentId(compartmentId)
.definedTags(Map.of("Operations.CostCenter", "42"))
.description(iotDomainGroupDescription)
.displayName(iotDomainGroupDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testIotDomainGroup:
type: oci:oci:IotIotDomainGroup
name: test_iot_domain_group
properties:
compartmentId: ${compartmentId}
definedTags:
Operations.CostCenter: '42'
description: ${iotDomainGroupDescription}
displayName: ${iotDomainGroupDisplayName}
freeformTags:
Department: Finance
Create IotIotDomainGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IotIotDomainGroup(name: string, args: IotIotDomainGroupArgs, opts?: CustomResourceOptions);@overload
def IotIotDomainGroup(resource_name: str,
args: IotIotDomainGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IotIotDomainGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None)func NewIotIotDomainGroup(ctx *Context, name string, args IotIotDomainGroupArgs, opts ...ResourceOption) (*IotIotDomainGroup, error)public IotIotDomainGroup(string name, IotIotDomainGroupArgs args, CustomResourceOptions? opts = null)
public IotIotDomainGroup(String name, IotIotDomainGroupArgs args)
public IotIotDomainGroup(String name, IotIotDomainGroupArgs args, CustomResourceOptions options)
type: oci:oci:IotIotDomainGroup
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 IotIotDomainGroupArgs
- 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 IotIotDomainGroupArgs
- 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 IotIotDomainGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IotIotDomainGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IotIotDomainGroupArgs
- 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 iotIotDomainGroupResource = new Oci.Oci.IotIotDomainGroup("iotIotDomainGroupResource", new()
{
CompartmentId = "string",
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
});
example, err := oci.NewIotIotDomainGroup(ctx, "iotIotDomainGroupResource", &oci.IotIotDomainGroupArgs{
CompartmentId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var iotIotDomainGroupResource = new IotIotDomainGroup("iotIotDomainGroupResource", IotIotDomainGroupArgs.builder()
.compartmentId("string")
.definedTags(Map.of("string", "string"))
.description("string")
.displayName("string")
.freeformTags(Map.of("string", "string"))
.build());
iot_iot_domain_group_resource = oci.oci.IotIotDomainGroup("iotIotDomainGroupResource",
compartment_id="string",
defined_tags={
"string": "string",
},
description="string",
display_name="string",
freeform_tags={
"string": "string",
})
const iotIotDomainGroupResource = new oci.oci.IotIotDomainGroup("iotIotDomainGroupResource", {
compartmentId: "string",
definedTags: {
string: "string",
},
description: "string",
displayName: "string",
freeformTags: {
string: "string",
},
});
type: oci:oci:IotIotDomainGroup
properties:
compartmentId: string
definedTags:
string: string
description: string
displayName: string
freeformTags:
string: string
IotIotDomainGroup 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 IotIotDomainGroup resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment corresponding to the resource.
- Dictionary<string, string>
- (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"} - Description string
- (Updatable) A short description of the resource.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
(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"}** 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 - (Updatable) The OCID of the compartment corresponding to the resource.
- map[string]string
- (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"} - Description string
- (Updatable) A short description of the resource.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
(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"}** 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 - (Updatable) The OCID of the compartment corresponding to the resource.
- Map<String,String>
- (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"} - description String
- (Updatable) A short description of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
(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"}** 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 - (Updatable) The OCID of the compartment corresponding to the resource.
- {[key: string]: string}
- (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"} - description string
- (Updatable) A short description of the resource.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
(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"}** 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 - (Updatable) The OCID of the compartment corresponding to the resource.
- Mapping[str, str]
- (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"} - description str
- (Updatable) A short description of the resource.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
(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"}** 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 - (Updatable) The OCID of the compartment corresponding to the resource.
- Map<String>
- (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"} - description String
- (Updatable) A short description of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
(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"}** 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 IotIotDomainGroup resource produces the following output properties:
- Data
Host string - The host name of the database corresponding to the IoT Domain group.
- Db
Allow List<string>Listed Vcn Ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- Db
Connection stringString - The connection string used to connect to the data host associated with the IoT domain group.
- Db
Token stringScope - The token scope used to connect to the data host associated with the IoT domain group.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of an IoT Domain Group.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Data
Host string - The host name of the database corresponding to the IoT Domain group.
- Db
Allow []stringListed Vcn Ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- Db
Connection stringString - The connection string used to connect to the data host associated with the IoT domain group.
- Db
Token stringScope - The token scope used to connect to the data host associated with the IoT domain group.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of an IoT Domain Group.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- data
Host String - The host name of the database corresponding to the IoT Domain group.
- db
Allow List<String>Listed Vcn Ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- db
Connection StringString - The connection string used to connect to the data host associated with the IoT domain group.
- db
Token StringScope - The token scope used to connect to the data host associated with the IoT domain group.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of an IoT Domain Group.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- data
Host string - The host name of the database corresponding to the IoT Domain group.
- db
Allow string[]Listed Vcn Ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- db
Connection stringString - The connection string used to connect to the data host associated with the IoT domain group.
- db
Token stringScope - The token scope used to connect to the data host associated with the IoT domain group.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of an IoT Domain Group.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- data_
host str - The host name of the database corresponding to the IoT Domain group.
- db_
allow_ Sequence[str]listed_ vcn_ ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- db_
connection_ strstring - The connection string used to connect to the data host associated with the IoT domain group.
- db_
token_ strscope - The token scope used to connect to the data host associated with the IoT domain group.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of an IoT Domain Group.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
updated str - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- data
Host String - The host name of the database corresponding to the IoT Domain group.
- db
Allow List<String>Listed Vcn Ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- db
Connection StringString - The connection string used to connect to the data host associated with the IoT domain group.
- db
Token StringScope - The token scope used to connect to the data host associated with the IoT domain group.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of an IoT Domain Group.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing IotIotDomainGroup Resource
Get an existing IotIotDomainGroup 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?: IotIotDomainGroupState, opts?: CustomResourceOptions): IotIotDomainGroup@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
data_host: Optional[str] = None,
db_allow_listed_vcn_ids: Optional[Sequence[str]] = None,
db_connection_string: Optional[str] = None,
db_token_scope: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> IotIotDomainGroupfunc GetIotIotDomainGroup(ctx *Context, name string, id IDInput, state *IotIotDomainGroupState, opts ...ResourceOption) (*IotIotDomainGroup, error)public static IotIotDomainGroup Get(string name, Input<string> id, IotIotDomainGroupState? state, CustomResourceOptions? opts = null)public static IotIotDomainGroup get(String name, Output<String> id, IotIotDomainGroupState state, CustomResourceOptions options)resources: _: type: oci:oci:IotIotDomainGroup 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 - (Updatable) The OCID of the compartment corresponding to the resource.
- Data
Host string - The host name of the database corresponding to the IoT Domain group.
- Db
Allow List<string>Listed Vcn Ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- Db
Connection stringString - The connection string used to connect to the data host associated with the IoT domain group.
- Db
Token stringScope - The token scope used to connect to the data host associated with the IoT domain group.
- Dictionary<string, string>
- (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"} - Description string
- (Updatable) A short description of the resource.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
(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"}** 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 current state of an IoT Domain Group.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Compartment
Id string - (Updatable) The OCID of the compartment corresponding to the resource.
- Data
Host string - The host name of the database corresponding to the IoT Domain group.
- Db
Allow []stringListed Vcn Ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- Db
Connection stringString - The connection string used to connect to the data host associated with the IoT domain group.
- Db
Token stringScope - The token scope used to connect to the data host associated with the IoT domain group.
- map[string]string
- (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"} - Description string
- (Updatable) A short description of the resource.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
(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"}** 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 current state of an IoT Domain Group.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id String - (Updatable) The OCID of the compartment corresponding to the resource.
- data
Host String - The host name of the database corresponding to the IoT Domain group.
- db
Allow List<String>Listed Vcn Ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- db
Connection StringString - The connection string used to connect to the data host associated with the IoT domain group.
- db
Token StringScope - The token scope used to connect to the data host associated with the IoT domain group.
- Map<String,String>
- (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"} - description String
- (Updatable) A short description of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
(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"}** 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 current state of an IoT Domain Group.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id string - (Updatable) The OCID of the compartment corresponding to the resource.
- data
Host string - The host name of the database corresponding to the IoT Domain group.
- db
Allow string[]Listed Vcn Ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- db
Connection stringString - The connection string used to connect to the data host associated with the IoT domain group.
- db
Token stringScope - The token scope used to connect to the data host associated with the IoT domain group.
- {[key: string]: string}
- (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"} - description string
- (Updatable) A short description of the resource.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
(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"}** 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 current state of an IoT Domain Group.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- compartment_
id str - (Updatable) The OCID of the compartment corresponding to the resource.
- data_
host str - The host name of the database corresponding to the IoT Domain group.
- db_
allow_ Sequence[str]listed_ vcn_ ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- db_
connection_ strstring - The connection string used to connect to the data host associated with the IoT domain group.
- db_
token_ strscope - The token scope used to connect to the data host associated with the IoT domain group.
- Mapping[str, str]
- (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"} - description str
- (Updatable) A short description of the resource.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
(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"}** 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 current state of an IoT Domain Group.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
updated str - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id String - (Updatable) The OCID of the compartment corresponding to the resource.
- data
Host String - The host name of the database corresponding to the IoT Domain group.
- db
Allow List<String>Listed Vcn Ids - This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host.
- db
Connection StringString - The connection string used to connect to the data host associated with the IoT domain group.
- db
Token StringScope - The token scope used to connect to the data host associated with the IoT domain group.
- Map<String>
- (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"} - description String
- (Updatable) A short description of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
(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"}** 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 current state of an IoT Domain Group.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time when the resource was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time when the resource was last updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
Import
IotDomainGroups can be imported using the id, e.g.
$ pulumi import oci:oci/iotIotDomainGroup:IotIotDomainGroup test_iot_domain_group "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
ociTerraform Provider.
