import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Oracle Db Aws Identity Connector resource in Oracle Cloud Infrastructure Dbmulticloud service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database-multicloud-integrations/latest/OracleDbAwsIdentityConnector * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/dbmulticloud * * Creates Oracle DB AWS Identity Connector resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAwsIdentityConnector = new oci.oci.DbmulticloudOracleDbAwsIdentityConnector("test_oracle_db_aws_identity_connector", { * awsLocation: oracleDbAwsIdentityConnectorAwsLocation, * compartmentId: compartmentId, * displayName: oracleDbAwsIdentityConnectorDisplayName, * issuerUrl: oracleDbAwsIdentityConnectorIssuerUrl, * oidcScope: oracleDbAwsIdentityConnectorOidcScope, * resourceId: testResource.id, * serviceRoleDetails: [{ * roleArn: oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn, * servicePrivateEndpoint: oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint, * serviceType: oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType, * }], * awsAccountId: testAwsAccount.id, * awsStsPrivateEndpoint: oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint, * definedTags: { * "Operations.CostCenter": "42", * }, * freeformTags: { * Department: "Finance", * }, * }); * ``` * * ## Import * * OracleDbAwsIdentityConnectors can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:oci/dbmulticloudOracleDbAwsIdentityConnector:DbmulticloudOracleDbAwsIdentityConnector test_oracle_db_aws_identity_connector "id" * ``` */ export declare class DbmulticloudOracleDbAwsIdentityConnector extends pulumi.CustomResource { /** * Get an existing DbmulticloudOracleDbAwsIdentityConnector 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?: DbmulticloudOracleDbAwsIdentityConnectorState, opts?: pulumi.CustomResourceOptions): DbmulticloudOracleDbAwsIdentityConnector; /** * Returns true if the given object is an instance of DbmulticloudOracleDbAwsIdentityConnector. 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 DbmulticloudOracleDbAwsIdentityConnector; /** * (Updatable) AWS Account ID. */ readonly awsAccountId: pulumi.Output; /** * (Updatable) AWS resource location. */ readonly awsLocation: pulumi.Output; /** * (Updatable) Private endpoint of AWS Security Token Service. */ readonly awsStsPrivateEndpoint: pulumi.Output; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB AWS Identity Connector resource. */ readonly compartmentId: pulumi.Output; /** * (Updatable) 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: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) Oracle DB Google AWS Identity Connector resource name. */ readonly displayName: pulumi.Output; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) OIDC token issuer Url. */ readonly issuerUrl: pulumi.Output; /** * Description of the current lifecycle state in more detail. */ readonly lifecycleStateDetails: pulumi.Output; /** * (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL. */ readonly oidcScope: pulumi.Output; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AWS VM Cluster resource. */ readonly resourceId: pulumi.Output; /** * (Updatable) Service role details and respective Amazon resource nam of Role. */ readonly serviceRoleDetails: pulumi.Output; /** * The current lifecycle state of the AWS Identity Connector resource. */ readonly state: pulumi.Output; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * Time when the Oracle DB AWS Identity Connector resource was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'. */ readonly timeCreated: pulumi.Output; /** * Time when the Oracle DB AWS Identity Connector resource was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'. */ readonly timeUpdated: pulumi.Output; /** * Create a DbmulticloudOracleDbAwsIdentityConnector 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: DbmulticloudOracleDbAwsIdentityConnectorArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DbmulticloudOracleDbAwsIdentityConnector resources. */ export interface DbmulticloudOracleDbAwsIdentityConnectorState { /** * (Updatable) AWS Account ID. */ awsAccountId?: pulumi.Input; /** * (Updatable) AWS resource location. */ awsLocation?: pulumi.Input; /** * (Updatable) Private endpoint of AWS Security Token Service. */ awsStsPrivateEndpoint?: pulumi.Input; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB AWS Identity Connector resource. */ compartmentId?: pulumi.Input; /** * (Updatable) 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"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Oracle DB Google AWS Identity Connector resource name. */ displayName?: pulumi.Input; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) OIDC token issuer Url. */ issuerUrl?: pulumi.Input; /** * Description of the current lifecycle state in more detail. */ lifecycleStateDetails?: pulumi.Input; /** * (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL. */ oidcScope?: pulumi.Input; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AWS VM Cluster resource. */ resourceId?: pulumi.Input; /** * (Updatable) Service role details and respective Amazon resource nam of Role. */ serviceRoleDetails?: pulumi.Input[] | undefined>; /** * The current lifecycle state of the AWS Identity Connector resource. */ state?: pulumi.Input; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Time when the Oracle DB AWS Identity Connector resource was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'. */ timeCreated?: pulumi.Input; /** * Time when the Oracle DB AWS Identity Connector resource was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'. */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a DbmulticloudOracleDbAwsIdentityConnector resource. */ export interface DbmulticloudOracleDbAwsIdentityConnectorArgs { /** * (Updatable) AWS Account ID. */ awsAccountId?: pulumi.Input; /** * (Updatable) AWS resource location. */ awsLocation: pulumi.Input; /** * (Updatable) Private endpoint of AWS Security Token Service. */ awsStsPrivateEndpoint?: pulumi.Input; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB AWS Identity Connector resource. */ compartmentId: pulumi.Input; /** * (Updatable) 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"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Oracle DB Google AWS Identity Connector resource name. */ displayName: pulumi.Input; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) OIDC token issuer Url. */ issuerUrl: pulumi.Input; /** * (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL. */ oidcScope: pulumi.Input; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AWS VM Cluster resource. */ resourceId: pulumi.Input; /** * (Updatable) Service role details and respective Amazon resource nam of Role. */ serviceRoleDetails: pulumi.Input[]>; } //# sourceMappingURL=dbmulticloudOracleDbAwsIdentityConnector.d.ts.map