1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetAppsManagement
  5. FleetResource
Oracle Cloud Infrastructure v2.17.0 published on Friday, Nov 15, 2024 by Pulumi

oci.FleetAppsManagement.FleetResource

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.17.0 published on Friday, Nov 15, 2024 by Pulumi

    This resource provides the Fleet Resource resource in Oracle Cloud Infrastructure Fleet Apps Management service.

    Creates a new FleetResource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testFleetResource = new oci.fleetappsmanagement.FleetResource("test_fleet_resource", {
        compartmentId: compartmentId,
        fleetId: testFleet.id,
        resourceId: testResource.id,
        tenancyId: testTenancy.id,
        resourceRegion: fleetResourceResourceRegion,
        resourceType: fleetResourceResourceType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_fleet_resource = oci.fleet_apps_management.FleetResource("test_fleet_resource",
        compartment_id=compartment_id,
        fleet_id=test_fleet["id"],
        resource_id=test_resource["id"],
        tenancy_id=test_tenancy["id"],
        resource_region=fleet_resource_resource_region,
        resource_type=fleet_resource_resource_type)
    
    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.NewFleetResource(ctx, "test_fleet_resource", &FleetAppsManagement.FleetResourceArgs{
    			CompartmentId:  pulumi.Any(compartmentId),
    			FleetId:        pulumi.Any(testFleet.Id),
    			ResourceId:     pulumi.Any(testResource.Id),
    			TenancyId:      pulumi.Any(testTenancy.Id),
    			ResourceRegion: pulumi.Any(fleetResourceResourceRegion),
    			ResourceType:   pulumi.Any(fleetResourceResourceType),
    		})
    		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 testFleetResource = new Oci.FleetAppsManagement.FleetResource("test_fleet_resource", new()
        {
            CompartmentId = compartmentId,
            FleetId = testFleet.Id,
            ResourceId = testResource.Id,
            TenancyId = testTenancy.Id,
            ResourceRegion = fleetResourceResourceRegion,
            ResourceType = fleetResourceResourceType,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.FleetAppsManagement.FleetResource;
    import com.pulumi.oci.FleetAppsManagement.FleetResourceArgs;
    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 testFleetResource = new FleetResource("testFleetResource", FleetResourceArgs.builder()
                .compartmentId(compartmentId)
                .fleetId(testFleet.id())
                .resourceId(testResource.id())
                .tenancyId(testTenancy.id())
                .resourceRegion(fleetResourceResourceRegion)
                .resourceType(fleetResourceResourceType)
                .build());
    
        }
    }
    
    resources:
      testFleetResource:
        type: oci:FleetAppsManagement:FleetResource
        name: test_fleet_resource
        properties:
          compartmentId: ${compartmentId}
          fleetId: ${testFleet.id}
          resourceId: ${testResource.id}
          tenancyId: ${testTenancy.id}
          resourceRegion: ${fleetResourceResourceRegion}
          resourceType: ${fleetResourceResourceType}
    

    Create FleetResource Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new FleetResource(name: string, args: FleetResourceArgs, opts?: CustomResourceOptions);
    @overload
    def FleetResource(resource_name: str,
                      args: FleetResourceArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def FleetResource(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      compartment_id: Optional[str] = None,
                      fleet_id: Optional[str] = None,
                      resource_id: Optional[str] = None,
                      tenancy_id: Optional[str] = None,
                      resource_region: Optional[str] = None,
                      resource_type: Optional[str] = None)
    func NewFleetResource(ctx *Context, name string, args FleetResourceArgs, opts ...ResourceOption) (*FleetResource, error)
    public FleetResource(string name, FleetResourceArgs args, CustomResourceOptions? opts = null)
    public FleetResource(String name, FleetResourceArgs args)
    public FleetResource(String name, FleetResourceArgs args, CustomResourceOptions options)
    
    type: oci:FleetAppsManagement:FleetResource
    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 FleetResourceArgs
    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 FleetResourceArgs
    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 FleetResourceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FleetResourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FleetResourceArgs
    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 fleetResourceResource = new Oci.FleetAppsManagement.FleetResource("fleetResourceResource", new()
    {
        CompartmentId = "string",
        FleetId = "string",
        ResourceId = "string",
        TenancyId = "string",
        ResourceRegion = "string",
        ResourceType = "string",
    });
    
    example, err := FleetAppsManagement.NewFleetResource(ctx, "fleetResourceResource", &FleetAppsManagement.FleetResourceArgs{
    	CompartmentId:  pulumi.String("string"),
    	FleetId:        pulumi.String("string"),
    	ResourceId:     pulumi.String("string"),
    	TenancyId:      pulumi.String("string"),
    	ResourceRegion: pulumi.String("string"),
    	ResourceType:   pulumi.String("string"),
    })
    
    var fleetResourceResource = new FleetResource("fleetResourceResource", FleetResourceArgs.builder()
        .compartmentId("string")
        .fleetId("string")
        .resourceId("string")
        .tenancyId("string")
        .resourceRegion("string")
        .resourceType("string")
        .build());
    
    fleet_resource_resource = oci.fleet_apps_management.FleetResource("fleetResourceResource",
        compartment_id="string",
        fleet_id="string",
        resource_id="string",
        tenancy_id="string",
        resource_region="string",
        resource_type="string")
    
    const fleetResourceResource = new oci.fleetappsmanagement.FleetResource("fleetResourceResource", {
        compartmentId: "string",
        fleetId: "string",
        resourceId: "string",
        tenancyId: "string",
        resourceRegion: "string",
        resourceType: "string",
    });
    
    type: oci:FleetAppsManagement:FleetResource
    properties:
        compartmentId: string
        fleetId: string
        resourceId: string
        resourceRegion: string
        resourceType: string
        tenancyId: string
    

    FleetResource 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 FleetResource resource accepts the following input properties:

    CompartmentId string
    (Updatable) OCID of the compartment to which the resource belongs to.
    FleetId string
    unique Fleet identifier
    ResourceId string
    The OCID of the resource.
    TenancyId string

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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
    ResourceType string
    Type of the Resource.
    CompartmentId string
    (Updatable) OCID of the compartment to which the resource belongs to.
    FleetId string
    unique Fleet identifier
    ResourceId string
    The OCID of the resource.
    TenancyId string

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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
    ResourceType string
    Type of the Resource.
    compartmentId String
    (Updatable) OCID of the compartment to which the resource belongs to.
    fleetId String
    unique Fleet identifier
    resourceId String
    The OCID of the resource.
    tenancyId String

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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
    resourceType String
    Type of the Resource.
    compartmentId string
    (Updatable) OCID of the compartment to which the resource belongs to.
    fleetId string
    unique Fleet identifier
    resourceId string
    The OCID of the resource.
    tenancyId string

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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
    resourceType string
    Type of the Resource.
    compartment_id str
    (Updatable) OCID of the compartment to which the resource belongs to.
    fleet_id str
    unique Fleet identifier
    resource_id str
    The OCID of the resource.
    tenancy_id str

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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
    resource_type str
    Type of the Resource.
    compartmentId String
    (Updatable) OCID of the compartment to which the resource belongs to.
    fleetId String
    unique Fleet identifier
    resourceId String
    The OCID of the resource.
    tenancyId String

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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
    resourceType String
    Type of the Resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the FleetResource resource produces the following output properties:

    ApplicationType string
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    Compartment string
    Resource Compartment
    ComplianceState string
    Compliance State of the Resource
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    EnvironmentType string
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Product string
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    ProductCount int
    Count of products within the resource.
    State string
    The current state of the FleetResource.
    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"}
    TargetCount int
    Count of targets within the resource.
    TenancyName string
    Resource Tenancy Name
    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.
    ApplicationType string
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    Compartment string
    Resource Compartment
    ComplianceState string
    Compliance State of the Resource
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    EnvironmentType string
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Product string
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    ProductCount int
    Count of products within the resource.
    State string
    The current state of the FleetResource.
    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"}
    TargetCount int
    Count of targets within the resource.
    TenancyName string
    Resource Tenancy Name
    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.
    applicationType String
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    compartment String
    Resource Compartment
    complianceState String
    Compliance State of the Resource
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    environmentType String
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    product String
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    productCount Integer
    Count of products within the resource.
    state String
    The current state of the FleetResource.
    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"}
    targetCount Integer
    Count of targets within the resource.
    tenancyName String
    Resource Tenancy Name
    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.
    applicationType string
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    compartment string
    Resource Compartment
    complianceState string
    Compliance State of the Resource
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    environmentType string
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    product string
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    productCount number
    Count of products within the resource.
    state string
    The current state of the FleetResource.
    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"}
    targetCount number
    Count of targets within the resource.
    tenancyName string
    Resource Tenancy Name
    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.
    application_type str
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    compartment str
    Resource Compartment
    compliance_state str
    Compliance State of the Resource
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    environment_type str
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    product str
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    product_count int
    Count of products within the resource.
    state str
    The current state of the FleetResource.
    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"}
    target_count int
    Count of targets within the resource.
    tenancy_name str
    Resource Tenancy Name
    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.
    applicationType String
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    compartment String
    Resource Compartment
    complianceState String
    Compliance State of the Resource
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    environmentType String
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    product String
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    productCount Number
    Count of products within the resource.
    state String
    The current state of the FleetResource.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetCount Number
    Count of targets within the resource.
    tenancyName String
    Resource Tenancy Name
    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.

    Look up Existing FleetResource Resource

    Get an existing FleetResource 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?: FleetResourceState, opts?: CustomResourceOptions): FleetResource
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_type: Optional[str] = None,
            compartment: Optional[str] = None,
            compartment_id: Optional[str] = None,
            compliance_state: Optional[str] = None,
            display_name: Optional[str] = None,
            environment_type: Optional[str] = None,
            fleet_id: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            product: Optional[str] = None,
            product_count: Optional[int] = None,
            resource_id: Optional[str] = None,
            resource_region: Optional[str] = None,
            resource_type: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            target_count: Optional[int] = None,
            tenancy_id: Optional[str] = None,
            tenancy_name: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> FleetResource
    func GetFleetResource(ctx *Context, name string, id IDInput, state *FleetResourceState, opts ...ResourceOption) (*FleetResource, error)
    public static FleetResource Get(string name, Input<string> id, FleetResourceState? state, CustomResourceOptions? opts = null)
    public static FleetResource get(String name, Output<String> id, FleetResourceState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    ApplicationType string
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    Compartment string
    Resource Compartment
    CompartmentId string
    (Updatable) OCID of the compartment to which the resource belongs to.
    ComplianceState string
    Compliance State of the Resource
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    EnvironmentType string
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    FleetId string
    unique Fleet identifier
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Product string
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    ProductCount int
    Count of products within the resource.
    ResourceId string
    The OCID of the resource.
    ResourceRegion string
    Associated region
    ResourceType string
    Type of the Resource.
    State string
    The current state of the FleetResource.
    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"}
    TargetCount int
    Count of targets within the resource.
    TenancyId string

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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

    TenancyName string
    Resource Tenancy Name
    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.
    ApplicationType string
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    Compartment string
    Resource Compartment
    CompartmentId string
    (Updatable) OCID of the compartment to which the resource belongs to.
    ComplianceState string
    Compliance State of the Resource
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    EnvironmentType string
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    FleetId string
    unique Fleet identifier
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Product string
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    ProductCount int
    Count of products within the resource.
    ResourceId string
    The OCID of the resource.
    ResourceRegion string
    Associated region
    ResourceType string
    Type of the Resource.
    State string
    The current state of the FleetResource.
    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"}
    TargetCount int
    Count of targets within the resource.
    TenancyId string

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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

    TenancyName string
    Resource Tenancy Name
    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.
    applicationType String
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    compartment String
    Resource Compartment
    compartmentId String
    (Updatable) OCID of the compartment to which the resource belongs to.
    complianceState String
    Compliance State of the Resource
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    environmentType String
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    fleetId String
    unique Fleet identifier
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    product String
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    productCount Integer
    Count of products within the resource.
    resourceId String
    The OCID of the resource.
    resourceRegion String
    Associated region
    resourceType String
    Type of the Resource.
    state String
    The current state of the FleetResource.
    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"}
    targetCount Integer
    Count of targets within the resource.
    tenancyId String

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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

    tenancyName String
    Resource Tenancy Name
    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.
    applicationType string
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    compartment string
    Resource Compartment
    compartmentId string
    (Updatable) OCID of the compartment to which the resource belongs to.
    complianceState string
    Compliance State of the Resource
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    environmentType string
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    fleetId string
    unique Fleet identifier
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    product string
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    productCount number
    Count of products within the resource.
    resourceId string
    The OCID of the resource.
    resourceRegion string
    Associated region
    resourceType string
    Type of the Resource.
    state string
    The current state of the FleetResource.
    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"}
    targetCount number
    Count of targets within the resource.
    tenancyId string

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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

    tenancyName string
    Resource Tenancy Name
    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.
    application_type str
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    compartment str
    Resource Compartment
    compartment_id str
    (Updatable) OCID of the compartment to which the resource belongs to.
    compliance_state str
    Compliance State of the Resource
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    environment_type str
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    fleet_id str
    unique Fleet identifier
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    product str
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    product_count int
    Count of products within the resource.
    resource_id str
    The OCID of the resource.
    resource_region str
    Associated region
    resource_type str
    Type of the Resource.
    state str
    The current state of the FleetResource.
    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"}
    target_count int
    Count of targets within the resource.
    tenancy_id str

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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

    tenancy_name str
    Resource Tenancy Name
    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.
    applicationType String
    Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    compartment String
    Resource Compartment
    compartmentId String
    (Updatable) OCID of the compartment to which the resource belongs to.
    complianceState String
    Compliance State of the Resource
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    environmentType String
    Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
    fleetId String
    unique Fleet identifier
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    product String
    Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
    productCount Number
    Count of products within the resource.
    resourceId String
    The OCID of the resource.
    resourceRegion String
    Associated region
    resourceType String
    Type of the Resource.
    state String
    The current state of the FleetResource.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetCount Number
    Count of targets within the resource.
    tenancyId String

    (Updatable) OCID of the tenancy to which the resource belongs to.

    ** 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

    tenancyName String
    Resource Tenancy Name
    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.
    oci logo
    Oracle Cloud Infrastructure v2.17.0 published on Friday, Nov 15, 2024 by Pulumi