Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi
oci.FleetAppsManagement.getFleets
Explore with Pulumi AI
This data source provides the list of Fleets in Oracle Cloud Infrastructure Fleet Apps Management service.
Returns a list of all the Fleets in the specified compartment.
The query parameter compartmentId
is required unless the query parameter id
is specified.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFleets = oci.FleetAppsManagement.getFleets({
applicationType: fleetApplicationType,
compartmentId: compartmentId,
displayName: fleetDisplayName,
environmentType: fleetEnvironmentType,
fleetType: fleetFleetType,
id: fleetId,
product: fleetProduct,
state: fleetState,
});
import pulumi
import pulumi_oci as oci
test_fleets = oci.FleetAppsManagement.get_fleets(application_type=fleet_application_type,
compartment_id=compartment_id,
display_name=fleet_display_name,
environment_type=fleet_environment_type,
fleet_type=fleet_fleet_type,
id=fleet_id,
product=fleet_product,
state=fleet_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/fleetappsmanagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fleetappsmanagement.GetFleets(ctx, &fleetappsmanagement.GetFleetsArgs{
ApplicationType: pulumi.StringRef(fleetApplicationType),
CompartmentId: pulumi.StringRef(compartmentId),
DisplayName: pulumi.StringRef(fleetDisplayName),
EnvironmentType: pulumi.StringRef(fleetEnvironmentType),
FleetType: pulumi.StringRef(fleetFleetType),
Id: pulumi.StringRef(fleetId),
Product: pulumi.StringRef(fleetProduct),
State: pulumi.StringRef(fleetState),
}, nil)
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 testFleets = Oci.FleetAppsManagement.GetFleets.Invoke(new()
{
ApplicationType = fleetApplicationType,
CompartmentId = compartmentId,
DisplayName = fleetDisplayName,
EnvironmentType = fleetEnvironmentType,
FleetType = fleetFleetType,
Id = fleetId,
Product = fleetProduct,
State = fleetState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FleetAppsManagement.FleetAppsManagementFunctions;
import com.pulumi.oci.FleetAppsManagement.inputs.GetFleetsArgs;
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) {
final var testFleets = FleetAppsManagementFunctions.getFleets(GetFleetsArgs.builder()
.applicationType(fleetApplicationType)
.compartmentId(compartmentId)
.displayName(fleetDisplayName)
.environmentType(fleetEnvironmentType)
.fleetType(fleetFleetType)
.id(fleetId)
.product(fleetProduct)
.state(fleetState)
.build());
}
}
variables:
testFleets:
fn::invoke:
function: oci:FleetAppsManagement:getFleets
arguments:
applicationType: ${fleetApplicationType}
compartmentId: ${compartmentId}
displayName: ${fleetDisplayName}
environmentType: ${fleetEnvironmentType}
fleetType: ${fleetFleetType}
id: ${fleetId}
product: ${fleetProduct}
state: ${fleetState}
Using getFleets
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getFleets(args: GetFleetsArgs, opts?: InvokeOptions): Promise<GetFleetsResult>
function getFleetsOutput(args: GetFleetsOutputArgs, opts?: InvokeOptions): Output<GetFleetsResult>
def get_fleets(application_type: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
environment_type: Optional[str] = None,
filters: Optional[Sequence[GetFleetsFilter]] = None,
fleet_type: Optional[str] = None,
id: Optional[str] = None,
product: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetFleetsResult
def get_fleets_output(application_type: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
environment_type: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFleetsFilterArgs]]]] = None,
fleet_type: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
product: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetFleetsResult]
func GetFleets(ctx *Context, args *GetFleetsArgs, opts ...InvokeOption) (*GetFleetsResult, error)
func GetFleetsOutput(ctx *Context, args *GetFleetsOutputArgs, opts ...InvokeOption) GetFleetsResultOutput
> Note: This function is named GetFleets
in the Go SDK.
public static class GetFleets
{
public static Task<GetFleetsResult> InvokeAsync(GetFleetsArgs args, InvokeOptions? opts = null)
public static Output<GetFleetsResult> Invoke(GetFleetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetFleetsResult> getFleets(GetFleetsArgs args, InvokeOptions options)
public static Output<GetFleetsResult> getFleets(GetFleetsArgs args, InvokeOptions options)
fn::invoke:
function: oci:FleetAppsManagement/getFleets:getFleets
arguments:
# arguments dictionary
The following arguments are supported:
- Application
Type string - A filter to return resources that match the Application Type/Product Stack given..
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Environment
Type string - A filter to return resources that match the Environment Type given.
- Filters
List<Get
Fleets Filter> - Fleet
Type string - A filter to return fleets whose fleetType matches the given fleetType.
- Id string
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- Product string
- A filter to return resources that match the Product/Product Stack given.
- State string
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- Application
Type string - A filter to return resources that match the Application Type/Product Stack given..
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Environment
Type string - A filter to return resources that match the Environment Type given.
- Filters
[]Get
Fleets Filter - Fleet
Type string - A filter to return fleets whose fleetType matches the given fleetType.
- Id string
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- Product string
- A filter to return resources that match the Product/Product Stack given.
- State string
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- application
Type String - A filter to return resources that match the Application Type/Product Stack given..
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name String - A filter to return only resources that match the entire display name given.
- environment
Type String - A filter to return resources that match the Environment Type given.
- filters
List<Get
Fleets Filter> - fleet
Type String - A filter to return fleets whose fleetType matches the given fleetType.
- id String
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- product String
- A filter to return resources that match the Product/Product Stack given.
- state String
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- application
Type string - A filter to return resources that match the Application Type/Product Stack given..
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name string - A filter to return only resources that match the entire display name given.
- environment
Type string - A filter to return resources that match the Environment Type given.
- filters
Get
Fleets Filter[] - fleet
Type string - A filter to return fleets whose fleetType matches the given fleetType.
- id string
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- product string
- A filter to return resources that match the Product/Product Stack given.
- state string
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- application_
type str - A filter to return resources that match the Application Type/Product Stack given..
- compartment_
id str - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display_
name str - A filter to return only resources that match the entire display name given.
- environment_
type str - A filter to return resources that match the Environment Type given.
- filters
Sequence[Get
Fleets Filter] - fleet_
type str - A filter to return fleets whose fleetType matches the given fleetType.
- id str
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- product str
- A filter to return resources that match the Product/Product Stack given.
- state str
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- application
Type String - A filter to return resources that match the Application Type/Product Stack given..
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name String - A filter to return only resources that match the entire display name given.
- environment
Type String - A filter to return resources that match the Environment Type given.
- filters List<Property Map>
- fleet
Type String - A filter to return fleets whose fleetType matches the given fleetType.
- id String
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- product String
- A filter to return resources that match the Product/Product Stack given.
- state String
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
getFleets Result
The following output properties are available:
- Fleet
Collections List<GetFleets Fleet Collection> - The list of fleet_collection.
- Application
Type string - Compartment
Id string - Compartment Identifier[OCID].
- 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. Applicable for ENVIRONMENT fleet types.
- Filters
List<Get
Fleets Filter> - Fleet
Type string - Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
- Id string
- The OCID of the resource.
- Product string
- State string
- The lifecycle state of the Fleet.
- Fleet
Collections []GetFleets Fleet Collection - The list of fleet_collection.
- Application
Type string - Compartment
Id string - Compartment Identifier[OCID].
- 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. Applicable for ENVIRONMENT fleet types.
- Filters
[]Get
Fleets Filter - Fleet
Type string - Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
- Id string
- The OCID of the resource.
- Product string
- State string
- The lifecycle state of the Fleet.
- fleet
Collections List<GetFleets Fleet Collection> - The list of fleet_collection.
- application
Type String - compartment
Id String - Compartment Identifier[OCID].
- 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. Applicable for ENVIRONMENT fleet types.
- filters
List<Get
Fleets Filter> - fleet
Type String - Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
- id String
- The OCID of the resource.
- product String
- state String
- The lifecycle state of the Fleet.
- fleet
Collections GetFleets Fleet Collection[] - The list of fleet_collection.
- application
Type string - compartment
Id string - Compartment Identifier[OCID].
- 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. Applicable for ENVIRONMENT fleet types.
- filters
Get
Fleets Filter[] - fleet
Type string - Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
- id string
- The OCID of the resource.
- product string
- state string
- The lifecycle state of the Fleet.
- fleet_
collections Sequence[GetFleets Fleet Collection] - The list of fleet_collection.
- application_
type str - compartment_
id str - Compartment Identifier[OCID].
- 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. Applicable for ENVIRONMENT fleet types.
- filters
Sequence[Get
Fleets Filter] - fleet_
type str - Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
- id str
- The OCID of the resource.
- product str
- state str
- The lifecycle state of the Fleet.
- fleet
Collections List<Property Map> - The list of fleet_collection.
- application
Type String - compartment
Id String - Compartment Identifier[OCID].
- 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. Applicable for ENVIRONMENT fleet types.
- filters List<Property Map>
- fleet
Type String - Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
- id String
- The OCID of the resource.
- product String
- state String
- The lifecycle state of the Fleet.
Supporting Types
GetFleetsFilter
GetFleetsFleetCollection
GetFleetsFleetCollectionItem
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Credentials
List<Get
Fleets Fleet Collection Item Credential> - Credentials associated with the Fleet.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- Details
List<Get
Fleets Fleet Collection Item Detail> - Fleet Type
- Display
Name string - A filter to return only resources that match the entire display name given.
- Environment
Type string - A filter to return resources that match the Environment Type given.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- Is
Target boolAuto Confirm - A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
- 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.
- Notification
Preferences List<GetFleets Fleet Collection Item Notification Preference> - Notification Preferences associated with the Fleet.
- Parent
Fleet stringId - The OCID of the fleet that would be the parent for this fleet.
- Products List<string>
- Products associated with the Fleet.
- Properties
List<Get
Fleets Fleet Collection Item Property> - Properties associated with the Fleet.
- Resource
Region string - Associated region
- Resource
Selections List<GetFleets Fleet Collection Item Resource Selection> - Resource Selection Type
- Resources
List<Get
Fleets Fleet Collection Item Resource> - Resources associated with the Fleet if resourceSelectionType is MANUAL.
- State string
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- 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.
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Credentials
[]Get
Fleets Fleet Collection Item Credential - Credentials associated with the Fleet.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- Details
[]Get
Fleets Fleet Collection Item Detail - Fleet Type
- Display
Name string - A filter to return only resources that match the entire display name given.
- Environment
Type string - A filter to return resources that match the Environment Type given.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- Is
Target boolAuto Confirm - A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
- 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.
- Notification
Preferences []GetFleets Fleet Collection Item Notification Preference - Notification Preferences associated with the Fleet.
- Parent
Fleet stringId - The OCID of the fleet that would be the parent for this fleet.
- Products []string
- Products associated with the Fleet.
- Properties
[]Get
Fleets Fleet Collection Item Property - Properties associated with the Fleet.
- Resource
Region string - Associated region
- Resource
Selections []GetFleets Fleet Collection Item Resource Selection - Resource Selection Type
- Resources
[]Get
Fleets Fleet Collection Item Resource - Resources associated with the Fleet if resourceSelectionType is MANUAL.
- State string
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- 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.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- credentials
List<Get
Fleets Fleet Collection Item Credential> - Credentials associated with the Fleet.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- details
List<Get
Fleets Fleet Collection Item Detail> - Fleet Type
- display
Name String - A filter to return only resources that match the entire display name given.
- environment
Type String - A filter to return resources that match the Environment Type given.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- is
Target BooleanAuto Confirm - A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
- 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.
- notification
Preferences List<GetFleets Fleet Collection Item Notification Preference> - Notification Preferences associated with the Fleet.
- parent
Fleet StringId - The OCID of the fleet that would be the parent for this fleet.
- products List<String>
- Products associated with the Fleet.
- properties
List<Get
Fleets Fleet Collection Item Property> - Properties associated with the Fleet.
- resource
Region String - Associated region
- resource
Selections List<GetFleets Fleet Collection Item Resource Selection> - Resource Selection Type
- resources
List<Get
Fleets Fleet Collection Item Resource> - Resources associated with the Fleet if resourceSelectionType is MANUAL.
- state String
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- 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.
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- credentials
Get
Fleets Fleet Collection Item Credential[] - Credentials associated with the Fleet.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- details
Get
Fleets Fleet Collection Item Detail[] - Fleet Type
- display
Name string - A filter to return only resources that match the entire display name given.
- environment
Type string - A filter to return resources that match the Environment Type given.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id string
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- is
Target booleanAuto Confirm - A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
- 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.
- notification
Preferences GetFleets Fleet Collection Item Notification Preference[] - Notification Preferences associated with the Fleet.
- parent
Fleet stringId - The OCID of the fleet that would be the parent for this fleet.
- products string[]
- Products associated with the Fleet.
- properties
Get
Fleets Fleet Collection Item Property[] - Properties associated with the Fleet.
- resource
Region string - Associated region
- resource
Selections GetFleets Fleet Collection Item Resource Selection[] - Resource Selection Type
- resources
Get
Fleets Fleet Collection Item Resource[] - Resources associated with the Fleet if resourceSelectionType is MANUAL.
- state string
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- 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.
- compartment_
id str - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- credentials
Sequence[Get
Fleets Fleet Collection Item Credential] - Credentials associated with the Fleet.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- details
Sequence[Get
Fleets Fleet Collection Item Detail] - Fleet Type
- display_
name str - A filter to return only resources that match the entire display name given.
- environment_
type str - A filter to return resources that match the Environment Type given.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id str
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- is_
target_ boolauto_ confirm - A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
- 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.
- notification_
preferences Sequence[GetFleets Fleet Collection Item Notification Preference] - Notification Preferences associated with the Fleet.
- parent_
fleet_ strid - The OCID of the fleet that would be the parent for this fleet.
- products Sequence[str]
- Products associated with the Fleet.
- properties
Sequence[Get
Fleets Fleet Collection Item Property] - Properties associated with the Fleet.
- resource_
region str - Associated region
- resource_
selections Sequence[GetFleets Fleet Collection Item Resource Selection] - Resource Selection Type
- resources
Sequence[Get
Fleets Fleet Collection Item Resource] - Resources associated with the Fleet if resourceSelectionType is MANUAL.
- state str
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- 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.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- credentials List<Property Map>
- Credentials associated with the Fleet.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- details List<Property Map>
- Fleet Type
- display
Name String - A filter to return only resources that match the entire display name given.
- environment
Type String - A filter to return resources that match the Environment Type given.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- Unique identifier or OCID for listing a single fleet by id. Either compartmentId or id must be provided.
- is
Target BooleanAuto Confirm - A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
- 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.
- notification
Preferences List<Property Map> - Notification Preferences associated with the Fleet.
- parent
Fleet StringId - The OCID of the fleet that would be the parent for this fleet.
- products List<String>
- Products associated with the Fleet.
- properties List<Property Map>
- Properties associated with the Fleet.
- resource
Region String - Associated region
- resource
Selections List<Property Map> - Resource Selection Type
- resources List<Property Map>
- Resources associated with the Fleet if resourceSelectionType is MANUAL.
- state String
- A filter to return fleets whose lifecycleState matches the given lifecycleState.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- 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.
GetFleetsFleetCollectionItemCredential
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Specifics List<GetFleets Fleet Collection Item Credential Entity Specific> - Credential specific Details.
- Passwords
List<Get
Fleets Fleet Collection Item Credential Password> - Credential Details.
- Users
List<Get
Fleets Fleet Collection Item Credential User> - Credential Details.
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Specifics []GetFleets Fleet Collection Item Credential Entity Specific - Credential specific Details.
- Passwords
[]Get
Fleets Fleet Collection Item Credential Password - Credential Details.
- Users
[]Get
Fleets Fleet Collection Item Credential User - Credential Details.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Specifics List<GetFleets Fleet Collection Item Credential Entity Specific> - Credential specific Details.
- passwords
List<Get
Fleets Fleet Collection Item Credential Password> - Credential Details.
- users
List<Get
Fleets Fleet Collection Item Credential User> - Credential Details.
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name string - A filter to return only resources that match the entire display name given.
- entity
Specifics GetFleets Fleet Collection Item Credential Entity Specific[] - Credential specific Details.
- passwords
Get
Fleets Fleet Collection Item Credential Password[] - Credential Details.
- users
Get
Fleets Fleet Collection Item Credential User[] - Credential Details.
- compartment_
id str - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display_
name str - A filter to return only resources that match the entire display name given.
- entity_
specifics Sequence[GetFleets Fleet Collection Item Credential Entity Specific] - Credential specific Details.
- passwords
Sequence[Get
Fleets Fleet Collection Item Credential Password] - Credential Details.
- users
Sequence[Get
Fleets Fleet Collection Item Credential User] - Credential Details.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Specifics List<Property Map> - Credential specific Details.
- passwords List<Property Map>
- Credential Details.
- users List<Property Map>
- Credential Details.
GetFleetsFleetCollectionItemCredentialEntitySpecific
- Credential
Level string - At what level the credential is provided?
- Resource
Id string - OCID of the resource.
- Target string
- Target name for which the credential is provided.
- Variables
List<Get
Fleets Fleet Collection Item Credential Entity Specific Variable> - List of fleet credential variables.
- Credential
Level string - At what level the credential is provided?
- Resource
Id string - OCID of the resource.
- Target string
- Target name for which the credential is provided.
- Variables
[]Get
Fleets Fleet Collection Item Credential Entity Specific Variable - List of fleet credential variables.
- credential
Level String - At what level the credential is provided?
- resource
Id String - OCID of the resource.
- target String
- Target name for which the credential is provided.
- variables
List<Get
Fleets Fleet Collection Item Credential Entity Specific Variable> - List of fleet credential variables.
- credential
Level string - At what level the credential is provided?
- resource
Id string - OCID of the resource.
- target string
- Target name for which the credential is provided.
- variables
Get
Fleets Fleet Collection Item Credential Entity Specific Variable[] - List of fleet credential variables.
- credential_
level str - At what level the credential is provided?
- resource_
id str - OCID of the resource.
- target str
- Target name for which the credential is provided.
- variables
Sequence[Get
Fleets Fleet Collection Item Credential Entity Specific Variable] - List of fleet credential variables.
- credential
Level String - At what level the credential is provided?
- resource
Id String - OCID of the resource.
- target String
- Target name for which the credential is provided.
- variables List<Property Map>
- List of fleet credential variables.
GetFleetsFleetCollectionItemCredentialEntitySpecificVariable
GetFleetsFleetCollectionItemCredentialPassword
- Credential
Type string - Credential Type.
- Key
Id string - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- Key
Version string - The Vault Key version.
- Secret
Id string - The OCID of the secret.
- Secret
Version string - The secret version.
- Value string
- Value of the Property.
- Vault
Id string - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
- Credential
Type string - Credential Type.
- Key
Id string - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- Key
Version string - The Vault Key version.
- Secret
Id string - The OCID of the secret.
- Secret
Version string - The secret version.
- Value string
- Value of the Property.
- Vault
Id string - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
- credential
Type String - Credential Type.
- key
Id String - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- key
Version String - The Vault Key version.
- secret
Id String - The OCID of the secret.
- secret
Version String - The secret version.
- value String
- Value of the Property.
- vault
Id String - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
- credential
Type string - Credential Type.
- key
Id string - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- key
Version string - The Vault Key version.
- secret
Id string - The OCID of the secret.
- secret
Version string - The secret version.
- value string
- Value of the Property.
- vault
Id string - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
- credential_
type str - Credential Type.
- key_
id str - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- key_
version str - The Vault Key version.
- secret_
id str - The OCID of the secret.
- secret_
version str - The secret version.
- value str
- Value of the Property.
- vault_
id str - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
- credential
Type String - Credential Type.
- key
Id String - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- key
Version String - The Vault Key version.
- secret
Id String - The OCID of the secret.
- secret
Version String - The secret version.
- value String
- Value of the Property.
- vault
Id String - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
GetFleetsFleetCollectionItemCredentialUser
- Credential
Type string - Credential Type.
- Key
Id string - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- Key
Version string - The Vault Key version.
- Secret
Id string - The OCID of the secret.
- Secret
Version string - The secret version.
- Value string
- Value of the Property.
- Vault
Id string - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
- Credential
Type string - Credential Type.
- Key
Id string - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- Key
Version string - The Vault Key version.
- Secret
Id string - The OCID of the secret.
- Secret
Version string - The secret version.
- Value string
- Value of the Property.
- Vault
Id string - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
- credential
Type String - Credential Type.
- key
Id String - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- key
Version String - The Vault Key version.
- secret
Id String - The OCID of the secret.
- secret
Version String - The secret version.
- value String
- Value of the Property.
- vault
Id String - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
- credential
Type string - Credential Type.
- key
Id string - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- key
Version string - The Vault Key version.
- secret
Id string - The OCID of the secret.
- secret
Version string - The secret version.
- value string
- Value of the Property.
- vault
Id string - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
- credential_
type str - Credential Type.
- key_
id str - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- key_
version str - The Vault Key version.
- secret_
id str - The OCID of the secret.
- secret_
version str - The secret version.
- value str
- Value of the Property.
- vault_
id str - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
- credential
Type String - Credential Type.
- key
Id String - OCID for the Vault Key that will be used to encrypt/decrypt the value given.
- key
Version String - The Vault Key version.
- secret
Id String - The OCID of the secret.
- secret
Version String - The secret version.
- value String
- Value of the Property.
- vault
Id String - OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
GetFleetsFleetCollectionItemDetail
- Fleet
Type string - A filter to return fleets whose fleetType matches the given fleetType.
- Fleet
Type string - A filter to return fleets whose fleetType matches the given fleetType.
- fleet
Type String - A filter to return fleets whose fleetType matches the given fleetType.
- fleet
Type string - A filter to return fleets whose fleetType matches the given fleetType.
- fleet_
type str - A filter to return fleets whose fleetType matches the given fleetType.
- fleet
Type String - A filter to return fleets whose fleetType matches the given fleetType.
GetFleetsFleetCollectionItemNotificationPreference
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Preferences
List<Get
Fleets Fleet Collection Item Notification Preference Preference> - Preferences to send notifications on the fleet activities.
- Topic
Id string - Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Preferences
[]Get
Fleets Fleet Collection Item Notification Preference Preference - Preferences to send notifications on the fleet activities.
- Topic
Id string - Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- preferences
List<Get
Fleets Fleet Collection Item Notification Preference Preference> - Preferences to send notifications on the fleet activities.
- topic
Id String - Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- preferences
Get
Fleets Fleet Collection Item Notification Preference Preference[] - Preferences to send notifications on the fleet activities.
- topic
Id string - Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.
- compartment_
id str - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- preferences
Sequence[Get
Fleets Fleet Collection Item Notification Preference Preference] - Preferences to send notifications on the fleet activities.
- topic_
id str - Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- preferences List<Property Map>
- Preferences to send notifications on the fleet activities.
- topic
Id String - Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.
GetFleetsFleetCollectionItemNotificationPreferencePreference
- On
Job boolFailure - Enables or disables notification on Job Failures.
- On
Resource boolNon Compliance - Enables or disables notification when fleet resource becomes non compliant.
- On
Runbook boolNewer Version - Enables or disables notification when a newer version of runbook associated with a fleet is available
- On
Task boolFailure - Enables or disables notification on task failure.
- On
Task boolPause - Enables or disables notification when a task is paused.
- On
Task boolSuccess - Enables or disables notification on task success.
- On
Topology boolModification - Enables or disables notification on Environment Fleet Topology Modification.
- Upcoming
Schedules List<GetFleets Fleet Collection Item Notification Preference Preference Upcoming Schedule> - Enables notification on upcoming schedule.
- On
Job boolFailure - Enables or disables notification on Job Failures.
- On
Resource boolNon Compliance - Enables or disables notification when fleet resource becomes non compliant.
- On
Runbook boolNewer Version - Enables or disables notification when a newer version of runbook associated with a fleet is available
- On
Task boolFailure - Enables or disables notification on task failure.
- On
Task boolPause - Enables or disables notification when a task is paused.
- On
Task boolSuccess - Enables or disables notification on task success.
- On
Topology boolModification - Enables or disables notification on Environment Fleet Topology Modification.
- Upcoming
Schedules []GetFleets Fleet Collection Item Notification Preference Preference Upcoming Schedule - Enables notification on upcoming schedule.
- on
Job BooleanFailure - Enables or disables notification on Job Failures.
- on
Resource BooleanNon Compliance - Enables or disables notification when fleet resource becomes non compliant.
- on
Runbook BooleanNewer Version - Enables or disables notification when a newer version of runbook associated with a fleet is available
- on
Task BooleanFailure - Enables or disables notification on task failure.
- on
Task BooleanPause - Enables or disables notification when a task is paused.
- on
Task BooleanSuccess - Enables or disables notification on task success.
- on
Topology BooleanModification - Enables or disables notification on Environment Fleet Topology Modification.
- upcoming
Schedules List<GetFleets Fleet Collection Item Notification Preference Preference Upcoming Schedule> - Enables notification on upcoming schedule.
- on
Job booleanFailure - Enables or disables notification on Job Failures.
- on
Resource booleanNon Compliance - Enables or disables notification when fleet resource becomes non compliant.
- on
Runbook booleanNewer Version - Enables or disables notification when a newer version of runbook associated with a fleet is available
- on
Task booleanFailure - Enables or disables notification on task failure.
- on
Task booleanPause - Enables or disables notification when a task is paused.
- on
Task booleanSuccess - Enables or disables notification on task success.
- on
Topology booleanModification - Enables or disables notification on Environment Fleet Topology Modification.
- upcoming
Schedules GetFleets Fleet Collection Item Notification Preference Preference Upcoming Schedule[] - Enables notification on upcoming schedule.
- on_
job_ boolfailure - Enables or disables notification on Job Failures.
- on_
resource_ boolnon_ compliance - Enables or disables notification when fleet resource becomes non compliant.
- on_
runbook_ boolnewer_ version - Enables or disables notification when a newer version of runbook associated with a fleet is available
- on_
task_ boolfailure - Enables or disables notification on task failure.
- on_
task_ boolpause - Enables or disables notification when a task is paused.
- on_
task_ boolsuccess - Enables or disables notification on task success.
- on_
topology_ boolmodification - Enables or disables notification on Environment Fleet Topology Modification.
- upcoming_
schedules Sequence[GetFleets Fleet Collection Item Notification Preference Preference Upcoming Schedule] - Enables notification on upcoming schedule.
- on
Job BooleanFailure - Enables or disables notification on Job Failures.
- on
Resource BooleanNon Compliance - Enables or disables notification when fleet resource becomes non compliant.
- on
Runbook BooleanNewer Version - Enables or disables notification when a newer version of runbook associated with a fleet is available
- on
Task BooleanFailure - Enables or disables notification on task failure.
- on
Task BooleanPause - Enables or disables notification when a task is paused.
- on
Task BooleanSuccess - Enables or disables notification on task success.
- on
Topology BooleanModification - Enables or disables notification on Environment Fleet Topology Modification.
- upcoming
Schedules List<Property Map> - Enables notification on upcoming schedule.
GetFleetsFleetCollectionItemNotificationPreferencePreferenceUpcomingSchedule
- Notify
Before string - Specify when the notification should be sent.
- On
Upcoming boolSchedule - Enables notification on upcoming schedule.
- Notify
Before string - Specify when the notification should be sent.
- On
Upcoming boolSchedule - Enables notification on upcoming schedule.
- notify
Before String - Specify when the notification should be sent.
- on
Upcoming BooleanSchedule - Enables notification on upcoming schedule.
- notify
Before string - Specify when the notification should be sent.
- on
Upcoming booleanSchedule - Enables notification on upcoming schedule.
- notify_
before str - Specify when the notification should be sent.
- on_
upcoming_ boolschedule - Enables notification on upcoming schedule.
- notify
Before String - Specify when the notification should be sent.
- on
Upcoming BooleanSchedule - Enables notification on upcoming schedule.
GetFleetsFleetCollectionItemProperty
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Fleet
Property stringType - Type of the FleetProperty.
- Is
Required bool - Property is required or not.
- Value string
- Value of the Property.
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Fleet
Property stringType - Type of the FleetProperty.
- Is
Required bool - Property is required or not.
- Value string
- Value of the Property.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name String - A filter to return only resources that match the entire display name given.
- fleet
Property StringType - Type of the FleetProperty.
- is
Required Boolean - Property is required or not.
- value String
- Value of the Property.
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name string - A filter to return only resources that match the entire display name given.
- fleet
Property stringType - Type of the FleetProperty.
- is
Required boolean - Property is required or not.
- value string
- Value of the Property.
- compartment_
id str - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display_
name str - A filter to return only resources that match the entire display name given.
- fleet_
property_ strtype - Type of the FleetProperty.
- is_
required bool - Property is required or not.
- value str
- Value of the Property.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name String - A filter to return only resources that match the entire display name given.
- fleet
Property StringType - Type of the FleetProperty.
- is
Required Boolean - Property is required or not.
- value String
- Value of the Property.
GetFleetsFleetCollectionItemResource
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Fleet
Resource stringType - Type of the FleetResource.
- Resource
Id string - OCID of the resource.
- Tenancy
Id string - Tenancy Identifier[OCID].
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Fleet
Resource stringType - Type of the FleetResource.
- Resource
Id string - OCID of the resource.
- Tenancy
Id string - Tenancy Identifier[OCID].
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- fleet
Resource StringType - Type of the FleetResource.
- resource
Id String - OCID of the resource.
- tenancy
Id String - Tenancy Identifier[OCID].
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- fleet
Resource stringType - Type of the FleetResource.
- resource
Id string - OCID of the resource.
- tenancy
Id string - Tenancy Identifier[OCID].
- compartment_
id str - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- fleet_
resource_ strtype - Type of the FleetResource.
- resource_
id str - OCID of the resource.
- tenancy_
id str - Tenancy Identifier[OCID].
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- fleet
Resource StringType - Type of the FleetResource.
- resource
Id String - OCID of the resource.
- tenancy
Id String - Tenancy Identifier[OCID].
GetFleetsFleetCollectionItemResourceSelection
- Resource
Selection stringType - Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
- Rule
Selection List<GetCriterias Fleets Fleet Collection Item Resource Selection Rule Selection Criteria> - Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
- Resource
Selection stringType - Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
- Rule
Selection []GetCriterias Fleets Fleet Collection Item Resource Selection Rule Selection Criteria - Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
- resource
Selection StringType - Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
- rule
Selection List<GetCriterias Fleets Fleet Collection Item Resource Selection Rule Selection Criteria> - Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
- resource
Selection stringType - Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
- rule
Selection GetCriterias Fleets Fleet Collection Item Resource Selection Rule Selection Criteria[] - Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
- resource_
selection_ strtype - Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
- rule_
selection_ Sequence[Getcriterias Fleets Fleet Collection Item Resource Selection Rule Selection Criteria] - Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
- resource
Selection StringType - Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
- rule
Selection List<Property Map>Criterias - Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
GetFleetsFleetCollectionItemResourceSelectionRuleSelectionCriteria
- Match
Condition string - Match condition for the rule selection. Include resources that match all rules or any of the rules.
- Rules
List<Get
Fleets Fleet Collection Item Resource Selection Rule Selection Criteria Rule> - Rules.
- Match
Condition string - Match condition for the rule selection. Include resources that match all rules or any of the rules.
- Rules
[]Get
Fleets Fleet Collection Item Resource Selection Rule Selection Criteria Rule - Rules.
- match
Condition String - Match condition for the rule selection. Include resources that match all rules or any of the rules.
- rules
List<Get
Fleets Fleet Collection Item Resource Selection Rule Selection Criteria Rule> - Rules.
- match
Condition string - Match condition for the rule selection. Include resources that match all rules or any of the rules.
- rules
Get
Fleets Fleet Collection Item Resource Selection Rule Selection Criteria Rule[] - Rules.
- match_
condition str - Match condition for the rule selection. Include resources that match all rules or any of the rules.
- rules
Sequence[Get
Fleets Fleet Collection Item Resource Selection Rule Selection Criteria Rule] - Rules.
- match
Condition String - Match condition for the rule selection. Include resources that match all rules or any of the rules.
- rules List<Property Map>
- Rules.
GetFleetsFleetCollectionItemResourceSelectionRuleSelectionCriteriaRule
- Basis string
- Based on what the rule is created. It can be based on a resourceProperty or a tag. If based on a tag, basis will be 'definedTagEquals' If based on a resource property, basis will be 'inventoryProperties'
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Conditions
List<Get
Fleets Fleet Collection Item Resource Selection Rule Selection Criteria Rule Condition> - Rule Conditions
- Resource
Compartment stringId - The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
- Basis string
- Based on what the rule is created. It can be based on a resourceProperty or a tag. If based on a tag, basis will be 'definedTagEquals' If based on a resource property, basis will be 'inventoryProperties'
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Conditions
[]Get
Fleets Fleet Collection Item Resource Selection Rule Selection Criteria Rule Condition - Rule Conditions
- Resource
Compartment stringId - The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
- basis String
- Based on what the rule is created. It can be based on a resourceProperty or a tag. If based on a tag, basis will be 'definedTagEquals' If based on a resource property, basis will be 'inventoryProperties'
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- conditions
List<Get
Fleets Fleet Collection Item Resource Selection Rule Selection Criteria Rule Condition> - Rule Conditions
- resource
Compartment StringId - The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
- basis string
- Based on what the rule is created. It can be based on a resourceProperty or a tag. If based on a tag, basis will be 'definedTagEquals' If based on a resource property, basis will be 'inventoryProperties'
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- conditions
Get
Fleets Fleet Collection Item Resource Selection Rule Selection Criteria Rule Condition[] - Rule Conditions
- resource
Compartment stringId - The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
- basis str
- Based on what the rule is created. It can be based on a resourceProperty or a tag. If based on a tag, basis will be 'definedTagEquals' If based on a resource property, basis will be 'inventoryProperties'
- compartment_
id str - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- conditions
Sequence[Get
Fleets Fleet Collection Item Resource Selection Rule Selection Criteria Rule Condition] - Rule Conditions
- resource_
compartment_ strid - The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
- basis String
- Based on what the rule is created. It can be based on a resourceProperty or a tag. If based on a tag, basis will be 'definedTagEquals' If based on a resource property, basis will be 'inventoryProperties'
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- conditions List<Property Map>
- Rule Conditions
- resource
Compartment StringId - The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
GetFleetsFleetCollectionItemResourceSelectionRuleSelectionCriteriaRuleCondition
- Attr
Group string - Attribute Group. Provide a Tag namespace if the rule is based on a tag. Provide resource type if the rule is based on a resource property.
- Attr
Key string - Attribute Key.Provide Tag key if the rule is based on a tag. Provide resource property name if the rule is based on a resource property.
- Attr
Value string - Attribute Value.Provide Tag value if the rule is based on a tag. Provide resource property value if the rule is based on a resource property.
- Attr
Group string - Attribute Group. Provide a Tag namespace if the rule is based on a tag. Provide resource type if the rule is based on a resource property.
- Attr
Key string - Attribute Key.Provide Tag key if the rule is based on a tag. Provide resource property name if the rule is based on a resource property.
- Attr
Value string - Attribute Value.Provide Tag value if the rule is based on a tag. Provide resource property value if the rule is based on a resource property.
- attr
Group String - Attribute Group. Provide a Tag namespace if the rule is based on a tag. Provide resource type if the rule is based on a resource property.
- attr
Key String - Attribute Key.Provide Tag key if the rule is based on a tag. Provide resource property name if the rule is based on a resource property.
- attr
Value String - Attribute Value.Provide Tag value if the rule is based on a tag. Provide resource property value if the rule is based on a resource property.
- attr
Group string - Attribute Group. Provide a Tag namespace if the rule is based on a tag. Provide resource type if the rule is based on a resource property.
- attr
Key string - Attribute Key.Provide Tag key if the rule is based on a tag. Provide resource property name if the rule is based on a resource property.
- attr
Value string - Attribute Value.Provide Tag value if the rule is based on a tag. Provide resource property value if the rule is based on a resource property.
- attr_
group str - Attribute Group. Provide a Tag namespace if the rule is based on a tag. Provide resource type if the rule is based on a resource property.
- attr_
key str - Attribute Key.Provide Tag key if the rule is based on a tag. Provide resource property name if the rule is based on a resource property.
- attr_
value str - Attribute Value.Provide Tag value if the rule is based on a tag. Provide resource property value if the rule is based on a resource property.
- attr
Group String - Attribute Group. Provide a Tag namespace if the rule is based on a tag. Provide resource type if the rule is based on a resource property.
- attr
Key String - Attribute Key.Provide Tag key if the rule is based on a tag. Provide resource property name if the rule is based on a resource property.
- attr
Value String - Attribute Value.Provide Tag value if the rule is based on a tag. Provide resource property value if the rule is based on a resource property.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.