1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetAppsManagement
  5. getFleetProperties
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.FleetAppsManagement.getFleetProperties

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

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

    List fleet properties in Fleet Application Management.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testFleetProperties = oci.FleetAppsManagement.getFleetProperties({
        fleetId: testFleet.id,
        compartmentId: compartmentId,
        displayName: fleetPropertyDisplayName,
        id: fleetPropertyId,
        state: fleetPropertyState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_fleet_properties = oci.FleetAppsManagement.get_fleet_properties(fleet_id=test_fleet["id"],
        compartment_id=compartment_id,
        display_name=fleet_property_display_name,
        id=fleet_property_id,
        state=fleet_property_state)
    
    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.GetFleetProperties(ctx, &fleetappsmanagement.GetFleetPropertiesArgs{
    			FleetId:       testFleet.Id,
    			CompartmentId: pulumi.StringRef(compartmentId),
    			DisplayName:   pulumi.StringRef(fleetPropertyDisplayName),
    			Id:            pulumi.StringRef(fleetPropertyId),
    			State:         pulumi.StringRef(fleetPropertyState),
    		}, 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 testFleetProperties = Oci.FleetAppsManagement.GetFleetProperties.Invoke(new()
        {
            FleetId = testFleet.Id,
            CompartmentId = compartmentId,
            DisplayName = fleetPropertyDisplayName,
            Id = fleetPropertyId,
            State = fleetPropertyState,
        });
    
    });
    
    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.GetFleetPropertiesArgs;
    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 testFleetProperties = FleetAppsManagementFunctions.getFleetProperties(GetFleetPropertiesArgs.builder()
                .fleetId(testFleet.id())
                .compartmentId(compartmentId)
                .displayName(fleetPropertyDisplayName)
                .id(fleetPropertyId)
                .state(fleetPropertyState)
                .build());
    
        }
    }
    
    variables:
      testFleetProperties:
        fn::invoke:
          function: oci:FleetAppsManagement:getFleetProperties
          arguments:
            fleetId: ${testFleet.id}
            compartmentId: ${compartmentId}
            displayName: ${fleetPropertyDisplayName}
            id: ${fleetPropertyId}
            state: ${fleetPropertyState}
    

    Using getFleetProperties

    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 getFleetProperties(args: GetFleetPropertiesArgs, opts?: InvokeOptions): Promise<GetFleetPropertiesResult>
    function getFleetPropertiesOutput(args: GetFleetPropertiesOutputArgs, opts?: InvokeOptions): Output<GetFleetPropertiesResult>
    def get_fleet_properties(compartment_id: Optional[str] = None,
                             display_name: Optional[str] = None,
                             filters: Optional[Sequence[_fleetappsmanagement.GetFleetPropertiesFilter]] = None,
                             fleet_id: Optional[str] = None,
                             id: Optional[str] = None,
                             state: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetFleetPropertiesResult
    def get_fleet_properties_output(compartment_id: Optional[pulumi.Input[str]] = None,
                             display_name: Optional[pulumi.Input[str]] = None,
                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[_fleetappsmanagement.GetFleetPropertiesFilterArgs]]]] = None,
                             fleet_id: Optional[pulumi.Input[str]] = None,
                             id: Optional[pulumi.Input[str]] = None,
                             state: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetFleetPropertiesResult]
    func GetFleetProperties(ctx *Context, args *GetFleetPropertiesArgs, opts ...InvokeOption) (*GetFleetPropertiesResult, error)
    func GetFleetPropertiesOutput(ctx *Context, args *GetFleetPropertiesOutputArgs, opts ...InvokeOption) GetFleetPropertiesResultOutput

    > Note: This function is named GetFleetProperties in the Go SDK.

    public static class GetFleetProperties 
    {
        public static Task<GetFleetPropertiesResult> InvokeAsync(GetFleetPropertiesArgs args, InvokeOptions? opts = null)
        public static Output<GetFleetPropertiesResult> Invoke(GetFleetPropertiesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetFleetPropertiesResult> getFleetProperties(GetFleetPropertiesArgs args, InvokeOptions options)
    public static Output<GetFleetPropertiesResult> getFleetProperties(GetFleetPropertiesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:FleetAppsManagement/getFleetProperties:getFleetProperties
      arguments:
        # arguments dictionary

    The following arguments are supported:

    FleetId string
    Unique Fleet identifier.
    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.
    Filters List<GetFleetPropertiesFilter>
    Id string
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    State string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    FleetId string
    Unique Fleet identifier.
    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.
    Filters []GetFleetPropertiesFilter
    Id string
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    State string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    fleetId String
    Unique Fleet identifier.
    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.
    filters List<GetFleetPropertiesFilter>
    id String
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    state String
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    fleetId string
    Unique Fleet identifier.
    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.
    filters GetFleetPropertiesFilter[]
    id string
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    state string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    fleet_id str
    Unique Fleet identifier.
    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.
    filters Sequence[fleetappsmanagement.GetFleetPropertiesFilter]
    id str
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    state str
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    fleetId String
    Unique Fleet identifier.
    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.
    filters List<Property Map>
    id String
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    state String
    A filter to return only resources whose lifecycleState matches the given lifecycleState.

    getFleetProperties Result

    The following output properties are available:

    FleetId string
    FleetPropertyCollections List<GetFleetPropertiesFleetPropertyCollection>
    The list of fleet_property_collection.
    CompartmentId string
    Tenancy OCID
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    Filters List<GetFleetPropertiesFilter>
    Id string
    The unique id of the resource.
    State string
    The current state of the FleetProperty.
    FleetId string
    FleetPropertyCollections []GetFleetPropertiesFleetPropertyCollection
    The list of fleet_property_collection.
    CompartmentId string
    Tenancy OCID
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    Filters []GetFleetPropertiesFilter
    Id string
    The unique id of the resource.
    State string
    The current state of the FleetProperty.
    fleetId String
    fleetPropertyCollections List<GetFleetPropertiesFleetPropertyCollection>
    The list of fleet_property_collection.
    compartmentId String
    Tenancy OCID
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters List<GetFleetPropertiesFilter>
    id String
    The unique id of the resource.
    state String
    The current state of the FleetProperty.
    fleetId string
    fleetPropertyCollections GetFleetPropertiesFleetPropertyCollection[]
    The list of fleet_property_collection.
    compartmentId string
    Tenancy OCID
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters GetFleetPropertiesFilter[]
    id string
    The unique id of the resource.
    state string
    The current state of the FleetProperty.
    fleet_id str
    fleet_property_collections Sequence[fleetappsmanagement.GetFleetPropertiesFleetPropertyCollection]
    The list of fleet_property_collection.
    compartment_id str
    Tenancy 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
    filters Sequence[fleetappsmanagement.GetFleetPropertiesFilter]
    id str
    The unique id of the resource.
    state str
    The current state of the FleetProperty.
    fleetId String
    fleetPropertyCollections List<Property Map>
    The list of fleet_property_collection.
    compartmentId String
    Tenancy OCID
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters List<Property Map>
    id String
    The unique id of the resource.
    state String
    The current state of the FleetProperty.

    Supporting Types

    GetFleetPropertiesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetFleetPropertiesFleetPropertyCollection

    GetFleetPropertiesFleetPropertyCollectionItem

    AllowedValues List<string>
    Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
    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.
    FleetId string
    Unique Fleet identifier.
    Id string
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    PropertyId string
    OCID referring to global level metadata property.
    SelectionType string
    Text selection of the property.
    State string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    Value string
    Value of the Property.
    ValueType string
    Format of the value.
    AllowedValues []string
    Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
    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.
    FleetId string
    Unique Fleet identifier.
    Id string
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    PropertyId string
    OCID referring to global level metadata property.
    SelectionType string
    Text selection of the property.
    State string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    Value string
    Value of the Property.
    ValueType string
    Format of the value.
    allowedValues List<String>
    Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
    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.
    fleetId String
    Unique Fleet identifier.
    id String
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    propertyId String
    OCID referring to global level metadata property.
    selectionType String
    Text selection of the property.
    state String
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time this resource was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time this resource was last updated. An RFC3339 formatted datetime string.
    value String
    Value of the Property.
    valueType String
    Format of the value.
    allowedValues string[]
    Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
    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.
    fleetId string
    Unique Fleet identifier.
    id string
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    propertyId string
    OCID referring to global level metadata property.
    selectionType string
    Text selection of the property.
    state string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    value string
    Value of the Property.
    valueType string
    Format of the value.
    allowed_values Sequence[str]
    Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
    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.
    fleet_id str
    Unique Fleet identifier.
    id str
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    property_id str
    OCID referring to global level metadata property.
    selection_type str
    Text selection of the property.
    state str
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time this resource was created. An RFC3339 formatted datetime string.
    time_updated str
    The time this resource was last updated. An RFC3339 formatted datetime string.
    value str
    Value of the Property.
    value_type str
    Format of the value.
    allowedValues List<String>
    Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
    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.
    fleetId String
    Unique Fleet identifier.
    id String
    A filter to return only resources whose fleetProperty identifier matches the given identifier.
    propertyId String
    OCID referring to global level metadata property.
    selectionType String
    Text selection of the property.
    state String
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time this resource was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time this resource was last updated. An RFC3339 formatted datetime string.
    value String
    Value of the Property.
    valueType String
    Format of the value.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi