oci.FleetAppsManagement.FleetResource
Explore with Pulumi AI
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:
- Compartment
Id string - (Updatable) OCID of the compartment to which the resource belongs to.
- Fleet
Id string - unique Fleet identifier
- Resource
Id string - The OCID of the resource.
- Tenancy
Id 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
- Resource
Region string - Associated region
- Resource
Type string - Type of the Resource.
- Compartment
Id string - (Updatable) OCID of the compartment to which the resource belongs to.
- Fleet
Id string - unique Fleet identifier
- Resource
Id string - The OCID of the resource.
- Tenancy
Id 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
- Resource
Region string - Associated region
- Resource
Type string - Type of the Resource.
- compartment
Id String - (Updatable) OCID of the compartment to which the resource belongs to.
- fleet
Id String - unique Fleet identifier
- resource
Id String - The OCID of the resource.
- tenancy
Id 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
- resource
Region String - Associated region
- resource
Type String - Type of the Resource.
- compartment
Id string - (Updatable) OCID of the compartment to which the resource belongs to.
- fleet
Id string - unique Fleet identifier
- resource
Id string - The OCID of the resource.
- tenancy
Id 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
- resource
Region string - Associated region
- resource
Type 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.
- compartment
Id String - (Updatable) OCID of the compartment to which the resource belongs to.
- fleet
Id String - unique Fleet identifier
- resource
Id String - The OCID of the resource.
- tenancy
Id 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
- resource
Region String - Associated region
- resource
Type String - Type of the Resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the FleetResource resource produces the following output properties:
- Application
Type 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
- Compliance
State string - Compliance State of the Resource
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Environment
Type 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.
- Lifecycle
Details 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
- Product
Count int - Count of products within the resource.
- State string
- The current state of the FleetResource.
- Dictionary<string, string>
- 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 string - Resource Tenancy Name
- Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- Application
Type 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
- Compliance
State string - Compliance State of the Resource
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Environment
Type 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.
- Lifecycle
Details 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
- Product
Count int - Count of products within the resource.
- State string
- The current state of the FleetResource.
- map[string]string
- 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 string - Resource Tenancy Name
- Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- application
Type 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
- compliance
State String - Compliance State of the Resource
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- environment
Type 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.
- lifecycle
Details 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
- product
Count Integer - Count of products within the resource.
- state String
- The current state of the FleetResource.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Count Integer - Count of targets within the resource.
- tenancy
Name String - Resource Tenancy Name
- time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
- application
Type 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
- compliance
State string - Compliance State of the Resource
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- environment
Type 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.
- lifecycle
Details 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
- product
Count number - Count of products within the resource.
- state string
- The current state of the FleetResource.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Count number - Count of targets within the resource.
- tenancy
Name string - Resource Tenancy Name
- time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated 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.
- 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.
- application
Type 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
- compliance
State String - Compliance State of the Resource
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- environment
Type 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.
- lifecycle
Details 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
- product
Count Number - Count of products within the resource.
- state String
- The current state of the FleetResource.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Count Number - Count of targets within the resource.
- tenancy
Name String - Resource Tenancy Name
- time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated 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.
- Application
Type 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
- Compartment
Id string - (Updatable) OCID of the compartment to which the resource belongs to.
- Compliance
State string - Compliance State of the Resource
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Environment
Type 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.
- Fleet
Id string - unique Fleet identifier
- Lifecycle
Details 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
- Product
Count int - Count of products within the resource.
- Resource
Id string - The OCID of the resource.
- Resource
Region string - Associated region
- Resource
Type string - Type of the Resource.
- State string
- The current state of the FleetResource.
- Dictionary<string, string>
- 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 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
- Tenancy
Name string - Resource Tenancy Name
- Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- Application
Type 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
- Compartment
Id string - (Updatable) OCID of the compartment to which the resource belongs to.
- Compliance
State string - Compliance State of the Resource
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Environment
Type 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.
- Fleet
Id string - unique Fleet identifier
- Lifecycle
Details 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
- Product
Count int - Count of products within the resource.
- Resource
Id string - The OCID of the resource.
- Resource
Region string - Associated region
- Resource
Type string - Type of the Resource.
- State string
- The current state of the FleetResource.
- map[string]string
- 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 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
- Tenancy
Name string - Resource Tenancy Name
- Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- application
Type 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
- compartment
Id String - (Updatable) OCID of the compartment to which the resource belongs to.
- compliance
State String - Compliance State of the Resource
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- environment
Type 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.
- fleet
Id String - unique Fleet identifier
- lifecycle
Details 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
- product
Count Integer - Count of products within the resource.
- resource
Id String - The OCID of the resource.
- resource
Region String - Associated region
- resource
Type String - Type of the Resource.
- state String
- The current state of the FleetResource.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Count Integer - Count of targets within the resource.
- tenancy
Id 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
- tenancy
Name String - Resource Tenancy Name
- time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
- application
Type 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
- compartment
Id string - (Updatable) OCID of the compartment to which the resource belongs to.
- compliance
State string - Compliance State of the Resource
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- environment
Type 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.
- fleet
Id string - unique Fleet identifier
- lifecycle
Details 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
- product
Count number - Count of products within the resource.
- resource
Id string - The OCID of the resource.
- resource
Region string - Associated region
- resource
Type string - Type of the Resource.
- state string
- The current state of the FleetResource.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Count number - Count of targets within the resource.
- tenancy
Id 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
- tenancy
Name string - Resource Tenancy Name
- time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated 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.
- 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.
- application
Type 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
- compartment
Id String - (Updatable) OCID of the compartment to which the resource belongs to.
- compliance
State String - Compliance State of the Resource
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- environment
Type 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.
- fleet
Id String - unique Fleet identifier
- lifecycle
Details 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
- product
Count Number - Count of products within the resource.
- resource
Id String - The OCID of the resource.
- resource
Region String - Associated region
- resource
Type String - Type of the Resource.
- state String
- The current state of the FleetResource.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Count Number - Count of targets within the resource.
- tenancy
Id 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
- tenancy
Name String - Resource Tenancy Name
- time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated 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.