import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Iot Domain Group 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/IotDomainGroup/ConfigureDataAccess * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/iot * * Updates an IoT domain Group Data Access. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIotDomainGroupConfigureDataAccess = new oci.oci.IotIotDomainGroupConfigureDataAccess("test_iot_domain_group_configure_data_access", { * dbAllowListedVcnIds: iotDomainGroupConfigureDataAccessDbAllowListedVcnIds, * iotDomainGroupId: testIotDomainGroup.id, * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class IotIotDomainGroupConfigureDataAccess extends pulumi.CustomResource { /** * Get an existing IotIotDomainGroupConfigureDataAccess 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?: IotIotDomainGroupConfigureDataAccessState, opts?: pulumi.CustomResourceOptions): IotIotDomainGroupConfigureDataAccess; /** * Returns true if the given object is an instance of IotIotDomainGroupConfigureDataAccess. 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 IotIotDomainGroupConfigureDataAccess; /** * This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host. */ readonly dbAllowListedVcnIds: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of an 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 */ readonly iotDomainGroupId: pulumi.Output; /** * Create a IotIotDomainGroupConfigureDataAccess 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: IotIotDomainGroupConfigureDataAccessArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IotIotDomainGroupConfigureDataAccess resources. */ export interface IotIotDomainGroupConfigureDataAccessState { /** * This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host. */ dbAllowListedVcnIds?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of an 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 */ iotDomainGroupId?: pulumi.Input; } /** * The set of arguments for constructing a IotIotDomainGroupConfigureDataAccess resource. */ export interface IotIotDomainGroupConfigureDataAccessArgs { /** * This is an array of VCN OCID (virtual cloud network Oracle Cloud ID) that is allowed to connect the data host. */ dbAllowListedVcnIds: pulumi.Input[]>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of an 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 */ iotDomainGroupId: pulumi.Input; } //# sourceMappingURL=iotIotDomainGroupConfigureDataAccess.d.ts.map