import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Oracle Db Aws Identity Connector resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves detailed information about a Oracle DB AWS Identity Connector resource by specifying its unique resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAwsIdentityConnector = oci.oci.getDbmulticloudOracleDbAwsIdentityConnector({ * oracleDbAwsIdentityConnectorId: testOracleDbAwsIdentityConnectorOciDbmulticloudOracleDbAwsIdentityConnector.id, * }); * ``` */ export declare function getDbmulticloudOracleDbAwsIdentityConnector(args: GetDbmulticloudOracleDbAwsIdentityConnectorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbAwsIdentityConnector. */ export interface GetDbmulticloudOracleDbAwsIdentityConnectorArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Identity Connector resource. */ oracleDbAwsIdentityConnectorId: string; } /** * A collection of values returned by getDbmulticloudOracleDbAwsIdentityConnector. */ export interface GetDbmulticloudOracleDbAwsIdentityConnectorResult { /** * AWS Account ID. */ readonly awsAccountId: string; /** * AWS resource location. */ readonly awsLocation: string; /** * Private endpoint of AWS Security Token Service. */ readonly awsStsPrivateEndpoint: string; /** * 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: 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; }; /** * Oracle DB AWS Identity Connector resource name. */ 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 Oracle DB AWS Identity Connector resource. */ readonly id: string; /** * OIDC token issuer Url. */ readonly issuerUrl: string; /** * Description of the current lifecycle state in more detail. */ readonly lifecycleStateDetails: string; /** * Oracle Cloud Infrastructure IAM Domain scope for issuer URL. */ readonly oidcScope: string; readonly oracleDbAwsIdentityConnectorId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AWS VM Cluster resource. */ readonly resourceId: string; /** * Service role details and respective Amazon resource nam of Role. */ readonly serviceRoleDetails: outputs.oci.GetDbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetail[]; /** * The current lifecycle state of the AWS Identity Connector resource. */ 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; }; /** * 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: string; /** * 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: string; } /** * This data source provides details about a specific Oracle Db Aws Identity Connector resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves detailed information about a Oracle DB AWS Identity Connector resource by specifying its unique resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAwsIdentityConnector = oci.oci.getDbmulticloudOracleDbAwsIdentityConnector({ * oracleDbAwsIdentityConnectorId: testOracleDbAwsIdentityConnectorOciDbmulticloudOracleDbAwsIdentityConnector.id, * }); * ``` */ export declare function getDbmulticloudOracleDbAwsIdentityConnectorOutput(args: GetDbmulticloudOracleDbAwsIdentityConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbAwsIdentityConnector. */ export interface GetDbmulticloudOracleDbAwsIdentityConnectorOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB AWS Identity Connector resource. */ oracleDbAwsIdentityConnectorId: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbAwsIdentityConnector.d.ts.map