import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Management Agent Install Key resource in Oracle Cloud Infrastructure Management Agent service. * * Gets complete details of the Agent install Key for a given key id * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementAgentInstallKey = oci.managementagent.getManagementAgentInstallKey({ * managementAgentInstallKeyId: testManagementAgentInstallKeyOciManagementAgentManagementAgentInstallKey.id, * }); * ``` */ export declare function getManagementAgentInstallKey(args: GetManagementAgentInstallKeyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagementAgentInstallKey. */ export interface GetManagementAgentInstallKeyArgs { /** * Unique Management Agent Install Key identifier */ managementAgentInstallKeyId: string; } /** * A collection of values returned by getManagementAgentInstallKey. */ export interface GetManagementAgentInstallKeyResult { /** * Total number of install for this keys */ readonly allowedKeyInstallCount: number; /** * Compartment Identifier */ readonly compartmentId: string; /** * Principal id of user who created the Agent Install key */ readonly createdByPrincipalId: string; /** * Total number of install for this keys */ readonly currentKeyInstallCount: number; /** * 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; }; /** * Management Agent Install Key Name */ 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; }; /** * Agent install Key identifier */ readonly id: string; /** * If set to true, the install key has no expiration date or usage limit. Properties allowedKeyInstallCount and timeExpires are ignored if set to true. Defaults to false. */ readonly isUnlimited: boolean; /** * Management Agent Install Key */ readonly key: string; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; readonly managementAgentInstallKeyId: string; /** * Status of Key */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time when Management Agent install Key was created. An RFC3339 formatted date time string */ readonly timeCreated: string; /** * date after which key would expire after creation */ readonly timeExpires: string; /** * The time when Management Agent install Key was updated. An RFC3339 formatted date time string */ readonly timeUpdated: string; } /** * This data source provides details about a specific Management Agent Install Key resource in Oracle Cloud Infrastructure Management Agent service. * * Gets complete details of the Agent install Key for a given key id * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagementAgentInstallKey = oci.managementagent.getManagementAgentInstallKey({ * managementAgentInstallKeyId: testManagementAgentInstallKeyOciManagementAgentManagementAgentInstallKey.id, * }); * ``` */ export declare function getManagementAgentInstallKeyOutput(args: GetManagementAgentInstallKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagementAgentInstallKey. */ export interface GetManagementAgentInstallKeyOutputArgs { /** * Unique Management Agent Install Key identifier */ managementAgentInstallKeyId: pulumi.Input; } //# sourceMappingURL=getManagementAgentInstallKey.d.ts.map