oci.FleetAppsManagement.Onboarding
Explore with Pulumi AI
This resource provides the Onboarding resource in Oracle Cloud Infrastructure Fleet Apps Management service.
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.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOnboarding = new oci.fleetappsmanagement.Onboarding("test_onboarding", {
    compartmentId: compartmentId,
    isCostTrackingTagEnabled: onboardingIsCostTrackingTagEnabled,
    isFamsTagEnabled: onboardingIsFamsTagEnabled,
});
import pulumi
import pulumi_oci as oci
test_onboarding = oci.fleet_apps_management.Onboarding("test_onboarding",
    compartment_id=compartment_id,
    is_cost_tracking_tag_enabled=onboarding_is_cost_tracking_tag_enabled,
    is_fams_tag_enabled=onboarding_is_fams_tag_enabled)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/fleetappsmanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fleetappsmanagement.NewOnboarding(ctx, "test_onboarding", &fleetappsmanagement.OnboardingArgs{
			CompartmentId:            pulumi.Any(compartmentId),
			IsCostTrackingTagEnabled: pulumi.Any(onboardingIsCostTrackingTagEnabled),
			IsFamsTagEnabled:         pulumi.Any(onboardingIsFamsTagEnabled),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testOnboarding = new Oci.FleetAppsManagement.Onboarding("test_onboarding", new()
    {
        CompartmentId = compartmentId,
        IsCostTrackingTagEnabled = onboardingIsCostTrackingTagEnabled,
        IsFamsTagEnabled = onboardingIsFamsTagEnabled,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FleetAppsManagement.Onboarding;
import com.pulumi.oci.FleetAppsManagement.OnboardingArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var testOnboarding = new Onboarding("testOnboarding", OnboardingArgs.builder()
            .compartmentId(compartmentId)
            .isCostTrackingTagEnabled(onboardingIsCostTrackingTagEnabled)
            .isFamsTagEnabled(onboardingIsFamsTagEnabled)
            .build());
    }
}
resources:
  testOnboarding:
    type: oci:FleetAppsManagement:Onboarding
    name: test_onboarding
    properties:
      compartmentId: ${compartmentId}
      isCostTrackingTagEnabled: ${onboardingIsCostTrackingTagEnabled}
      isFamsTagEnabled: ${onboardingIsFamsTagEnabled}
Create Onboarding Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Onboarding(name: string, args: OnboardingArgs, opts?: CustomResourceOptions);@overload
def Onboarding(resource_name: str,
               args: OnboardingArgs,
               opts: Optional[ResourceOptions] = None)
@overload
def Onboarding(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               compartment_id: Optional[str] = None,
               is_cost_tracking_tag_enabled: Optional[bool] = None,
               is_fams_tag_enabled: Optional[bool] = None)func NewOnboarding(ctx *Context, name string, args OnboardingArgs, opts ...ResourceOption) (*Onboarding, error)public Onboarding(string name, OnboardingArgs args, CustomResourceOptions? opts = null)
public Onboarding(String name, OnboardingArgs args)
public Onboarding(String name, OnboardingArgs args, CustomResourceOptions options)
type: oci:FleetAppsManagement:Onboarding
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args OnboardingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OnboardingArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OnboardingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OnboardingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OnboardingArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var onboardingResource = new Oci.FleetAppsManagement.Onboarding("onboardingResource", new()
{
    CompartmentId = "string",
    IsCostTrackingTagEnabled = false,
    IsFamsTagEnabled = false,
});
example, err := FleetAppsManagement.NewOnboarding(ctx, "onboardingResource", &FleetAppsManagement.OnboardingArgs{
	CompartmentId:            pulumi.String("string"),
	IsCostTrackingTagEnabled: pulumi.Bool(false),
	IsFamsTagEnabled:         pulumi.Bool(false),
})
var onboardingResource = new Onboarding("onboardingResource", OnboardingArgs.builder()
    .compartmentId("string")
    .isCostTrackingTagEnabled(false)
    .isFamsTagEnabled(false)
    .build());
onboarding_resource = oci.fleet_apps_management.Onboarding("onboardingResource",
    compartment_id="string",
    is_cost_tracking_tag_enabled=False,
    is_fams_tag_enabled=False)
const onboardingResource = new oci.fleetappsmanagement.Onboarding("onboardingResource", {
    compartmentId: "string",
    isCostTrackingTagEnabled: false,
    isFamsTagEnabled: false,
});
type: oci:FleetAppsManagement:Onboarding
properties:
    compartmentId: string
    isCostTrackingTagEnabled: false
    isFamsTagEnabled: false
Onboarding Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Onboarding resource accepts the following input properties:
- CompartmentId string
- Tenancy OCID
- IsCost boolTracking Tag Enabled 
- 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.
- IsFams boolTag Enabled 
- 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. - ** 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 
- CompartmentId string
- Tenancy OCID
- IsCost boolTracking Tag Enabled 
- 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.
- IsFams boolTag Enabled 
- 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. - ** 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 
- compartmentId String
- Tenancy OCID
- isCost BooleanTracking Tag Enabled 
- 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.
- isFams BooleanTag Enabled 
- 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. - ** 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 
- compartmentId string
- Tenancy OCID
- isCost booleanTracking Tag Enabled 
- 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.
- isFams booleanTag Enabled 
- 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. - ** 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 
- compartment_id str
- Tenancy OCID
- is_cost_ booltracking_ tag_ enabled 
- 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.
- is_fams_ booltag_ enabled 
- 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. - ** 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 
- compartmentId String
- Tenancy OCID
- isCost BooleanTracking Tag Enabled 
- 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.
- isFams BooleanTag Enabled 
- 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. - ** 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 
Outputs
All input properties are implicitly available as output properties. Additionally, the Onboarding resource produces the following output properties:
- AppliedPolicies List<OnboardingApplied Policy> 
- Summary of the Fleet Application Management Onboard Policy.
- DiscoveryFrequency string
- Provide discovery frequency.
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<OnboardingItem> 
- List of Fleet Application Management Onboardings.
- ResourceRegion string
- Associated region
- State string
- The current state of the Onboarding.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- Version string
- The version of Fleet Application Management that the tenant is onboarded to.
- AppliedPolicies []OnboardingApplied Policy 
- Summary of the Fleet Application Management Onboard Policy.
- DiscoveryFrequency string
- Provide discovery frequency.
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]OnboardingItem 
- List of Fleet Application Management Onboardings.
- ResourceRegion string
- Associated region
- State string
- The current state of the Onboarding.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- Version string
- The version of Fleet Application Management that the tenant is onboarded to.
- appliedPolicies List<OnboardingApplied Policy> 
- Summary of the Fleet Application Management Onboard Policy.
- discoveryFrequency String
- Provide discovery frequency.
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<OnboardingItem> 
- List of Fleet Application Management Onboardings.
- resourceRegion String
- Associated region
- state String
- The current state of the Onboarding.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version String
- The version of Fleet Application Management that the tenant is onboarded to.
- appliedPolicies OnboardingApplied Policy[] 
- Summary of the Fleet Application Management Onboard Policy.
- discoveryFrequency string
- Provide discovery frequency.
- id string
- The provider-assigned unique ID for this managed resource.
- items
OnboardingItem[] 
- List of Fleet Application Management Onboardings.
- resourceRegion string
- Associated region
- state string
- The current state of the Onboarding.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version string
- The version of Fleet Application Management that the tenant is onboarded to.
- applied_policies Sequence[fleetappsmanagement.Onboarding Applied Policy] 
- Summary of the Fleet Application Management Onboard Policy.
- discovery_frequency str
- Provide discovery frequency.
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[fleetappsmanagement.Onboarding Item] 
- List of Fleet Application Management Onboardings.
- resource_region str
- Associated region
- state str
- The current state of the Onboarding.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time this resource was created. An RFC3339 formatted datetime string.
- time_updated str
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version str
- The version of Fleet Application Management that the tenant is onboarded to.
- appliedPolicies List<Property Map>
- Summary of the Fleet Application Management Onboard Policy.
- discoveryFrequency String
- Provide discovery frequency.
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- List of Fleet Application Management Onboardings.
- resourceRegion String
- Associated region
- state String
- The current state of the Onboarding.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version String
- The version of Fleet Application Management that the tenant is onboarded to.
Look up Existing Onboarding Resource
Get an existing Onboarding resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OnboardingState, opts?: CustomResourceOptions): Onboarding@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        applied_policies: Optional[Sequence[_fleetappsmanagement.OnboardingAppliedPolicyArgs]] = None,
        compartment_id: Optional[str] = None,
        discovery_frequency: Optional[str] = None,
        is_cost_tracking_tag_enabled: Optional[bool] = None,
        is_fams_tag_enabled: Optional[bool] = None,
        items: Optional[Sequence[_fleetappsmanagement.OnboardingItemArgs]] = None,
        resource_region: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None,
        version: Optional[str] = None) -> Onboardingfunc GetOnboarding(ctx *Context, name string, id IDInput, state *OnboardingState, opts ...ResourceOption) (*Onboarding, error)public static Onboarding Get(string name, Input<string> id, OnboardingState? state, CustomResourceOptions? opts = null)public static Onboarding get(String name, Output<String> id, OnboardingState state, CustomResourceOptions options)resources:  _:    type: oci:FleetAppsManagement:Onboarding    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AppliedPolicies List<OnboardingApplied Policy> 
