import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Iot Domain Configure Data Access resource in Oracle Cloud Infrastructure Iot service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/iot/latest/IotDomain/ConfigureDataAccess * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/iot * * Updates an IoT domain Data Access. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIotDomainConfigureDataAccess = new oci.oci.IotIotDomainConfigureDataAccess("test_iot_domain_configure_data_access", { * iotDomainId: testIotDomain.id, * type: iotDomainConfigureDataAccessType, * dbAllowListedIdentityGroupNames: iotDomainConfigureDataAccessDbAllowListedIdentityGroupNames, * dbAllowedIdentityDomainHost: iotDomainConfigureDataAccessDbAllowedIdentityDomainHost, * dbWorkspaceAdminInitialPassword: iotDomainConfigureDataAccessDbWorkspaceAdminInitialPassword, * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class IotIotDomainConfigureDataAccess extends pulumi.CustomResource { /** * Get an existing IotIotDomainConfigureDataAccess resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: IotIotDomainConfigureDataAccessState, opts?: pulumi.CustomResourceOptions): IotIotDomainConfigureDataAccess; /** * Returns true if the given object is an instance of IotIotDomainConfigureDataAccess. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is IotIotDomainConfigureDataAccess; /** * 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: pulumi.Output; /** * Host name of identity domain that is used for authenticating connect to data host via ORDS. */ readonly dbAllowedIdentityDomainHost: pulumi.Output; /** * Initial admin password for APEX workspace associated with the IoT domain. */ readonly dbWorkspaceAdminInitialPassword: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain. */ readonly iotDomainId: pulumi.Output; /** * configuration type * * ** 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 */ readonly type: pulumi.Output; /** * Create a IotIotDomainConfigureDataAccess resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: IotIotDomainConfigureDataAccessArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IotIotDomainConfigureDataAccess resources. */ export interface IotIotDomainConfigureDataAccessState { /** * 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. */ dbAllowListedIdentityGroupNames?: pulumi.Input[] | undefined>; /** * Host name of identity domain that is used for authenticating connect to data host via ORDS. */ dbAllowedIdentityDomainHost?: pulumi.Input; /** * Initial admin password for APEX workspace associated with the IoT domain. */ dbWorkspaceAdminInitialPassword?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain. */ iotDomainId?: pulumi.Input; /** * configuration type * * ** 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 */ type?: pulumi.Input; } /** * The set of arguments for constructing a IotIotDomainConfigureDataAccess resource. */ export interface IotIotDomainConfigureDataAccessArgs { /** * 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. */ dbAllowListedIdentityGroupNames?: pulumi.Input[] | undefined>; /** * Host name of identity domain that is used for authenticating connect to data host via ORDS. */ dbAllowedIdentityDomainHost?: pulumi.Input; /** * Initial admin password for APEX workspace associated with the IoT domain. */ dbWorkspaceAdminInitialPassword?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain. */ iotDomainId: pulumi.Input; /** * configuration type * * ** 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 */ type: pulumi.Input; } //# sourceMappingURL=iotIotDomainConfigureDataAccess.d.ts.map