import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Apm Domain resource in Oracle Cloud Infrastructure Apm service. * * Gets the details of the APM domain specified by OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApmDomain = oci.apm.getApmDomain({ * apmDomainId: testApmDomainOciApmApmDomain.id, * }); * ``` */ export declare function getApmDomain(args: GetApmDomainArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApmDomain. */ export interface GetApmDomainArgs { /** * The OCID of the APM domain. */ apmDomainId: string; } /** * A collection of values returned by getApmDomain. */ export interface GetApmDomainResult { readonly apmDomainId: string; /** * The OCID of the compartment corresponding to the APM domain. */ readonly compartmentId: string; /** * The endpoint where the APM agents upload their observations and metrics. */ readonly dataUploadEndpoint: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Description of the APM domain. */ readonly description: string; /** * Display name of the APM domain, which can be updated. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * Unique identifier that is immutable on creation. */ readonly id: string; /** * Indicates if this is an Always Free resource. */ readonly isFreeTier: boolean; /** * The OCID of the Log Analytics log group to which the data uploaded to this APM domain will be mapped to. */ readonly logGroupId: string; /** * The current lifecycle state of the APM domain. */ readonly state: string; /** * The time the APM domain was created, expressed in RFC 3339 timestamp format. */ readonly timeCreated: string; /** * The time the APM domain was updated, expressed in RFC 3339 timestamp format. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Apm Domain resource in Oracle Cloud Infrastructure Apm service. * * Gets the details of the APM domain specified by OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApmDomain = oci.apm.getApmDomain({ * apmDomainId: testApmDomainOciApmApmDomain.id, * }); * ``` */ export declare function getApmDomainOutput(args: GetApmDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApmDomain. */ export interface GetApmDomainOutputArgs { /** * The OCID of the APM domain. */ apmDomainId: pulumi.Input; } //# sourceMappingURL=getApmDomain.d.ts.map