- Summary of the Fleet Application Management Onboard Policy.
- CompartmentId string
- Tenancy OCID
- DiscoveryFrequency string
- Provide discovery frequency.
- IsCost boolTracking Tag Enabled 
- 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.
- IsFams boolTag Enabled 
- 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. - ** 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 
- Items
List<OnboardingItem> 
- List of Fleet Application Management Onboardings.
- ResourceRegion string
- Associated region
- State string
- The current state of the Onboarding.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- Version string
- The version of Fleet Application Management that the tenant is onboarded to.
- AppliedPolicies []OnboardingApplied Policy Args 
- Summary of the Fleet Application Management Onboard Policy.
- CompartmentId string
- Tenancy OCID
- DiscoveryFrequency string
- Provide discovery frequency.
- IsCost boolTracking Tag Enabled 
- 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.
- IsFams boolTag Enabled 
- 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. - ** 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 
- Items
[]OnboardingItem Args 
- List of Fleet Application Management Onboardings.
- ResourceRegion string
- Associated region
- State string
- The current state of the Onboarding.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- Version string
- The version of Fleet Application Management that the tenant is onboarded to.
- appliedPolicies List<OnboardingApplied Policy> 
- Summary of the Fleet Application Management Onboard Policy.
- compartmentId String
- Tenancy OCID
- discoveryFrequency String
- Provide discovery frequency.
- isCost BooleanTracking Tag Enabled 
- 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.
- isFams BooleanTag Enabled 
- 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. - ** 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 
- items
List<OnboardingItem> 
- List of Fleet Application Management Onboardings.
- resourceRegion String
- Associated region
- state String
- The current state of the Onboarding.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version String
- The version of Fleet Application Management that the tenant is onboarded to.
- appliedPolicies OnboardingApplied Policy[] 
- Summary of the Fleet Application Management Onboard Policy.
- compartmentId string
- Tenancy OCID
- discoveryFrequency string
- Provide discovery frequency.
- isCost booleanTracking Tag Enabled 
- 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.
- isFams booleanTag Enabled 
- 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. - ** 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 
- items
OnboardingItem[] 
- List of Fleet Application Management Onboardings.
- resourceRegion string
- Associated region
- state string
- The current state of the Onboarding.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version string
- The version of Fleet Application Management that the tenant is onboarded to.
- applied_policies Sequence[fleetappsmanagement.Onboarding Applied Policy Args] 
- Summary of the Fleet Application Management Onboard Policy.
- compartment_id str
- Tenancy OCID
- discovery_frequency str
- Provide discovery frequency.
- is_cost_ booltracking_ tag_ enabled 
- 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.
- is_fams_ booltag_ enabled 
- 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. - ** 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 
- items
Sequence[fleetappsmanagement.Onboarding Item Args] 
- List of Fleet Application Management Onboardings.
- resource_region str
- Associated region
- state str
- The current state of the Onboarding.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time this resource was created. An RFC3339 formatted datetime string.
- time_updated str
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version str
- The version of Fleet Application Management that the tenant is onboarded to.
- appliedPolicies List<Property Map>
- Summary of the Fleet Application Management Onboard Policy.
- compartmentId String
- Tenancy OCID
- discoveryFrequency String
- Provide discovery frequency.
- isCost BooleanTracking Tag Enabled 
- 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.
- isFams BooleanTag Enabled 
- 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. - ** 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 
- items List<Property Map>
- List of Fleet Application Management Onboardings.
- resourceRegion String
- Associated region
- state String
- The current state of the Onboarding.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version String
- The version of Fleet Application Management that the tenant is onboarded to.
Supporting Types
OnboardingAppliedPolicy, OnboardingAppliedPolicyArgs      
- Id string
- The unique id of the resource.
- Statements List<string>
- Policy statements.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- Id string
- The unique id of the resource.
- Statements []string
- Policy statements.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- id String
- The unique id of the resource.
- statements List<String>
- Policy statements.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
- id string
- The unique id of the resource.
- statements string[]
- Policy statements.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- id str
- The unique id of the resource.
- statements Sequence[str]
- Policy statements.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time this resource was created. An RFC3339 formatted datetime string.
- time_updated str
- The time this resource was last updated. An RFC3339 formatted datetime string.
- id String
- The unique id of the resource.
- statements List<String>
- Policy statements.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
OnboardingItem, OnboardingItemArgs    
- AppliedPolicies List<OnboardingItem Applied Policy> 
- Summary of the Fleet Application Management Onboard Policy.
- CompartmentId string
- Tenancy OCID
- DiscoveryFrequency string
- Provide discovery frequency.
- Id string
- The unique id of the resource.
- IsCost boolTracking Tag Enabled 
- 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.
- IsFams boolTag Enabled 
- 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. - ** 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 
- ResourceRegion string
- Associated region
- State string
- The current state of the Onboarding.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- Version string
- The version of Fleet Application Management that the tenant is onboarded to.
- AppliedPolicies []OnboardingItem Applied Policy 
- Summary of the Fleet Application Management Onboard Policy.
- CompartmentId string
- Tenancy OCID
- DiscoveryFrequency string
- Provide discovery frequency.
- Id string
- The unique id of the resource.
- IsCost boolTracking Tag Enabled 
- 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.
- IsFams boolTag Enabled 
- 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. - ** 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 
- ResourceRegion string
- Associated region
- State string
- The current state of the Onboarding.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- Version string
- The version of Fleet Application Management that the tenant is onboarded to.
- appliedPolicies List<OnboardingItem Applied Policy> 
- Summary of the Fleet Application Management Onboard Policy.
- compartmentId String
- Tenancy OCID
- discoveryFrequency String
- Provide discovery frequency.
- id String
- The unique id of the resource.
- isCost BooleanTracking Tag Enabled 
- 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.
- isFams BooleanTag Enabled 
- 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. - ** 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 
- resourceRegion String
- Associated region
- state String
- The current state of the Onboarding.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version String
- The version of Fleet Application Management that the tenant is onboarded to.
- appliedPolicies OnboardingItem Applied Policy[] 
- Summary of the Fleet Application Management Onboard Policy.
- compartmentId string
- Tenancy OCID
- discoveryFrequency string
- Provide discovery frequency.
- id string
- The unique id of the resource.
- isCost booleanTracking Tag Enabled 
- 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.
- isFams booleanTag Enabled 
- 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. - ** 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 
- resourceRegion string
- Associated region
- state string
- The current state of the Onboarding.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version string
- The version of Fleet Application Management that the tenant is onboarded to.
- applied_policies Sequence[fleetappsmanagement.Onboarding Item Applied Policy] 
- Summary of the Fleet Application Management Onboard Policy.
- compartment_id str
- Tenancy OCID
- discovery_frequency str
- Provide discovery frequency.
- id str
- The unique id of the resource.
- is_cost_ booltracking_ tag_ enabled 
- 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.
- is_fams_ booltag_ enabled 
- 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. - ** 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 
- resource_region str
- Associated region
- state str
- The current state of the Onboarding.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time this resource was created. An RFC3339 formatted datetime string.
- time_updated str
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version str
- The version of Fleet Application Management that the tenant is onboarded to.
- appliedPolicies List<Property Map>
- Summary of the Fleet Application Management Onboard Policy.
- compartmentId String
- Tenancy OCID
- discoveryFrequency String
- Provide discovery frequency.
- id String
- The unique id of the resource.
- isCost BooleanTracking Tag Enabled 
- 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.
- isFams BooleanTag Enabled 
- 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. - ** 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 
- resourceRegion String
- Associated region
- state String
- The current state of the Onboarding.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
- version String
- The version of Fleet Application Management that the tenant is onboarded to.
OnboardingItemAppliedPolicy, OnboardingItemAppliedPolicyArgs        
- Id string
- The unique id of the resource.
- Statements List<string>
- Policy statements.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- Id string
- The unique id of the resource.
- Statements []string
- Policy statements.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- id String
- The unique id of the resource.
- statements List<String>
- Policy statements.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
- id string
- The unique id of the resource.
- statements string[]
- Policy statements.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- id str
- The unique id of the resource.
- statements Sequence[str]
- Policy statements.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time this resource was created. An RFC3339 formatted datetime string.
- time_updated str
- The time this resource was last updated. An RFC3339 formatted datetime string.
- id String
- The unique id of the resource.
- statements List<String>
- Policy statements.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
Import
Import is not supported for this resource.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.