1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetAppsManagement
  5. Onboarding
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

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,
});
Copy
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)
Copy
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
	})
}
Copy
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,
    });

});
Copy
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());

    }
}
Copy
resources:
  testOnboarding:
    type: oci:FleetAppsManagement:Onboarding
    name: test_onboarding
    properties:
      compartmentId: ${compartmentId}
      isCostTrackingTagEnabled: ${onboardingIsCostTrackingTagEnabled}
      isFamsTagEnabled: ${onboardingIsFamsTagEnabled}
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. OnboardingArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. OnboardingArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OnboardingArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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,
});
Copy
example, err := FleetAppsManagement.NewOnboarding(ctx, "onboardingResource", &FleetAppsManagement.OnboardingArgs{
	CompartmentId:            pulumi.String("string"),
	IsCostTrackingTagEnabled: pulumi.Bool(false),
	IsFamsTagEnabled:         pulumi.Bool(false),
})
Copy
var onboardingResource = new Onboarding("onboardingResource", OnboardingArgs.builder()
    .compartmentId("string")
    .isCostTrackingTagEnabled(false)
    .isFamsTagEnabled(false)
    .build());
Copy
onboarding_resource = oci.fleet_apps_management.Onboarding("onboardingResource",
    compartment_id="string",
    is_cost_tracking_tag_enabled=False,
    is_fams_tag_enabled=False)
Copy
const onboardingResource = new oci.fleetappsmanagement.Onboarding("onboardingResource", {
    compartmentId: "string",
    isCostTrackingTagEnabled: false,
    isFamsTagEnabled: false,
});
Copy
type: oci:FleetAppsManagement:Onboarding
properties:
    compartmentId: string
    isCostTrackingTagEnabled: false
    isFamsTagEnabled: false
Copy

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
This property is required.
Changes to this property will trigger replacement.
string
Tenancy OCID
IsCostTrackingTagEnabled Changes to this property will trigger replacement. bool
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.
IsFamsTagEnabled Changes to this property will trigger replacement. bool

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
This property is required.
Changes to this property will trigger replacement.
string
Tenancy OCID
IsCostTrackingTagEnabled Changes to this property will trigger replacement. bool
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.
IsFamsTagEnabled Changes to this property will trigger replacement. bool

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
This property is required.
Changes to this property will trigger replacement.
String
Tenancy OCID
isCostTrackingTagEnabled Changes to this property will trigger replacement. Boolean
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.
isFamsTagEnabled Changes to this property will trigger replacement. Boolean

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
This property is required.
Changes to this property will trigger replacement.
string
Tenancy OCID
isCostTrackingTagEnabled Changes to this property will trigger replacement. boolean
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.
isFamsTagEnabled Changes to this property will trigger replacement. boolean

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
This property is required.
Changes to this property will trigger replacement.
str
Tenancy OCID
is_cost_tracking_tag_enabled Changes to this property will trigger replacement. bool
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_tag_enabled Changes to this property will trigger replacement. bool

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
This property is required.
Changes to this property will trigger replacement.
String
Tenancy OCID
isCostTrackingTagEnabled Changes to this property will trigger replacement. Boolean
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.
isFamsTagEnabled Changes to this property will trigger replacement. Boolean

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<OnboardingAppliedPolicy>
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.
SystemTags 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 []OnboardingAppliedPolicy
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.
SystemTags 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<OnboardingAppliedPolicy>
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.
systemTags 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 OnboardingAppliedPolicy[]
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.
systemTags {[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.OnboardingAppliedPolicy]
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.OnboardingItem]
List of Fleet Application Management Onboardings.
resource_region str
Associated region
state str
The current state of the Onboarding.
system_tags 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.
systemTags 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) -> Onboarding
func 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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AppliedPolicies List<OnboardingAppliedPolicy>
Summary of the Fleet Application Management Onboard Policy.
CompartmentId Changes to this property will trigger replacement. string
Tenancy OCID
DiscoveryFrequency string
Provide discovery frequency.
IsCostTrackingTagEnabled Changes to this property will trigger replacement. bool
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.
IsFamsTagEnabled Changes to this property will trigger replacement. bool

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.
SystemTags 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 []OnboardingAppliedPolicyArgs
Summary of the Fleet Application Management Onboard Policy.
CompartmentId Changes to this property will trigger replacement. string
Tenancy OCID
DiscoveryFrequency string
Provide discovery frequency.
IsCostTrackingTagEnabled Changes to this property will trigger replacement. bool
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.
IsFamsTagEnabled Changes to this property will trigger replacement. bool

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 []OnboardingItemArgs
List of Fleet Application Management Onboardings.
ResourceRegion string
Associated region
State string
The current state of the Onboarding.
SystemTags 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<OnboardingAppliedPolicy>
Summary of the Fleet Application Management Onboard Policy.
compartmentId Changes to this property will trigger replacement. String
Tenancy OCID
discoveryFrequency String
Provide discovery frequency.
isCostTrackingTagEnabled Changes to this property will trigger replacement. Boolean
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.
isFamsTagEnabled Changes to this property will trigger replacement. Boolean

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.
systemTags 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 OnboardingAppliedPolicy[]
Summary of the Fleet Application Management Onboard Policy.
compartmentId Changes to this property will trigger replacement. string
Tenancy OCID
discoveryFrequency string
Provide discovery frequency.
isCostTrackingTagEnabled Changes to this property will trigger replacement. boolean
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.
isFamsTagEnabled Changes to this property will trigger replacement. boolean

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.
systemTags {[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.OnboardingAppliedPolicyArgs]
Summary of the Fleet Application Management Onboard Policy.
compartment_id Changes to this property will trigger replacement. str
Tenancy OCID
discovery_frequency str
Provide discovery frequency.
is_cost_tracking_tag_enabled Changes to this property will trigger replacement. bool
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_tag_enabled Changes to this property will trigger replacement. bool

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.OnboardingItemArgs]
List of Fleet Application Management Onboardings.
resource_region str
Associated region
state str
The current state of the Onboarding.
system_tags 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 Changes to this property will trigger replacement. String
Tenancy OCID
discoveryFrequency String
Provide discovery frequency.
isCostTrackingTagEnabled Changes to this property will trigger replacement. Boolean
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.
isFamsTagEnabled Changes to this property will trigger replacement. Boolean

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.
systemTags 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.
SystemTags 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.
SystemTags 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.
systemTags 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.
systemTags {[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.
system_tags 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.
systemTags 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<OnboardingItemAppliedPolicy>
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.
IsCostTrackingTagEnabled bool
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.
IsFamsTagEnabled bool

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.
SystemTags 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 []OnboardingItemAppliedPolicy
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.
IsCostTrackingTagEnabled bool
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.
IsFamsTagEnabled bool

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.
SystemTags 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<OnboardingItemAppliedPolicy>
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.
isCostTrackingTagEnabled Boolean
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.
isFamsTagEnabled Boolean

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.
systemTags 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 OnboardingItemAppliedPolicy[]
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.
isCostTrackingTagEnabled boolean
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.
isFamsTagEnabled boolean

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.
systemTags {[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.OnboardingItemAppliedPolicy]
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_tracking_tag_enabled bool
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_tag_enabled bool

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.
system_tags 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.
isCostTrackingTagEnabled Boolean
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.
isFamsTagEnabled Boolean

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.
systemTags 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.
SystemTags 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.
SystemTags 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.
systemTags 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.
systemTags {[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.
system_tags 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.
systemTags 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 oci Terraform Provider.