oci.oci.IotIotDomain
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testIotDomain = new oci.oci.IotIotDomain("test_iot_domain", {
compartmentId: compartmentId,
iotDomainGroupId: testIotDomainGroup.id,
definedTags: {
"Operations.CostCenter": "42",
},
description: iotDomainDescription,
displayName: iotDomainDisplayName,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_iot_domain = oci.oci.IotIotDomain("test_iot_domain",
compartment_id=compartment_id,
iot_domain_group_id=test_iot_domain_group["id"],
defined_tags={
"Operations.CostCenter": "42",
},
description=iot_domain_description,
display_name=iot_domain_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.NewIotIotDomain(ctx, "test_iot_domain", &oci.IotIotDomainArgs{
CompartmentId: pulumi.Any(compartmentId),
IotDomainGroupId: pulumi.Any(testIotDomainGroup.Id),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
Description: pulumi.Any(iotDomainDescription),
DisplayName: pulumi.Any(iotDomainDisplayName),
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 testIotDomain = new Oci.Oci.IotIotDomain("test_iot_domain", new()
{
CompartmentId = compartmentId,
IotDomainGroupId = testIotDomainGroup.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = iotDomainDescription,
DisplayName = iotDomainDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.IotIotDomain;
import com.pulumi.oci.oci.IotIotDomainArgs;
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 testIotDomain = new IotIotDomain("testIotDomain", IotIotDomainArgs.builder()
.compartmentId(compartmentId)
.iotDomainGroupId(testIotDomainGroup.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.description(iotDomainDescription)
.displayName(iotDomainDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testIotDomain:
type: oci:oci:IotIotDomain
name: test_iot_domain
properties:
compartmentId: ${compartmentId}
iotDomainGroupId: ${testIotDomainGroup.id}
definedTags:
Operations.CostCenter: '42'
description: ${iotDomainDescription}
displayName: ${iotDomainDisplayName}
freeformTags:
Department: Finance
Create IotIotDomain Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IotIotDomain(name: string, args: IotIotDomainArgs, opts?: CustomResourceOptions);@overload
def IotIotDomain(resource_name: str,
args: IotIotDomainArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IotIotDomain(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
iot_domain_group_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 NewIotIotDomain(ctx *Context, name string, args IotIotDomainArgs, opts ...ResourceOption) (*IotIotDomain, error)public IotIotDomain(string name, IotIotDomainArgs args, CustomResourceOptions? opts = null)
public IotIotDomain(String name, IotIotDomainArgs args)
public IotIotDomain(String name, IotIotDomainArgs args, CustomResourceOptions options)
type: oci:oci:IotIotDomain
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 IotIotDomainArgs
- 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 IotIotDomainArgs
- 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 IotIotDomainArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IotIotDomainArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IotIotDomainArgs
- 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 iotIotDomainResource = new Oci.Oci.IotIotDomain("iotIotDomainResource", new()
{
CompartmentId = "string",
IotDomainGroupId = "string",
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
});
example, err := oci.NewIotIotDomain(ctx, "iotIotDomainResource", &oci.IotIotDomainArgs{
CompartmentId: pulumi.String("string"),
IotDomainGroupId: 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 iotIotDomainResource = new IotIotDomain("iotIotDomainResource", IotIotDomainArgs.builder()
.compartmentId("string")
.iotDomainGroupId("string")
.definedTags(Map.of("string", "string"))
.description("string")
.displayName("string")
.freeformTags(Map.of("string", "string"))
.build());
iot_iot_domain_resource = oci.oci.IotIotDomain("iotIotDomainResource",
compartment_id="string",
iot_domain_group_id="string",
defined_tags={
"string": "string",
},
description="string",
display_name="string",
freeform_tags={
"string": "string",
})
const iotIotDomainResource = new oci.oci.IotIotDomain("iotIotDomainResource", {
compartmentId: "string",
iotDomainGroupId: "string",
definedTags: {
string: "string",
},
description: "string",
displayName: "string",
freeformTags: {
string: "string",
},
});
type: oci:oci:IotIotDomain
properties:
compartmentId: string
definedTags:
string: string
description: string
displayName: string
freeformTags:
string: string
iotDomainGroupId: string
IotIotDomain 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 IotIotDomain resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment corresponding to the resource.
- Iot
Domain stringGroup Id The OCID of the IoT domain group.
** 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, 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"}
- Compartment
Id string - (Updatable) The OCID of the compartment corresponding to the resource.
- Iot
Domain stringGroup Id The OCID of the IoT domain group.
** 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]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"}
- compartment
Id String - (Updatable) The OCID of the compartment corresponding to the resource.
- iot
Domain StringGroup Id The OCID of the IoT domain group.
** 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,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"}
- compartment
Id string - (Updatable) The OCID of the compartment corresponding to the resource.
- iot
Domain stringGroup Id The OCID of the IoT domain group.
** 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]: 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"}
- compartment_
id str - (Updatable) The OCID of the compartment corresponding to the resource.
- iot_
domain_ strgroup_ id The OCID of the IoT domain group.
** 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, 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"}
- compartment
Id String - (Updatable) The OCID of the compartment corresponding to the resource.
- iot
Domain StringGroup Id The OCID of the IoT domain group.
** 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>
- (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"}
Outputs
All input properties are implicitly available as output properties. Additionally, the IotIotDomain resource produces the following output properties:
- Data
Retention List<IotPeriods In Days Iot Domain Data Retention Periods In Day> - Data Retention periods
- Db
Allow List<string>Listed Identity Group Names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- Db
Allowed stringIdentity Domain Host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- Device
Host string - Host name of an IoT domain, where IoT devices can connect to.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the IoT domain.
- 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
Retention []IotPeriods In Days Iot Domain Data Retention Periods In Day - Data Retention periods
- Db
Allow []stringListed Identity Group Names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- Db
Allowed stringIdentity Domain Host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- Device
Host string - Host name of an IoT domain, where IoT devices can connect to.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the IoT domain.
- 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
Retention List<IotPeriods In Days Iot Domain Data Retention Periods In Day> - Data Retention periods
- db
Allow List<String>Listed Identity Group Names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- db
Allowed StringIdentity Domain Host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- device
Host String - Host name of an IoT domain, where IoT devices can connect to.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the IoT domain.
- 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
Retention IotPeriods In Days Iot Domain Data Retention Periods In Day[] - Data Retention periods
- db
Allow string[]Listed Identity Group Names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- db
Allowed stringIdentity Domain Host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- device
Host string - Host name of an IoT domain, where IoT devices can connect to.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of the IoT domain.
- {[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_
retention_ Sequence[Iotperiods_ in_ days Iot Domain Data Retention Periods In Day] - Data Retention periods
- db_
allow_ Sequence[str]listed_ identity_ group_ names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- db_
allowed_ stridentity_ domain_ host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- device_
host str - Host name of an IoT domain, where IoT devices can connect to.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of the IoT domain.
- 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
Retention List<Property Map>Periods In Days - Data Retention periods
- db
Allow List<String>Listed Identity Group Names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- db
Allowed StringIdentity Domain Host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- device
Host String - Host name of an IoT domain, where IoT devices can connect to.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the IoT domain.
- 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 IotIotDomain Resource
Get an existing IotIotDomain 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?: IotIotDomainState, opts?: CustomResourceOptions): IotIotDomain@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
data_retention_periods_in_days: Optional[Sequence[IotIotDomainDataRetentionPeriodsInDayArgs]] = None,
db_allow_listed_identity_group_names: Optional[Sequence[str]] = None,
db_allowed_identity_domain_host: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
device_host: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
iot_domain_group_id: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> IotIotDomainfunc GetIotIotDomain(ctx *Context, name string, id IDInput, state *IotIotDomainState, opts ...ResourceOption) (*IotIotDomain, error)public static IotIotDomain Get(string name, Input<string> id, IotIotDomainState? state, CustomResourceOptions? opts = null)public static IotIotDomain get(String name, Output<String> id, IotIotDomainState state, CustomResourceOptions options)resources: _: type: oci:oci:IotIotDomain 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
Retention List<IotPeriods In Days Iot Domain Data Retention Periods In Day> - Data Retention periods
- Db
Allow List<string>Listed Identity Group Names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- Db
Allowed stringIdentity Domain Host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- 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.
- Device
Host string - Host name of an IoT domain, where IoT devices can connect to.
- 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"} - Iot
Domain stringGroup Id The OCID of the IoT domain group.
** 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 the IoT domain.
- 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
Retention []IotPeriods In Days Iot Domain Data Retention Periods In Day Args - Data Retention periods
- Db
Allow []stringListed Identity Group Names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- Db
Allowed stringIdentity Domain Host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- 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.
- Device
Host string - Host name of an IoT domain, where IoT devices can connect to.
- 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"} - Iot
Domain stringGroup Id The OCID of the IoT domain group.
** 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 the IoT domain.
- 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
Retention List<IotPeriods In Days Iot Domain Data Retention Periods In Day> - Data Retention periods
- db
Allow List<String>Listed Identity Group Names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- db
Allowed StringIdentity Domain Host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- 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.
- device
Host String - Host name of an IoT domain, where IoT devices can connect to.
- 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"} - iot
Domain StringGroup Id The OCID of the IoT domain group.
** 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 the IoT domain.
- 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
Retention IotPeriods In Days Iot Domain Data Retention Periods In Day[] - Data Retention periods
- db
Allow string[]Listed Identity Group Names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- db
Allowed stringIdentity Domain Host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- {[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.
- device
Host string - Host name of an IoT domain, where IoT devices can connect to.
- 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"} - iot
Domain stringGroup Id The OCID of the IoT domain group.
** 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 the IoT domain.
- {[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_
retention_ Sequence[Iotperiods_ in_ days Iot Domain Data Retention Periods In Day Args] - Data Retention periods
- db_
allow_ Sequence[str]listed_ identity_ group_ names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- db_
allowed_ stridentity_ domain_ host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- 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.
- device_
host str - Host name of an IoT domain, where IoT devices can connect to.
- 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"} - iot_
domain_ strgroup_ id The OCID of the IoT domain group.
** 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 the IoT domain.
- 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
Retention List<Property Map>Periods In Days - Data Retention periods
- db
Allow List<String>Listed Identity Group Names - List of IAM groups of form described in here that are allowed to directly connect to the data host.
- db
Allowed StringIdentity Domain Host - Host name of identity domain that is used for authenticating connect to data host via ORDS.
- 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.
- device
Host String - Host name of an IoT domain, where IoT devices can connect to.
- 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"} - iot
Domain StringGroup Id The OCID of the IoT domain group.
** 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 the IoT domain.
- 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
Supporting Types
IotIotDomainDataRetentionPeriodsInDay, IotIotDomainDataRetentionPeriodsInDayArgs
- Historized
Data int - Number of days for which any normalized data sent to IoT devices would be retained for.
- Raw
Command intData - Number of days for which any raw command data sent to IoT devices would be retained for.
- Raw
Data int - Number of days for which any raw data sent to IoT devices would be retained for.
- Rejected
Data int - Number of days for which any data sent to IoT devices would be retained for.
- Historized
Data int - Number of days for which any normalized data sent to IoT devices would be retained for.
- Raw
Command intData - Number of days for which any raw command data sent to IoT devices would be retained for.
- Raw
Data int - Number of days for which any raw data sent to IoT devices would be retained for.
- Rejected
Data int - Number of days for which any data sent to IoT devices would be retained for.
- historized
Data Integer - Number of days for which any normalized data sent to IoT devices would be retained for.
- raw
Command IntegerData - Number of days for which any raw command data sent to IoT devices would be retained for.
- raw
Data Integer - Number of days for which any raw data sent to IoT devices would be retained for.
- rejected
Data Integer - Number of days for which any data sent to IoT devices would be retained for.
- historized
Data number - Number of days for which any normalized data sent to IoT devices would be retained for.
- raw
Command numberData - Number of days for which any raw command data sent to IoT devices would be retained for.
- raw
Data number - Number of days for which any raw data sent to IoT devices would be retained for.
- rejected
Data number - Number of days for which any data sent to IoT devices would be retained for.
- historized_
data int - Number of days for which any normalized data sent to IoT devices would be retained for.
- raw_
command_ intdata - Number of days for which any raw command data sent to IoT devices would be retained for.
- raw_
data int - Number of days for which any raw data sent to IoT devices would be retained for.
- rejected_
data int - Number of days for which any data sent to IoT devices would be retained for.
- historized
Data Number - Number of days for which any normalized data sent to IoT devices would be retained for.
- raw
Command NumberData - Number of days for which any raw command data sent to IoT devices would be retained for.
- raw
Data Number - Number of days for which any raw data sent to IoT devices would be retained for.
- rejected
Data Number - Number of days for which any data sent to IoT devices would be retained for.
Import
IotDomains can be imported using the id, e.g.
$ pulumi import oci:oci/iotIotDomain:IotIotDomain test_iot_domain "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.
