import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Fusion Environment Family resource in Oracle Cloud Infrastructure Fusion Apps service. * * Retrieves a fusion environment family identified by its OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFusionEnvironmentFamily = oci.functions.getFusionEnvironmentFamily({ * fusionEnvironmentFamilyId: testFusionEnvironmentFamilyOciFusionAppsFusionEnvironmentFamily.id, * }); * ``` */ export declare function getFusionEnvironmentFamily(args: GetFusionEnvironmentFamilyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFusionEnvironmentFamily. */ export interface GetFusionEnvironmentFamilyArgs { /** * The unique identifier (OCID) of the FusionEnvironmentFamily. */ fusionEnvironmentFamilyId: string; } /** * A collection of values returned by getFusionEnvironmentFamily. */ export interface GetFusionEnvironmentFamilyResult { /** * The OCID of the compartment where the environment family is located. */ readonly compartmentId: 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; }; /** * A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later. */ readonly displayName: string; /** * The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see [Understanding Environment Maintenance](https://docs.cloud.oracle.com/iaas/Content/fusion-applications/plan-environment-family.htm#about-env-maintenance). */ readonly familyMaintenancePolicies: outputs.Functions.GetFusionEnvironmentFamilyFamilyMaintenancePolicy[]; /** * 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; }; readonly fusionEnvironmentFamilyId: string; /** * The unique identifier (OCID) of the environment family. Can't be changed after creation. */ readonly id: string; /** * When set to True, a subscription update is required for the environment family. */ readonly isSubscriptionUpdateNeeded: boolean; /** * 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; /** * The current state of the FusionEnvironmentFamily. */ readonly state: string; /** * The list of the IDs of the applications subscriptions that are associated with the environment family. */ readonly subscriptionIds: string[]; /** * Environment Specific Guid/ System Name */ readonly systemName: string; /** * The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; readonly timeUpdated: string; } /** * This data source provides details about a specific Fusion Environment Family resource in Oracle Cloud Infrastructure Fusion Apps service. * * Retrieves a fusion environment family identified by its OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFusionEnvironmentFamily = oci.functions.getFusionEnvironmentFamily({ * fusionEnvironmentFamilyId: testFusionEnvironmentFamilyOciFusionAppsFusionEnvironmentFamily.id, * }); * ``` */ export declare function getFusionEnvironmentFamilyOutput(args: GetFusionEnvironmentFamilyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFusionEnvironmentFamily. */ export interface GetFusionEnvironmentFamilyOutputArgs { /** * The unique identifier (OCID) of the FusionEnvironmentFamily. */ fusionEnvironmentFamilyId: pulumi.Input; } //# sourceMappingURL=getFusionEnvironmentFamily.d.ts.map