import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Fleet resource in Oracle Cloud Infrastructure Jms service. * * Retrieve a Fleet with the specified identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleet = oci.jms.getFleet({ * fleetId: testFleetOciJmsFleet.id, * }); * ``` */ export declare function getFleet(args: GetFleetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleet. */ export interface GetFleetArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: string; } /** * A collection of values returned by getFleet. */ export interface GetFleetResult { /** * The approximate count of all unique applications in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag. */ readonly approximateApplicationCount: number; /** * The approximate count of all unique Java installations in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag. */ readonly approximateInstallationCount: number; /** * The approximate count of all unique Java servers in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag. */ readonly approximateJavaServerCount: number; /** * The approximate count of all unique Java Runtimes in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag. */ readonly approximateJreCount: number; /** * The approximate count of all unique libraries in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag. */ readonly approximateLibraryCount: number; /** * The approximate count of all unique library vulnerabilities in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag. */ readonly approximateLibraryVulnerabilityCount: number; /** * The approximate count of all unique managed instances in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag. */ readonly approximateManagedInstanceCount: number; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of the Fleet. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)). */ readonly definedTags: { [key: string]: string; }; /** * The Fleet's description. */ readonly description: string; /** * The name of the Fleet. */ readonly displayName: string; readonly fleetId: string; /** * Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).) */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ readonly id: string; /** * Custom Log for inventory or operation log. */ readonly inventoryLogs: outputs.Jms.GetFleetInventoryLog[]; /** * Whether or not advanced features are enabled in this Fleet. Deprecated, use `/fleets/{fleetId}/advanceFeatureConfiguration` API instead. */ readonly isAdvancedFeaturesEnabled: boolean; /** * Whether or not export setting is enabled in this Fleet. */ readonly isExportSettingEnabled: boolean; /** * Custom Log for inventory or operation log. */ readonly operationLogs: outputs.Jms.GetFleetOperationLog[]; /** * The lifecycle state of the Fleet. */ readonly state: string; /** * System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The creation date and time of the Fleet (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ readonly timeCreated: string; } /** * This data source provides details about a specific Fleet resource in Oracle Cloud Infrastructure Jms service. * * Retrieve a Fleet with the specified identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleet = oci.jms.getFleet({ * fleetId: testFleetOciJmsFleet.id, * }); * ``` */ export declare function getFleetOutput(args: GetFleetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleet. */ export interface GetFleetOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: pulumi.Input; } //# sourceMappingURL=getFleet.d.ts.map