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

oci.FleetAppsManagement.getFleetCredentials

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 Fleet Credentials in Oracle Cloud Infrastructure Fleet Apps Management service.

List credentials in Fleet Application Management.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testFleetCredentials = oci.FleetAppsManagement.getFleetCredentials({
    fleetId: testFleet.id,
    compartmentId: compartmentId,
    credentialLevel: fleetCredentialCredentialLevel,
    displayName: fleetCredentialDisplayName,
    id: fleetCredentialId,
    resourceId: testResource.id,
    state: fleetCredentialState,
    target: fleetCredentialTarget,
});
Copy
import pulumi
import pulumi_oci as oci

test_fleet_credentials = oci.FleetAppsManagement.get_fleet_credentials(fleet_id=test_fleet["id"],
    compartment_id=compartment_id,
    credential_level=fleet_credential_credential_level,
    display_name=fleet_credential_display_name,
    id=fleet_credential_id,
    resource_id=test_resource["id"],
    state=fleet_credential_state,
    target=fleet_credential_target)
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.GetFleetCredentials(ctx, &fleetappsmanagement.GetFleetCredentialsArgs{
			FleetId:         testFleet.Id,
			CompartmentId:   pulumi.StringRef(compartmentId),
			CredentialLevel: pulumi.StringRef(fleetCredentialCredentialLevel),
			DisplayName:     pulumi.StringRef(fleetCredentialDisplayName),
			Id:              pulumi.StringRef(fleetCredentialId),
			ResourceId:      pulumi.StringRef(testResource.Id),
			State:           pulumi.StringRef(fleetCredentialState),
			Target:          pulumi.StringRef(fleetCredentialTarget),
		}, 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 testFleetCredentials = Oci.FleetAppsManagement.GetFleetCredentials.Invoke(new()
    {
        FleetId = testFleet.Id,
        CompartmentId = compartmentId,
        CredentialLevel = fleetCredentialCredentialLevel,
        DisplayName = fleetCredentialDisplayName,
        Id = fleetCredentialId,
        ResourceId = testResource.Id,
        State = fleetCredentialState,
        Target = fleetCredentialTarget,
    });

});
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.GetFleetCredentialsArgs;
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 testFleetCredentials = FleetAppsManagementFunctions.getFleetCredentials(GetFleetCredentialsArgs.builder()
            .fleetId(testFleet.id())
            .compartmentId(compartmentId)
            .credentialLevel(fleetCredentialCredentialLevel)
            .displayName(fleetCredentialDisplayName)
            .id(fleetCredentialId)
            .resourceId(testResource.id())
            .state(fleetCredentialState)
            .target(fleetCredentialTarget)
            .build());

    }
}
Copy
variables:
  testFleetCredentials:
    fn::invoke:
      function: oci:FleetAppsManagement:getFleetCredentials
      arguments:
        fleetId: ${testFleet.id}
        compartmentId: ${compartmentId}
        credentialLevel: ${fleetCredentialCredentialLevel}
        displayName: ${fleetCredentialDisplayName}
        id: ${fleetCredentialId}
        resourceId: ${testResource.id}
        state: ${fleetCredentialState}
        target: ${fleetCredentialTarget}
Copy

Using getFleetCredentials

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 getFleetCredentials(args: GetFleetCredentialsArgs, opts?: InvokeOptions): Promise<GetFleetCredentialsResult>
function getFleetCredentialsOutput(args: GetFleetCredentialsOutputArgs, opts?: InvokeOptions): Output<GetFleetCredentialsResult>
Copy
def get_fleet_credentials(compartment_id: Optional[str] = None,
                          credential_level: Optional[str] = None,
                          display_name: Optional[str] = None,
                          filters: Optional[Sequence[_fleetappsmanagement.GetFleetCredentialsFilter]] = None,
                          fleet_id: Optional[str] = None,
                          id: Optional[str] = None,
                          resource_id: Optional[str] = None,
                          state: Optional[str] = None,
                          target: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetFleetCredentialsResult
def get_fleet_credentials_output(compartment_id: Optional[pulumi.Input[str]] = None,
                          credential_level: Optional[pulumi.Input[str]] = None,
                          display_name: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[_fleetappsmanagement.GetFleetCredentialsFilterArgs]]]] = None,
                          fleet_id: Optional[pulumi.Input[str]] = None,
                          id: Optional[pulumi.Input[str]] = None,
                          resource_id: Optional[pulumi.Input[str]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          target: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetFleetCredentialsResult]
