import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Instance resource in Oracle Cloud Infrastructure Ddfs service. * * Gets information about an Instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInstance = oci.oci.getDdfsInstance({ * instanceId: testInstanceOciDdfsInstance.id, * }); * ``` */ export declare function getDdfsInstance(args: GetDdfsInstanceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDdfsInstance. */ export interface GetDdfsInstanceArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Instance. */ instanceId: string; } /** * A collection of values returned by getDdfsInstance. */ export interface GetDdfsInstanceResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ 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; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName: string; /** * The HTTPS endpoint for the instance's Fast Healthcare Interoperability Resources (FHIR) service. Example: `https://example.ddfs.oraclecloud.com/api/fhir` */ readonly fhirServiceEndpoint: 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 Instance. */ readonly id: string; /** * The Oracle Identity Cloud Service (IDCS) URL for the identity domain associated with the instance. Use the IDCS tenant URL from your identity domain configuration. Example: `https://idcs-1234567890.identity.oraclecloud.com` */ readonly idcsUrl: string; readonly instanceId: string; /** * A message that describes the current state of the Instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state. */ readonly lifecycleDetails: string; /** * The public IP address for the instance's FHIR service endpoint. */ readonly publicIp: string; /** * The current state of the Instance. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.example-key": "example-value"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the Instance 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 the Instance was 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 Instance resource in Oracle Cloud Infrastructure Ddfs service. * * Gets information about an Instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInstance = oci.oci.getDdfsInstance({ * instanceId: testInstanceOciDdfsInstance.id, * }); * ``` */ export declare function getDdfsInstanceOutput(args: GetDdfsInstanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDdfsInstance. */ export interface GetDdfsInstanceOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Instance. */ instanceId: pulumi.Input; } //# sourceMappingURL=getDdfsInstance.d.ts.map