import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Iot Domain resource in Oracle Cloud Infrastructure Iot service. * * Retrieves the IoT domain identified by the specified OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIotDomain = oci.oci.getIotIotDomain({ * iotDomainId: testIotDomainOciIotIotDomain.id, * }); * ``` */ export declare function getIotIotDomain(args: GetIotIotDomainArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIotIotDomain. */ export interface GetIotIotDomainArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain. */ iotDomainId: string; } /** * A collection of values returned by getIotIotDomain. */ export interface GetIotIotDomainResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment corresponding to the resource. */ readonly compartmentId: string; /** * Data Retention periods */ readonly dataRetentionPeriodsInDays: outputs.oci.GetIotIotDomainDataRetentionPeriodsInDay[]; /** * List of IAM groups of form described in [here](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/mnqmn/#GUID-3634D6C9-A7F1-4875-9925-BAEA2D3C5197) that are allowed to directly connect to the data host. */ readonly dbAllowListedIdentityGroupNames: string[]; /** * Host name of identity domain that is used for authenticating connect to data host via ORDS. */ readonly dbAllowedIdentityDomainHost: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A short description of the resource. */ readonly description: string; /** * Host name of an IoT domain, where IoT devices can connect to. */ readonly deviceHost: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain group. */ readonly iotDomainGroupId: string; readonly iotDomainId: string; /** * The current state of the IoT domain. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time when the resource was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time when the resource was last updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Iot Domain resource in Oracle Cloud Infrastructure Iot service. * * Retrieves the IoT domain identified by the specified OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIotDomain = oci.oci.getIotIotDomain({ * iotDomainId: testIotDomainOciIotIotDomain.id, * }); * ``` */ export declare function getIotIotDomainOutput(args: GetIotIotDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIotIotDomain. */ export interface GetIotIotDomainOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain. */ iotDomainId: pulumi.Input; } //# sourceMappingURL=getIotIotDomain.d.ts.map