Copy
func GetFleetCredentials(ctx *Context, args *GetFleetCredentialsArgs, opts ...InvokeOption) (*GetFleetCredentialsResult, error)
func GetFleetCredentialsOutput(ctx *Context, args *GetFleetCredentialsOutputArgs, opts ...InvokeOption) GetFleetCredentialsResultOutput
Copy

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

public static class GetFleetCredentials 
{
    public static Task<GetFleetCredentialsResult> InvokeAsync(GetFleetCredentialsArgs args, InvokeOptions? opts = null)
    public static Output<GetFleetCredentialsResult> Invoke(GetFleetCredentialsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetFleetCredentialsResult> getFleetCredentials(GetFleetCredentialsArgs args, InvokeOptions options)
public static Output<GetFleetCredentialsResult> getFleetCredentials(GetFleetCredentialsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:FleetAppsManagement/getFleetCredentials:getFleetCredentials
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

FleetId This property is required. string
Unique Fleet identifier.
CompartmentId string
The ID of the compartment in which to list resources.
CredentialLevel string
A filter to return only resources whose credentialLevel matches the given credentialLevel.
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. List<GetFleetCredentialsFilter>
Id string
A filter to return only resources whose credential identifier matches the given identifier.
ResourceId string
Resource Identifier
State string
A filter to return only resources whose lifecycleState matches the given lifecycleState.
Target string
A filter to return only resources whose target matches the given target name.
FleetId This property is required. string
Unique Fleet identifier.
CompartmentId string
The ID of the compartment in which to list resources.
CredentialLevel string
A filter to return only resources whose credentialLevel matches the given credentialLevel.
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. []GetFleetCredentialsFilter
Id string
A filter to return only resources whose credential identifier matches the given identifier.
ResourceId string
Resource Identifier
State string
A filter to return only resources whose lifecycleState matches the given lifecycleState.
Target string
A filter to return only resources whose target matches the given target name.
fleetId This property is required. String
Unique Fleet identifier.
compartmentId String
The ID of the compartment in which to list resources.
credentialLevel String
A filter to return only resources whose credentialLevel matches the given credentialLevel.
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<GetFleetCredentialsFilter>
id String
A filter to return only resources whose credential identifier matches the given identifier.
resourceId String
Resource Identifier
state String
A filter to return only resources whose lifecycleState matches the given lifecycleState.
target String
A filter to return only resources whose target matches the given target name.
fleetId This property is required. string
Unique Fleet identifier.
compartmentId string
The ID of the compartment in which to list resources.
credentialLevel string
A filter to return only resources whose credentialLevel matches the given credentialLevel.
displayName string
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. GetFleetCredentialsFilter[]
id string
A filter to return only resources whose credential identifier matches the given identifier.
resourceId string
Resource Identifier
state string
A filter to return only resources whose lifecycleState matches the given lifecycleState.
target string
A filter to return only resources whose target matches the given target name.
fleet_id This property is required. str
Unique Fleet identifier.
compartment_id str
The ID of the compartment in which to list resources.
credential_level str
A filter to return only resources whose credentialLevel matches the given credentialLevel.
display_name str
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. Sequence[fleetappsmanagement.GetFleetCredentialsFilter]
id str
A filter to return only resources whose credential identifier matches the given identifier.
resource_id str
Resource Identifier
state str
A filter to return only resources whose lifecycleState matches the given lifecycleState.
target str
A filter to return only resources whose target matches the given target name.
fleetId This property is required. String
Unique Fleet identifier.
compartmentId String
The ID of the compartment in which to list resources.
credentialLevel String
A filter to return only resources whose credentialLevel matches the given credentialLevel.
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<Property Map>
id String
A filter to return only resources whose credential identifier matches the given identifier.
resourceId String
Resource Identifier
state String
A filter to return only resources whose lifecycleState matches the given lifecycleState.
target String
A filter to return only resources whose target matches the given target name.

getFleetCredentials Result

The following output properties are available:

FleetCredentialCollections List<GetFleetCredentialsFleetCredentialCollection>
The list of fleet_credential_collection.
FleetId string
CompartmentId string
Tenancy OCID
CredentialLevel string
At what level the credential is provided?
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<GetFleetCredentialsFilter>
Id string
The unique id of the resource.
ResourceId string
OCID of the resource associated with the target for which the credential is created.
State string
The current state of the FleetCredential.
Target string
Target name for which the credential is provided.
FleetCredentialCollections []GetFleetCredentialsFleetCredentialCollection
The list of fleet_credential_collection.
FleetId string
CompartmentId string
Tenancy OCID
CredentialLevel string
At what level the credential is provided?
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 []GetFleetCredentialsFilter
Id string
The unique id of the resource.
ResourceId string
OCID of the resource associated with the target for which the credential is created.
State string
The current state of the FleetCredential.
Target string
Target name for which the credential is provided.
fleetCredentialCollections List<GetFleetCredentialsFleetCredentialCollection>
The list of fleet_credential_collection.
fleetId String
compartmentId String
Tenancy OCID
credentialLevel String
At what level the credential is provided?
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<GetFleetCredentialsFilter>
id String
The unique id of the resource.
resourceId String
OCID of the resource associated with the target for which the credential is created.
state String
The current state of the FleetCredential.
target String
Target name for which the credential is provided.
fleetCredentialCollections GetFleetCredentialsFleetCredentialCollection[]
The list of fleet_credential_collection.
fleetId string
compartmentId string
Tenancy OCID
credentialLevel string
At what level the credential is provided?
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 GetFleetCredentialsFilter[]
id string
The unique id of the resource.
resourceId string
OCID of the resource associated with the target for which the credential is created.
state string
The current state of the FleetCredential.
target string
Target name for which the credential is provided.
fleet_credential_collections Sequence[fleetappsmanagement.GetFleetCredentialsFleetCredentialCollection]
The list of fleet_credential_collection.
fleet_id str
compartment_id str
Tenancy OCID
credential_level str
At what level the credential is provided?
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.GetFleetCredentialsFilter]
id str
The unique id of the resource.
resource_id str
OCID of the resource associated with the target for which the credential is created.
state str
The current state of the FleetCredential.
target str
Target name for which the credential is provided.
fleetCredentialCollections List<Property Map>
The list of fleet_credential_collection.
fleetId String
compartmentId String
Tenancy OCID
credentialLevel String
At what level the credential is provided?
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.
resourceId String
OCID of the resource associated with the target for which the credential is created.
state String
The current state of the FleetCredential.
target String
Target name for which the credential is provided.

Supporting Types

GetFleetCredentialsFilter

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

GetFleetCredentialsFleetCredentialCollection

items This property is required. List<Property Map>

GetFleetCredentialsFleetCredentialCollectionItem

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<GetFleetCredentialsFleetCredentialCollectionItemEntitySpecific>
Credential specific Details.
FleetId This property is required. string
Unique Fleet identifier.
Id This property is required. string
A filter to return only resources whose credential identifier matches the given identifier.
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.
Passwords This property is required. List<GetFleetCredentialsFleetCredentialCollectionItemPassword>
Credential Details.
State This property is required. string
A filter to return only resources 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.
Users This property is required. List<GetFleetCredentialsFleetCredentialCollectionItemUser>
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. []GetFleetCredentialsFleetCredentialCollectionItemEntitySpecific
Credential specific Details.
FleetId This property is required. string
Unique Fleet identifier.
Id This property is required. string
A filter to return only resources whose credential identifier matches the given identifier.
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.
Passwords This property is required. []GetFleetCredentialsFleetCredentialCollectionItemPassword
Credential Details.
State This property is required. string
A filter to return only resources 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.
Users This property is required. []GetFleetCredentialsFleetCredentialCollectionItemUser
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<GetFleetCredentialsFleetCredentialCollectionItemEntitySpecific>
Credential specific Details.
fleetId This property is required. String
Unique Fleet identifier.
id This property is required. String
A filter to return only resources whose credential identifier matches the given identifier.
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.
passwords This property is required. List<GetFleetCredentialsFleetCredentialCollectionItemPassword>
Credential Details.
state This property is required. String
A filter to return only resources 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.
users This property is required. List<GetFleetCredentialsFleetCredentialCollectionItemUser>
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. GetFleetCredentialsFleetCredentialCollectionItemEntitySpecific[]
Credential specific Details.
fleetId This property is required. string
Unique Fleet identifier.
id This property is required. string
A filter to return only resources whose credential identifier matches the given identifier.
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.
passwords This property is required. GetFleetCredentialsFleetCredentialCollectionItemPassword[]
Credential Details.
state This property is required. string
A filter to return only resources 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.
users This property is required. GetFleetCredentialsFleetCredentialCollectionItemUser[]
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.GetFleetCredentialsFleetCredentialCollectionItemEntitySpecific]
Credential specific Details.
fleet_id This property is required. str
Unique Fleet identifier.
id This property is required. str
A filter to return only resources whose credential identifier matches the given identifier.
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.
passwords This property is required. Sequence[fleetappsmanagement.GetFleetCredentialsFleetCredentialCollectionItemPassword]
Credential Details.
state This property is required. str
A filter to return only resources 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.
users This property is required. Sequence[fleetappsmanagement.GetFleetCredentialsFleetCredentialCollectionItemUser]
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.
fleetId This property is required. String
Unique Fleet identifier.
id This property is required. String
A filter to return only resources whose credential identifier matches the given identifier.
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.
passwords This property is required. List<Property Map>
Credential Details.
state This property is required. String
A filter to return only resources 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.
users This property is required. List<Property Map>
Credential Details.

GetFleetCredentialsFleetCredentialCollectionItemEntitySpecific

CredentialLevel This property is required. string
A filter to return only resources whose credentialLevel matches the given credentialLevel.
ResourceId This property is required. string
Resource Identifier
Target This property is required. string
A filter to return only resources whose target matches the given target name.
Variables This property is required. List<GetFleetCredentialsFleetCredentialCollectionItemEntitySpecificVariable>
List of fleet credential variables.
CredentialLevel This property is required. string
A filter to return only resources whose credentialLevel matches the given credentialLevel.
ResourceId This property is required. string
Resource Identifier
Target This property is required. string
A filter to return only resources whose target matches the given target name.
Variables This property is required. []GetFleetCredentialsFleetCredentialCollectionItemEntitySpecificVariable
List of fleet credential variables.
credentialLevel This property is required. String
A filter to return only resources whose credentialLevel matches the given credentialLevel.
resourceId This property is required. String
Resource Identifier
target This property is required. String
A filter to return only resources whose target matches the given target name.
variables This property is required. List<GetFleetCredentialsFleetCredentialCollectionItemEntitySpecificVariable>
List of fleet credential variables.
credentialLevel This property is required. string
A filter to return only resources whose credentialLevel matches the given credentialLevel.
resourceId This property is required. string
Resource Identifier
target This property is required. string
A filter to return only resources whose target matches the given target name.
variables This property is required. GetFleetCredentialsFleetCredentialCollectionItemEntitySpecificVariable[]
List of fleet credential variables.
credential_level This property is required. str
A filter to return only resources whose credentialLevel matches the given credentialLevel.
resource_id This property is required. str
Resource Identifier
target This property is required. str
A filter to return only resources whose target matches the given target name.
variables This property is required. Sequence[fleetappsmanagement.GetFleetCredentialsFleetCredentialCollectionItemEntitySpecificVariable]
List of fleet credential variables.
credentialLevel This property is required. String
A filter to return only resources whose credentialLevel matches the given credentialLevel.
resourceId This property is required. String
Resource Identifier
target This property is required. String
A filter to return only resources whose target matches the given target name.
variables This property is required. List<Property Map>
List of fleet credential variables.

GetFleetCredentialsFleetCredentialCollectionItemEntitySpecificVariable

Name This property is required. string
Name of the variable.
Value This property is required. string
The value corresponding to the credential.
Name This property is required. string
Name of the variable.
Value This property is required. string
The value corresponding to the credential.
name This property is required. String
Name of the variable.
value This property is required. String
The value corresponding to the credential.
name This property is required. string
Name of the variable.
value This property is required. string
The value corresponding to the credential.
name This property is required. str
Name of the variable.
value This property is required. str
The value corresponding to the credential.
name This property is required. String
Name of the variable.
value This property is required. String
The value corresponding to the credential.

GetFleetCredentialsFleetCredentialCollectionItemPassword

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
The value corresponding to the credential.
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
The value corresponding to the credential.
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
The value corresponding to the credential.
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
The value corresponding to the credential.
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
The value corresponding to the credential.
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
The value corresponding to the credential.
vaultId This property is required. String
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.

GetFleetCredentialsFleetCredentialCollectionItemUser

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
The value corresponding to the credential.
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
The value corresponding to the credential.
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
The value corresponding to the credential.
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
The value corresponding to the credential.
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
The value corresponding to the credential.
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
The value corresponding to the credential.
vaultId This property is required. String
OCID for the Vault that will be used to fetch the key to encrypt/decrypt the value given.

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