import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Onboarding resource in Oracle Cloud Infrastructure Fleet Apps Management service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/fleet-management/latest/Onboarding * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/fleet_apps_management * * Onboard a tenant to Fleet Application Management. * The onboarding process lets Fleet Application Management create a few required policies that you need to start using it * and its features. * * ## Import * * Onboardings can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:FleetAppsManagement/onboarding:Onboarding test_onboarding "id" * ``` */ export declare class Onboarding extends pulumi.CustomResource { /** * Get an existing Onboarding resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: OnboardingState, opts?: pulumi.CustomResourceOptions): Onboarding; /** * Returns true if the given object is an instance of Onboarding. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Onboarding; /** * Summary of the Fleet Application Management Onboard Policy. */ readonly appliedPolicies: pulumi.Output; /** * Tenancy OCID * <<<<<<< ours */ readonly compartmentId: pulumi.Output; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * Provide discovery frequency. */ readonly discoveryFrequency: pulumi.Output; /** * 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: pulumi.Output<{ [key: string]: string; }>; /** * A value determining if the cost tracking tag is enabled or not. Allow * Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag. */ readonly isCostTrackingTagEnabled: pulumi.Output; /** * A value determining if the Fleet Application Management tagging is enabled or not. * Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag. * > > > > > > > theirs * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the * new property values */ readonly isFamsTagEnabled: pulumi.Output; /** * Associated region */ readonly resourceRegion: pulumi.Output; /** * The current state of the Onboarding. */ readonly state: pulumi.Output; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: * `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * The time this resource was created. An RFC3339 formatted datetime string. */ readonly timeCreated: pulumi.Output; /** * The time this resource was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: pulumi.Output; /** * The version of Fleet Application Management that the tenant is onboarded to. */ readonly version: pulumi.Output; /** * Create a Onboarding resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: OnboardingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Onboarding resources. */ export interface OnboardingState { /** * Summary of the Fleet Application Management Onboard Policy. */ appliedPolicies?: pulumi.Input[] | undefined>; /** * Tenancy OCID * <<<<<<< ours */ compartmentId?: pulumi.Input; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Provide discovery frequency. */ discoveryFrequency?: pulumi.Input; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * A value determining if the cost tracking tag is enabled or not. Allow * Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag. */ isCostTrackingTagEnabled?: pulumi.Input; /** * A value determining if the Fleet Application Management tagging is enabled or not. * Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag. * > > > > > > > theirs * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the * new property values */ isFamsTagEnabled?: pulumi.Input; /** * Associated region */ resourceRegion?: pulumi.Input; /** * The current state of the Onboarding. */ state?: pulumi.Input; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: * `{"orcl-cloud.free-tier-retained": "true"}` */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The time this resource was created. An RFC3339 formatted datetime string. */ timeCreated?: pulumi.Input; /** * The time this resource was last updated. An RFC3339 formatted datetime string. */ timeUpdated?: pulumi.Input; /** * The version of Fleet Application Management that the tenant is onboarded to. */ version?: pulumi.Input; } /** * The set of arguments for constructing a Onboarding resource. */ export interface OnboardingArgs { /** * Tenancy OCID * <<<<<<< ours */ compartmentId: pulumi.Input; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * A value determining if the cost tracking tag is enabled or not. Allow * Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag. */ isCostTrackingTagEnabled?: pulumi.Input; /** * A value determining if the Fleet Application Management tagging is enabled or not. * Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag. * > > > > > > > theirs * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the * new property values */ isFamsTagEnabled?: pulumi.Input; } //# sourceMappingURL=onboarding.d.ts.map