1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetAppsManagement
  5. getFleets
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.FleetAppsManagement.getFleets

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Fleets in Oracle Cloud Infrastructure Fleet Apps Management service.

Returns a list of Fleets in the specified Tenancy.

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

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/fleetappsmanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fleetappsmanagement.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
	})
}
Copy
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,
    });

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

    }
}
Copy
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}
Copy

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>
Copy
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[_fleetappsmanagement.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[_fleetappsmanagement.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]
Copy
func GetFleets(ctx *Context, args *GetFleetsArgs, opts ...InvokeOption) (*GetFleetsResult, error)
func GetFleetsOutput(ctx *Context, args *GetFleetsOutputArgs, opts ...InvokeOption) GetFleetsResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetFleetsResult> getFleets(GetFleetsArgs args, InvokeOptions options)
public static Output<GetFleetsResult> getFleets(GetFleetsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:FleetAppsManagement/getFleets:getFleets
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ApplicationType string
A filter to return resources that match the Application Type/Product Stack given..
CompartmentId string
The ID of the compartment in which to list resources.
DisplayName string
A filter to return only resources that match the entire display name given.
EnvironmentType string
A filter to return resources that match the Environment Type given.
Filters Changes to this property will trigger replacement. List<GetFleetsFilter>
FleetType string
A filter to return fleets whose fleetType matches the given fleetType.
Id string
A filter to return fleets whose id matches the given Fleet identifier
Product string
A filter to return resources that match the Product given.
State string
A filter to return fleets whose lifecycleState matches the given lifecycleState.
ApplicationType string
A filter to return resources that match the Application Type/Product Stack given..
CompartmentId string
The ID of the compartment in which to list resources.
DisplayName string
A filter to return only resources that match the entire display name given.
EnvironmentType string
A filter to return resources that match the Environment Type given.
Filters Changes to this property will trigger replacement. []GetFleetsFilter
FleetType string
A filter to return fleets whose fleetType matches the given fleetType.
Id string
A filter to return fleets whose id matches the given Fleet identifier
Product string
A filter to return resources that match the Product given.
State string
A filter to return fleets whose lifecycleState matches the given lifecycleState.
applicationType String
A filter to return resources that match the Application Type/Product Stack given..
compartmentId String
The ID of the compartment in which to list resources.
displayName String
A filter to return only resources that match the entire display name given.
environmentType String
A filter to return resources that match the Environment Type given.
filters Changes to this property will trigger replacement. List<GetFleetsFilter>
fleetType String
A filter to return fleets whose fleetType matches the given fleetType.
id String
A filter to return fleets whose id matches the given Fleet identifier
product String
A filter to return resources that match the Product given.
state String
A filter to return fleets whose lifecycleState matches the given lifecycleState.
applicationType string
A filter to return resources that match the Application Type/Product Stack given..
compartmentId string
The ID of the compartment in which to list resources.
displayName string
A filter to return only resources that match the entire display name given.
environmentType string
A filter to return resources that match the Environment Type given.
filters Changes to this property will trigger replacement. GetFleetsFilter[]
fleetType string
A filter to return fleets whose fleetType matches the given fleetType.
id string
A filter to return fleets whose id matches the given Fleet identifier
product string
A filter to return resources that match the Product 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.
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 Changes to this property will trigger replacement. Sequence[fleetappsmanagement.GetFleetsFilter]
fleet_type str
A filter to return fleets whose fleetType matches the given fleetType.
id str
A filter to return fleets whose id matches the given Fleet identifier
product str
A filter to return resources that match the Product given.
state str
A filter to return fleets whose lifecycleState matches the given lifecycleState.
applicationType String
A filter to return resources that match the Application Type/Product Stack given..
compartmentId String
The ID of the compartment in which to list resources.
displayName String
A filter to return only resources that match the entire display name given.
environmentType String
A filter to return resources that match the Environment Type given.
filters Changes to this property will trigger replacement. List<Property Map>
fleetType String
A filter to return fleets whose fleetType matches the given fleetType.
id String
A filter to return fleets whose id matches the given Fleet identifier
product String
A filter to return resources that match the Product given.
state String
A filter to return fleets whose lifecycleState matches the given lifecycleState.

getFleets Result

The following output properties are available:

FleetCollections List<GetFleetsFleetCollection>
The list of fleet_collection.
ApplicationType string
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
CompartmentId string
Tenancy Id (Root Compartment Id)for which the rule is created.
DisplayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
EnvironmentType string
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
Filters List<GetFleetsFilter>
FleetType 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.
FleetCollections []GetFleetsFleetCollection
The list of fleet_collection.
ApplicationType string
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
CompartmentId string
Tenancy Id (Root Compartment Id)for which the rule is created.
DisplayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
EnvironmentType string
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
Filters []GetFleetsFilter
FleetType 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.
fleetCollections List<GetFleetsFleetCollection>
The list of fleet_collection.
applicationType String
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
compartmentId String
Tenancy Id (Root Compartment Id)for which the rule is created.
displayName String
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
environmentType String
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
filters List<GetFleetsFilter>
fleetType 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.
fleetCollections GetFleetsFleetCollection[]
The list of fleet_collection.
applicationType string
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
compartmentId string
Tenancy Id (Root Compartment Id)for which the rule is created.
displayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
environmentType string
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
filters GetFleetsFilter[]
fleetType 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[fleetappsmanagement.GetFleetsFleetCollection]
The list of fleet_collection.
application_type str
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
compartment_id str
Tenancy Id (Root Compartment Id)for which the rule is created.
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[fleetappsmanagement.GetFleetsFilter]
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.
fleetCollections List<Property Map>
The list of fleet_collection.
applicationType String
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
compartmentId String
Tenancy Id (Root Compartment Id)for which the rule is created.
displayName String
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
environmentType String
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
filters List<Property Map>
fleetType 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

Name This property is required. string
Name of the variable.
Values This property is required. List<string>
Regex bool
Name This property is required. string
Name of the variable.
Values This property is required. []string
Regex bool
name This property is required. String
Name of the variable.
values This property is required. List<String>
regex Boolean
name This property is required. string
Name of the variable.
values This property is required. string[]
regex boolean
name This property is required. str
Name of the variable.
values This property is required. Sequence[str]
regex bool
name This property is required. String
Name of the variable.
values This property is required. List<String>
regex Boolean

GetFleetsFleetCollection

Items This property is required. List<GetFleetsFleetCollectionItem>
Items This property is required. []GetFleetsFleetCollectionItem
items This property is required. List<GetFleetsFleetCollectionItem>
items This property is required. GetFleetsFleetCollectionItem[]
items This property is required. List<Property Map>

GetFleetsFleetCollectionItem

ApplicationType This property is required. string
A filter to return resources that match the Application Type/Product Stack given..
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Credentials This property is required. List<GetFleetsFleetCollectionItemCredential>
Credentials associated with the Fleet.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
EnvironmentType This property is required. string
A filter to return resources that match the Environment Type given.
FleetType This property is required. string
A filter to return fleets whose fleetType matches the given fleetType.
FreeformTags This property is required. 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"}
GroupType This property is required. string
Group Type associated with Group Fleet. Applicable for GROUP fleet types.
Id This property is required. string
A filter to return fleets whose id matches the given Fleet identifier
IsTargetAutoConfirm This property is required. bool
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.
LifecycleDetails This property is required. 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.
NotificationPreferences This property is required. List<GetFleetsFleetCollectionItemNotificationPreference>
Notification information to get notified when the fleet status changes.
Products This property is required. List<string>
Products associated with the Fleet.
ResourceRegion This property is required. string
Associated region
ResourceSelectionType This property is required. string
Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
RuleSelectionCriterias This property is required. List<GetFleetsFleetCollectionItemRuleSelectionCriteria>
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.
State This property is required. string
A filter to return fleets whose lifecycleState matches the given lifecycleState.
SystemTags This property is required. Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time this resource was created. An RFC3339 formatted datetime string.
TimeUpdated This property is required. string
The time this resource was last updated. An RFC3339 formatted datetime string.
ApplicationType This property is required. string
A filter to return resources that match the Application Type/Product Stack given..
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Credentials This property is required. []GetFleetsFleetCollectionItemCredential
Credentials associated with the Fleet.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
EnvironmentType This property is required. string
A filter to return resources that match the Environment Type given.
FleetType This property is required. string
A filter to return fleets whose fleetType matches the given fleetType.
FreeformTags This property is required. 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"}
GroupType This property is required. string
Group Type associated with Group Fleet. Applicable for GROUP fleet types.
Id This property is required. string
A filter to return fleets whose id matches the given Fleet identifier
IsTargetAutoConfirm This property is required. bool
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.
LifecycleDetails This property is required. 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.
NotificationPreferences This property is required. []GetFleetsFleetCollectionItemNotificationPreference
Notification information to get notified when the fleet status changes.
Products This property is required. []string
Products associated with the Fleet.
ResourceRegion This property is required. string
Associated region
ResourceSelectionType This property is required. string
Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
RuleSelectionCriterias This property is required. []GetFleetsFleetCollectionItemRuleSelectionCriteria
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.
State This property is required. string
A filter to return fleets whose lifecycleState matches the given lifecycleState.
SystemTags This property is required. map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time this resource was created. An RFC3339 formatted datetime string.
TimeUpdated This property is required. string
The time this resource was last updated. An RFC3339 formatted datetime string.
applicationType This property is required. String
A filter to return resources that match the Application Type/Product Stack given..
compartmentId This property is required. String
The ID of the compartment in which to list resources.
credentials This property is required. List<GetFleetsFleetCollectionItemCredential>
Credentials associated with the Fleet.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
displayName This property is required. String
A filter to return only resources that match the entire display name given.
environmentType This property is required. String
A filter to return resources that match the Environment Type given.
fleetType This property is required. String
A filter to return fleets whose fleetType matches the given fleetType.
freeformTags This property is required. 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"}
groupType This property is required. String
Group Type associated with Group Fleet. Applicable for GROUP fleet types.
id This property is required. String
A filter to return fleets whose id matches the given Fleet identifier
isTargetAutoConfirm This property is required. Boolean
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.
lifecycleDetails This property is required. 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.
notificationPreferences This property is required. List<GetFleetsFleetCollectionItemNotificationPreference>
Notification information to get notified when the fleet status changes.
products This property is required. List<String>
Products associated with the Fleet.
resourceRegion This property is required. String
Associated region
resourceSelectionType This property is required. String
Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
ruleSelectionCriterias This property is required. List<GetFleetsFleetCollectionItemRuleSelectionCriteria>
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.
state This property is required. String
A filter to return fleets whose lifecycleState matches the given lifecycleState.
systemTags This property is required. Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time this resource was created. An RFC3339 formatted datetime string.
timeUpdated This property is required. String
The time this resource was last updated. An RFC3339 formatted datetime string.
applicationType This property is required. string
A filter to return resources that match the Application Type/Product Stack given..
compartmentId This property is required. string
The ID of the compartment in which to list resources.
credentials This property is required. GetFleetsFleetCollectionItemCredential[]
Credentials associated with the Fleet.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. string
A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
displayName This property is required. string
A filter to return only resources that match the entire display name given.
environmentType This property is required. string
A filter to return resources that match the Environment Type given.
fleetType This property is required. string
A filter to return fleets whose fleetType matches the given fleetType.
freeformTags This property is required. {[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"}
groupType This property is required. string
Group Type associated with Group Fleet. Applicable for GROUP fleet types.
id This property is required. string
A filter to return fleets whose id matches the given Fleet identifier
isTargetAutoConfirm This property is required. boolean
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.
lifecycleDetails This property is required. 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.
notificationPreferences This property is required. GetFleetsFleetCollectionItemNotificationPreference[]
Notification information to get notified when the fleet status changes.
products This property is required. string[]
Products associated with the Fleet.
resourceRegion This property is required. string
Associated region
resourceSelectionType This property is required. string
Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
ruleSelectionCriterias This property is required. GetFleetsFleetCollectionItemRuleSelectionCriteria[]
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.
state This property is required. string
A filter to return fleets whose lifecycleState matches the given lifecycleState.
systemTags This property is required. {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The time this resource was created. An RFC3339 formatted datetime string.
timeUpdated This property is required. string
The time this resource was last updated. An RFC3339 formatted datetime string.
application_type This property is required. str
A filter to return resources that match the Application Type/Product Stack given..
compartment_id This property is required. str
The ID of the compartment in which to list resources.
credentials This property is required. Sequence[fleetappsmanagement.GetFleetsFleetCollectionItemCredential]
Credentials associated with the Fleet.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. str
A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
display_name This property is required. str
A filter to return only resources that match the entire display name given.
environment_type This property is required. str
A filter to return resources that match the Environment Type given.
fleet_type This property is required. str
A filter to return fleets whose fleetType matches the given fleetType.
freeform_tags This property is required. 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"}
group_type This property is required. str
Group Type associated with Group Fleet. Applicable for GROUP fleet types.
id This property is required. str
A filter to return fleets whose id matches the given Fleet identifier
is_target_auto_confirm This property is required. bool
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 This property is required. 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 This property is required. Sequence[fleetappsmanagement.GetFleetsFleetCollectionItemNotificationPreference]
Notification information to get notified when the fleet status changes.
products This property is required. Sequence[str]
Products associated with the Fleet.
resource_region This property is required. str
Associated region
resource_selection_type This property is required. str
Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
rule_selection_criterias This property is required. Sequence[fleetappsmanagement.GetFleetsFleetCollectionItemRuleSelectionCriteria]
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.
state This property is required. str
A filter to return fleets whose lifecycleState matches the given lifecycleState.
system_tags This property is required. 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 This property is required. str
The time this resource was created. An RFC3339 formatted datetime string.
time_updated This property is required. str
The time this resource was last updated. An RFC3339 formatted datetime string.
applicationType This property is required. String
A filter to return resources that match the Application Type/Product Stack given..
compartmentId This property is required. String
The ID of the compartment in which to list resources.
credentials This property is required. List<Property Map>
Credentials associated with the Fleet.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
displayName This property is required. String
A filter to return only resources that match the entire display name given.
environmentType This property is required. String
A filter to return resources that match the Environment Type given.
fleetType This property is required. String
A filter to return fleets whose fleetType matches the given fleetType.
freeformTags This property is required. 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"}
groupType This property is required. String
Group Type associated with Group Fleet. Applicable for GROUP fleet types.
id This property is required. String
A filter to return fleets whose id matches the given Fleet identifier
isTargetAutoConfirm This property is required. Boolean
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.
lifecycleDetails This property is required. 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.
notificationPreferences This property is required. List<Property Map>
Notification information to get notified when the fleet status changes.
products This property is required. List<String>
Products associated with the Fleet.
resourceRegion This property is required. String
Associated region
resourceSelectionType This property is required. String
Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
ruleSelectionCriterias This property is required. List<Property Map>
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.
state This property is required. String
A filter to return fleets whose lifecycleState matches the given lifecycleState.
systemTags This property is required. Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time this resource was created. An RFC3339 formatted datetime string.
timeUpdated This property is required. String
The time this resource was last updated. An RFC3339 formatted datetime string.

GetFleetsFleetCollectionItemCredential

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
EntitySpecifics This property is required. List<GetFleetsFleetCollectionItemCredentialEntitySpecific>
Credential specific Details.
Passwords This property is required. List<GetFleetsFleetCollectionItemCredentialPassword>
Credential Details.
Users This property is required. List<GetFleetsFleetCollectionItemCredentialUser>
Credential Details.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
EntitySpecifics This property is required. []GetFleetsFleetCollectionItemCredentialEntitySpecific
Credential specific Details.
Passwords This property is required. []GetFleetsFleetCollectionItemCredentialPassword
Credential Details.
Users This property is required. []GetFleetsFleetCollectionItemCredentialUser
Credential Details.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
displayName This property is required. String
A filter to return only resources that match the entire display name given.
entitySpecifics This property is required. List<GetFleetsFleetCollectionItemCredentialEntitySpecific>
Credential specific Details.
passwords This property is required. List<GetFleetsFleetCollectionItemCredentialPassword>
Credential Details.
users This property is required. List<GetFleetsFleetCollectionItemCredentialUser>
Credential Details.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
displayName This property is required. string
A filter to return only resources that match the entire display name given.
entitySpecifics This property is required. GetFleetsFleetCollectionItemCredentialEntitySpecific[]
Credential specific Details.
passwords This property is required. GetFleetsFleetCollectionItemCredentialPassword[]
Credential Details.
users This property is required. GetFleetsFleetCollectionItemCredentialUser[]
Credential Details.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
display_name This property is required. str
A filter to return only resources that match the entire display name given.
entity_specifics This property is required. Sequence[fleetappsmanagement.GetFleetsFleetCollectionItemCredentialEntitySpecific]
Credential specific Details.
passwords This property is required. Sequence[fleetappsmanagement.GetFleetsFleetCollectionItemCredentialPassword]
Credential Details.
users This property is required. Sequence[fleetappsmanagement.GetFleetsFleetCollectionItemCredentialUser]
Credential Details.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
displayName This property is required. String
A filter to return only resources that match the entire display name given.
entitySpecifics This property is required. List<Property Map>
Credential specific Details.
passwords This property is required. List<Property Map>
Credential Details.
users This property is required. List<Property Map>
Credential Details.

GetFleetsFleetCollectionItemCredentialEntitySpecific

CredentialLevel This property is required. string
At what level the credential is provided?
ResourceId This property is required. string
OCID of the resource.
Target This property is required. string
Target name for which the credential is provided.
Variables This property is required. List<GetFleetsFleetCollectionItemCredentialEntitySpecificVariable>
List of fleet credential variables.
CredentialLevel This property is required. string
At what level the credential is provided?
ResourceId This property is required. string
OCID of the resource.
Target This property is required. string
Target name for which the credential is provided.
Variables This property is required. []GetFleetsFleetCollectionItemCredentialEntitySpecificVariable
List of fleet credential variables.
credentialLevel This property is required. String
At what level the credential is provided?
resourceId This property is required. String
OCID of the resource.
target This property is required. String
Target name for which the credential is provided.
variables This property is required. List<GetFleetsFleetCollectionItemCredentialEntitySpecificVariable>
List of fleet credential variables.
credentialLevel This property is required. string
At what level the credential is provided?
resourceId This property is required. string
OCID of the resource.
target This property is required. string
Target name for which the credential is provided.
variables This property is required. GetFleetsFleetCollectionItemCredentialEntitySpecificVariable[]
List of fleet credential variables.
credential_level This property is required. str
At what level the credential is provided?
resource_id This property is required. str
OCID of the resource.
target This property is required. str
Target name for which the credential is provided.
variables This property is required. Sequence[fleetappsmanagement.GetFleetsFleetCollectionItemCredentialEntitySpecificVariable]
List of fleet credential variables.
credentialLevel This property is required. String
At what level the credential is provided?
resourceId This property is required. String
OCID of the resource.
target This property is required. String
Target name for which the credential is provided.
variables This property is required. List<Property Map>
List of fleet credential variables.

GetFleetsFleetCollectionItemCredentialEntitySpecificVariable

Name This property is required. string
Name of the variable.
Value This property is required. string
Value of the Property.
Name This property is required. string
Name of the variable.
Value This property is required. string
Value of the Property.
name This property is required. String
Name of the variable.
value This property is required. String
Value of the Property.
name This property is required. string
Name of the variable.
value This property is required. string
Value of the Property.
name This property is required. str
Name of the variable.
value This property is required. str
Value of the Property.
name This property is required. String
Name of the variable.
value This property is required. String
Value of the Property.

GetFleetsFleetCollectionItemCredentialPassword

CredentialType This property is required. string
Credential Type.
KeyId This property is required. string
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
KeyVersion This property is required. string
The Vault Key version.
SecretId This property is required. string
The OCID of the secret.
SecretVersion This property is required. string
The secret version.
Value This property is required. string
Value of the Property.
VaultId This property is required. string
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
CredentialType This property is required. string
Credential Type.
KeyId This property is required. string
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
KeyVersion This property is required. string
The Vault Key version.
SecretId This property is required. string
The OCID of the secret.
SecretVersion This property is required. string
The secret version.
Value This property is required. string
Value of the Property.
VaultId This property is required. string
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
credentialType This property is required. String
Credential Type.
keyId This property is required. String
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
keyVersion This property is required. String
The Vault Key version.
secretId This property is required. String
The OCID of the secret.
secretVersion This property is required. String
The secret version.
value This property is required. String
Value of the Property.
vaultId This property is required. String
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
credentialType This property is required. string
Credential Type.
keyId This property is required. string
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
keyVersion This property is required. string
The Vault Key version.
secretId This property is required. string
The OCID of the secret.
secretVersion This property is required. string
The secret version.
value This property is required. string
Value of the Property.
vaultId This property is required. string
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
credential_type This property is required. str
Credential Type.
key_id This property is required. str
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
key_version This property is required. str
The Vault Key version.
secret_id This property is required. str
The OCID of the secret.
secret_version This property is required. str
The secret version.
value This property is required. str
Value of the Property.
vault_id This property is required. str
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
credentialType This property is required. String
Credential Type.
keyId This property is required. String
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
keyVersion This property is required. String
The Vault Key version.
secretId This property is required. String
The OCID of the secret.
secretVersion This property is required. String
The secret version.
value This property is required. String
Value of the Property.
vaultId This property is required. String
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.

GetFleetsFleetCollectionItemCredentialUser

CredentialType This property is required. string
Credential Type.
KeyId This property is required. string
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
KeyVersion This property is required. string
The Vault Key version.
SecretId This property is required. string
The OCID of the secret.
SecretVersion This property is required. string
The secret version.
Value This property is required. string
Value of the Property.
VaultId This property is required. string
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
CredentialType This property is required. string
Credential Type.
KeyId This property is required. string
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
KeyVersion This property is required. string
The Vault Key version.
SecretId This property is required. string
The OCID of the secret.
SecretVersion This property is required. string
The secret version.
Value This property is required. string
Value of the Property.
VaultId This property is required. string
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
credentialType This property is required. String
Credential Type.
keyId This property is required. String
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
keyVersion This property is required. String
The Vault Key version.
secretId This property is required. String
The OCID of the secret.
secretVersion This property is required. String
The secret version.
value This property is required. String
Value of the Property.
vaultId This property is required. String
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
credentialType This property is required. string
Credential Type.
keyId This property is required. string
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
keyVersion This property is required. string
The Vault Key version.
secretId This property is required. string
The OCID of the secret.
secretVersion This property is required. string
The secret version.
value This property is required. string
Value of the Property.
vaultId This property is required. string
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
credential_type This property is required. str
Credential Type.
key_id This property is required. str
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
key_version This property is required. str
The Vault Key version.
secret_id This property is required. str
The OCID of the secret.
secret_version This property is required. str
The secret version.
value This property is required. str
Value of the Property.
vault_id This property is required. str
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.
credentialType This property is required. String
Credential Type.
keyId This property is required. String
OCID for the Vault Key that will be used to encrypt/decrypt the value given.
keyVersion This property is required. String
The Vault Key version.
secretId This property is required. String
The OCID of the secret.
secretVersion This property is required. String
The secret version.
value This property is required. String
Value of the Property.
vaultId This property is required. String
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.

GetFleetsFleetCollectionItemNotificationPreference

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Preferences This property is required. List<GetFleetsFleetCollectionItemNotificationPreferencePreference>
Preferences to send notifications on the fleet activities.
TopicId This property is required. string
Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Preferences This property is required. []GetFleetsFleetCollectionItemNotificationPreferencePreference
Preferences to send notifications on the fleet activities.
TopicId This property is required. string
Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
preferences This property is required. List<GetFleetsFleetCollectionItemNotificationPreferencePreference>
Preferences to send notifications on the fleet activities.
topicId This property is required. String
Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
preferences This property is required. GetFleetsFleetCollectionItemNotificationPreferencePreference[]
Preferences to send notifications on the fleet activities.
topicId This property is required. 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 This property is required. str
The ID of the compartment in which to list resources.
preferences This property is required. Sequence[fleetappsmanagement.GetFleetsFleetCollectionItemNotificationPreferencePreference]
Preferences to send notifications on the fleet activities.
topic_id This property is required. str
Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
preferences This property is required. List<Property Map>
Preferences to send notifications on the fleet activities.
topicId This property is required. String
Topic Id where the notifications will be directed. A topic is a communication channel for sending messages on chosen events to subscriptions.

GetFleetsFleetCollectionItemNotificationPreferencePreference

OnJobFailure This property is required. bool
Enables or disables notification on Job Failures.
OnTopologyModification This property is required. bool
Enables or disables notification on Environment Fleet Topology Modification.
OnUpcomingSchedule This property is required. bool
Enables notification on upcoming schedule.
OnJobFailure This property is required. bool
Enables or disables notification on Job Failures.
OnTopologyModification This property is required. bool
Enables or disables notification on Environment Fleet Topology Modification.
OnUpcomingSchedule This property is required. bool
Enables notification on upcoming schedule.
onJobFailure This property is required. Boolean
Enables or disables notification on Job Failures.
onTopologyModification This property is required. Boolean
Enables or disables notification on Environment Fleet Topology Modification.
onUpcomingSchedule This property is required. Boolean
Enables notification on upcoming schedule.
onJobFailure This property is required. boolean
Enables or disables notification on Job Failures.
onTopologyModification This property is required. boolean
Enables or disables notification on Environment Fleet Topology Modification.
onUpcomingSchedule This property is required. boolean
Enables notification on upcoming schedule.
on_job_failure This property is required. bool
Enables or disables notification on Job Failures.
on_topology_modification This property is required. bool
Enables or disables notification on Environment Fleet Topology Modification.
on_upcoming_schedule This property is required. bool
Enables notification on upcoming schedule.
onJobFailure This property is required. Boolean
Enables or disables notification on Job Failures.
onTopologyModification This property is required. Boolean
Enables or disables notification on Environment Fleet Topology Modification.
onUpcomingSchedule This property is required. Boolean
Enables notification on upcoming schedule.

GetFleetsFleetCollectionItemRuleSelectionCriteria

MatchCondition This property is required. string
Match condition for the rule selection. Include resources that match all rules or any of the rules.
Rules This property is required. List<GetFleetsFleetCollectionItemRuleSelectionCriteriaRule>
Rules.
MatchCondition This property is required. string
Match condition for the rule selection. Include resources that match all rules or any of the rules.
Rules This property is required. []GetFleetsFleetCollectionItemRuleSelectionCriteriaRule
Rules.
matchCondition This property is required. String
Match condition for the rule selection. Include resources that match all rules or any of the rules.
rules This property is required. List<GetFleetsFleetCollectionItemRuleSelectionCriteriaRule>
Rules.
matchCondition This property is required. string
Match condition for the rule selection. Include resources that match all rules or any of the rules.
rules This property is required. GetFleetsFleetCollectionItemRuleSelectionCriteriaRule[]
Rules.
match_condition This property is required. str
Match condition for the rule selection. Include resources that match all rules or any of the rules.
rules This property is required. Sequence[fleetappsmanagement.GetFleetsFleetCollectionItemRuleSelectionCriteriaRule]
Rules.
matchCondition This property is required. String
Match condition for the rule selection. Include resources that match all rules or any of the rules.
rules This property is required. List<Property Map>
Rules.

GetFleetsFleetCollectionItemRuleSelectionCriteriaRule

Basis This property is required. 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'
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Conditions This property is required. List<GetFleetsFleetCollectionItemRuleSelectionCriteriaRuleCondition>
Rule Conditions
ResourceCompartmentId This property is required. string
The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
Basis This property is required. 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'
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Conditions This property is required. []GetFleetsFleetCollectionItemRuleSelectionCriteriaRuleCondition
Rule Conditions
ResourceCompartmentId This property is required. string
The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
basis This property is required. 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'
compartmentId This property is required. String
The ID of the compartment in which to list resources.
conditions This property is required. List<GetFleetsFleetCollectionItemRuleSelectionCriteriaRuleCondition>
Rule Conditions
resourceCompartmentId This property is required. String
The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
basis This property is required. 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'
compartmentId This property is required. string
The ID of the compartment in which to list resources.
conditions This property is required. GetFleetsFleetCollectionItemRuleSelectionCriteriaRuleCondition[]
Rule Conditions
resourceCompartmentId This property is required. string
The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
basis This property is required. 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 This property is required. str
The ID of the compartment in which to list resources.
conditions This property is required. Sequence[fleetappsmanagement.GetFleetsFleetCollectionItemRuleSelectionCriteriaRuleCondition]
Rule Conditions
resource_compartment_id This property is required. str
The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.
basis This property is required. 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'
compartmentId This property is required. String
The ID of the compartment in which to list resources.
conditions This property is required. List<Property Map>
Rule Conditions
resourceCompartmentId This property is required. String
The Compartment ID to dynamically search resources. Provide the compartment ID to which the rule is applicable.

GetFleetsFleetCollectionItemRuleSelectionCriteriaRuleCondition

AttrGroup This property is required. 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.
AttrKey This property is required. 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.
AttrValue This property is required. 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.
AttrGroup This property is required. 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.
AttrKey This property is required. 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.
AttrValue This property is required. 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.
attrGroup This property is required. 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.
attrKey This property is required. 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.
attrValue This property is required. 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.
attrGroup This property is required. 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.
attrKey This property is required. 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.
attrValue This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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.
attrGroup This property is required. 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.
attrKey This property is required. 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.
attrValue This property is required. 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.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi