1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Jms
  5. getJavaDownloadsJavaDownloadTokens
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

oci.Jms.getJavaDownloadsJavaDownloadTokens

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

    This data source provides the list of Java Download Tokens in Oracle Cloud Infrastructure Jms Java Downloads service.

    Returns a list of JavaDownloadTokens.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testJavaDownloadTokens = oci.Jms.getJavaDownloadsJavaDownloadTokens({
        compartmentId: tenancyOcid,
        displayName: javaDownloadTokenDisplayName,
        familyVersion: javaDownloadTokenFamilyVersion,
        id: javaDownloadTokenId,
        searchByUser: javaDownloadTokenSearchByUser,
        state: javaDownloadTokenState,
        value: javaDownloadTokenValue,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_java_download_tokens = oci.Jms.get_java_downloads_java_download_tokens(compartment_id=tenancy_ocid,
        display_name=java_download_token_display_name,
        family_version=java_download_token_family_version,
        id=java_download_token_id,
        search_by_user=java_download_token_search_by_user,
        state=java_download_token_state,
        value=java_download_token_value)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Jms"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Jms.GetJavaDownloadsJavaDownloadTokens(ctx, &jms.GetJavaDownloadsJavaDownloadTokensArgs{
    			CompartmentId: tenancyOcid,
    			DisplayName:   pulumi.StringRef(javaDownloadTokenDisplayName),
    			FamilyVersion: pulumi.StringRef(javaDownloadTokenFamilyVersion),
    			Id:            pulumi.StringRef(javaDownloadTokenId),
    			SearchByUser:  pulumi.StringRef(javaDownloadTokenSearchByUser),
    			State:         pulumi.StringRef(javaDownloadTokenState),
    			Value:         pulumi.StringRef(javaDownloadTokenValue),
    		}, 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 testJavaDownloadTokens = Oci.Jms.GetJavaDownloadsJavaDownloadTokens.Invoke(new()
        {
            CompartmentId = tenancyOcid,
            DisplayName = javaDownloadTokenDisplayName,
            FamilyVersion = javaDownloadTokenFamilyVersion,
            Id = javaDownloadTokenId,
            SearchByUser = javaDownloadTokenSearchByUser,
            State = javaDownloadTokenState,
            Value = javaDownloadTokenValue,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Jms.JmsFunctions;
    import com.pulumi.oci.Jms.inputs.GetJavaDownloadsJavaDownloadTokensArgs;
    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 testJavaDownloadTokens = JmsFunctions.getJavaDownloadsJavaDownloadTokens(GetJavaDownloadsJavaDownloadTokensArgs.builder()
                .compartmentId(tenancyOcid)
                .displayName(javaDownloadTokenDisplayName)
                .familyVersion(javaDownloadTokenFamilyVersion)
                .id(javaDownloadTokenId)
                .searchByUser(javaDownloadTokenSearchByUser)
                .state(javaDownloadTokenState)
                .value(javaDownloadTokenValue)
                .build());
    
        }
    }
    
    variables:
      testJavaDownloadTokens:
        fn::invoke:
          Function: oci:Jms:getJavaDownloadsJavaDownloadTokens
          Arguments:
            compartmentId: ${tenancyOcid}
            displayName: ${javaDownloadTokenDisplayName}
            familyVersion: ${javaDownloadTokenFamilyVersion}
            id: ${javaDownloadTokenId}
            searchByUser: ${javaDownloadTokenSearchByUser}
            state: ${javaDownloadTokenState}
            value: ${javaDownloadTokenValue}
    

    Using getJavaDownloadsJavaDownloadTokens

    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 getJavaDownloadsJavaDownloadTokens(args: GetJavaDownloadsJavaDownloadTokensArgs, opts?: InvokeOptions): Promise<GetJavaDownloadsJavaDownloadTokensResult>
    function getJavaDownloadsJavaDownloadTokensOutput(args: GetJavaDownloadsJavaDownloadTokensOutputArgs, opts?: InvokeOptions): Output<GetJavaDownloadsJavaDownloadTokensResult>
    def get_java_downloads_java_download_tokens(compartment_id: Optional[str] = None,
                                                display_name: Optional[str] = None,
                                                family_version: Optional[str] = None,
                                                filters: Optional[Sequence[_jms.GetJavaDownloadsJavaDownloadTokensFilter]] = None,
                                                id: Optional[str] = None,
                                                search_by_user: Optional[str] = None,
                                                state: Optional[str] = None,
                                                value: Optional[str] = None,
                                                opts: Optional[InvokeOptions] = None) -> GetJavaDownloadsJavaDownloadTokensResult
    def get_java_downloads_java_download_tokens_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                display_name: Optional[pulumi.Input[str]] = None,
                                                family_version: Optional[pulumi.Input[str]] = None,
                                                filters: Optional[pulumi.Input[Sequence[pulumi.Input[_jms.GetJavaDownloadsJavaDownloadTokensFilterArgs]]]] = None,
                                                id: Optional[pulumi.Input[str]] = None,
                                                search_by_user: Optional[pulumi.Input[str]] = None,
                                                state: Optional[pulumi.Input[str]] = None,
                                                value: Optional[pulumi.Input[str]] = None,
                                                opts: Optional[InvokeOptions] = None) -> Output[GetJavaDownloadsJavaDownloadTokensResult]
    func GetJavaDownloadsJavaDownloadTokens(ctx *Context, args *GetJavaDownloadsJavaDownloadTokensArgs, opts ...InvokeOption) (*GetJavaDownloadsJavaDownloadTokensResult, error)
    func GetJavaDownloadsJavaDownloadTokensOutput(ctx *Context, args *GetJavaDownloadsJavaDownloadTokensOutputArgs, opts ...InvokeOption) GetJavaDownloadsJavaDownloadTokensResultOutput

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

    public static class GetJavaDownloadsJavaDownloadTokens 
    {
        public static Task<GetJavaDownloadsJavaDownloadTokensResult> InvokeAsync(GetJavaDownloadsJavaDownloadTokensArgs args, InvokeOptions? opts = null)
        public static Output<GetJavaDownloadsJavaDownloadTokensResult> Invoke(GetJavaDownloadsJavaDownloadTokensInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetJavaDownloadsJavaDownloadTokensResult> getJavaDownloadsJavaDownloadTokens(GetJavaDownloadsJavaDownloadTokensArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Jms/getJavaDownloadsJavaDownloadTokens:getJavaDownloadsJavaDownloadTokens
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the tenancy.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FamilyVersion string
    Unique Java family version identifier.
    Filters List<GetJavaDownloadsJavaDownloadTokensFilter>
    Id string
    Unique JavaDownloadToken identifier.
    SearchByUser string
    A filter to return only resources that match the user principal detail. The search string can be any of the property values from the Principal object. This object is used as response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
    State string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    Value string
    Unique JavaDownloadToken value.
    CompartmentId string
    The OCID of the tenancy.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FamilyVersion string
    Unique Java family version identifier.
    Filters []GetJavaDownloadsJavaDownloadTokensFilter
    Id string
    Unique JavaDownloadToken identifier.
    SearchByUser string
    A filter to return only resources that match the user principal detail. The search string can be any of the property values from the Principal object. This object is used as response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
    State string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    Value string
    Unique JavaDownloadToken value.
    compartmentId String
    The OCID of the tenancy.
    displayName String
    A filter to return only resources that match the entire display name given.
    familyVersion String
    Unique Java family version identifier.
    filters List<GetJavaDownloadsJavaDownloadTokensFilter>
    id String
    Unique JavaDownloadToken identifier.
    searchByUser String
    A filter to return only resources that match the user principal detail. The search string can be any of the property values from the Principal object. This object is used as response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
    state String
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    value String
    Unique JavaDownloadToken value.
    compartmentId string
    The OCID of the tenancy.
    displayName string
    A filter to return only resources that match the entire display name given.
    familyVersion string
    Unique Java family version identifier.
    filters GetJavaDownloadsJavaDownloadTokensFilter[]
    id string
    Unique JavaDownloadToken identifier.
    searchByUser string
    A filter to return only resources that match the user principal detail. The search string can be any of the property values from the Principal object. This object is used as response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
    state string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    value string
    Unique JavaDownloadToken value.
    compartment_id str
    The OCID of the tenancy.
    display_name str
    A filter to return only resources that match the entire display name given.
    family_version str
    Unique Java family version identifier.
    filters Sequence[jms.GetJavaDownloadsJavaDownloadTokensFilter]
    id str
    Unique JavaDownloadToken identifier.
    search_by_user str
    A filter to return only resources that match the user principal detail. The search string can be any of the property values from the Principal object. This object is used as response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
    state str
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    value str
    Unique JavaDownloadToken value.
    compartmentId String
    The OCID of the tenancy.
    displayName String
    A filter to return only resources that match the entire display name given.
    familyVersion String
    Unique Java family version identifier.
    filters List<Property Map>
    id String
    Unique JavaDownloadToken identifier.
    searchByUser String
    A filter to return only resources that match the user principal detail. The search string can be any of the property values from the Principal object. This object is used as response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
    state String
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    value String
    Unique JavaDownloadToken value.

    getJavaDownloadsJavaDownloadTokens Result

    The following output properties are available:

    CompartmentId string
    The OCID of the tenancy scoped to the JavaDownloadToken.
    JavaDownloadTokenCollections List<GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollection>
    The list of java_download_token_collection.
    DisplayName string
    The name of the principal.
    FamilyVersion string
    Filters List<GetJavaDownloadsJavaDownloadTokensFilter>
    Id string
    The OCID of the principal.
    SearchByUser string
    State string
    The current state of the JavaDownloadToken.
    Value string
    Uniquely generated value for the JavaDownloadToken.
    CompartmentId string
    The OCID of the tenancy scoped to the JavaDownloadToken.
    JavaDownloadTokenCollections []GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollection
    The list of java_download_token_collection.
    DisplayName string
    The name of the principal.
    FamilyVersion string
    Filters []GetJavaDownloadsJavaDownloadTokensFilter
    Id string
    The OCID of the principal.
    SearchByUser string
    State string
    The current state of the JavaDownloadToken.
    Value string
    Uniquely generated value for the JavaDownloadToken.
    compartmentId String
    The OCID of the tenancy scoped to the JavaDownloadToken.
    javaDownloadTokenCollections List<GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollection>
    The list of java_download_token_collection.
    displayName String
    The name of the principal.
    familyVersion String
    filters List<GetJavaDownloadsJavaDownloadTokensFilter>
    id String
    The OCID of the principal.
    searchByUser String
    state String
    The current state of the JavaDownloadToken.
    value String
    Uniquely generated value for the JavaDownloadToken.
    compartmentId string
    The OCID of the tenancy scoped to the JavaDownloadToken.
    javaDownloadTokenCollections GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollection[]
    The list of java_download_token_collection.
    displayName string
    The name of the principal.
    familyVersion string
    filters GetJavaDownloadsJavaDownloadTokensFilter[]
    id string
    The OCID of the principal.
    searchByUser string
    state string
    The current state of the JavaDownloadToken.
    value string
    Uniquely generated value for the JavaDownloadToken.
    compartment_id str
    The OCID of the tenancy scoped to the JavaDownloadToken.
    java_download_token_collections Sequence[jms.GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollection]
    The list of java_download_token_collection.
    display_name str
    The name of the principal.
    family_version str
    filters Sequence[jms.GetJavaDownloadsJavaDownloadTokensFilter]
    id str
    The OCID of the principal.
    search_by_user str
    state str
    The current state of the JavaDownloadToken.
    value str
    Uniquely generated value for the JavaDownloadToken.
    compartmentId String
    The OCID of the tenancy scoped to the JavaDownloadToken.
    javaDownloadTokenCollections List<Property Map>
    The list of java_download_token_collection.
    displayName String
    The name of the principal.
    familyVersion String
    filters List<Property Map>
    id String
    The OCID of the principal.
    searchByUser String
    state String
    The current state of the JavaDownloadToken.
    value String
    Uniquely generated value for the JavaDownloadToken.

    Supporting Types

    GetJavaDownloadsJavaDownloadTokensFilter

    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

    GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollection

    GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItem

    CompartmentId string
    The OCID of the tenancy.
    CreatedBies List<GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemCreatedBy>
    An authorized principal.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
    Description string
    User provided description of the JavaDownloadToken.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
    Id string
    Unique JavaDownloadToken identifier.
    IsDefault bool
    A flag to indicate if the token is default.
    JavaVersion string
    The associated Java version of the JavaDownloadToken.
    LastUpdatedBies List<GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemLastUpdatedBy>
    An authorized principal.
    LicenseTypes List<string>
    The license type(s) associated with the JavaDownloadToken.
    LifecycleDetails string
    Possible lifecycle substates.
    State string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the JavaDownloadToken was created. An RFC3339 formatted datetime string.
    TimeExpires string
    The expiry time of the JavaDownloadToken. An RFC3339 formatted datetime string.
    TimeLastUsed string
    The time the JavaDownloadToken was last used for download. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the JavaDownloadToken was updated. An RFC3339 formatted datetime string.
    Value string
    Unique JavaDownloadToken value.
    CompartmentId string
    The OCID of the tenancy.
    CreatedBies []GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemCreatedBy
    An authorized principal.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
    Description string
    User provided description of the JavaDownloadToken.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
    Id string
    Unique JavaDownloadToken identifier.
    IsDefault bool
    A flag to indicate if the token is default.
    JavaVersion string
    The associated Java version of the JavaDownloadToken.
    LastUpdatedBies []GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemLastUpdatedBy
    An authorized principal.
    LicenseTypes []string
    The license type(s) associated with the JavaDownloadToken.
    LifecycleDetails string
    Possible lifecycle substates.
    State string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the JavaDownloadToken was created. An RFC3339 formatted datetime string.
    TimeExpires string
    The expiry time of the JavaDownloadToken. An RFC3339 formatted datetime string.
    TimeLastUsed string
    The time the JavaDownloadToken was last used for download. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the JavaDownloadToken was updated. An RFC3339 formatted datetime string.
    Value string
    Unique JavaDownloadToken value.
    compartmentId String
    The OCID of the tenancy.
    createdBies List<GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemCreatedBy>
    An authorized principal.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
    description String
    User provided description of the JavaDownloadToken.
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
    id String
    Unique JavaDownloadToken identifier.
    isDefault Boolean
    A flag to indicate if the token is default.
    javaVersion String
    The associated Java version of the JavaDownloadToken.
    lastUpdatedBies List<GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemLastUpdatedBy>
    An authorized principal.
    licenseTypes List<String>
    The license type(s) associated with the JavaDownloadToken.
    lifecycleDetails String
    Possible lifecycle substates.
    state String
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the JavaDownloadToken was created. An RFC3339 formatted datetime string.
    timeExpires String
    The expiry time of the JavaDownloadToken. An RFC3339 formatted datetime string.
    timeLastUsed String
    The time the JavaDownloadToken was last used for download. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the JavaDownloadToken was updated. An RFC3339 formatted datetime string.
    value String
    Unique JavaDownloadToken value.
    compartmentId string
    The OCID of the tenancy.
    createdBies GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemCreatedBy[]
    An authorized principal.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
    description string
    User provided description of the JavaDownloadToken.
    displayName string
    A filter to return only resources that match the entire display name given.
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
    id string
    Unique JavaDownloadToken identifier.
    isDefault boolean
    A flag to indicate if the token is default.
    javaVersion string
    The associated Java version of the JavaDownloadToken.
    lastUpdatedBies GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemLastUpdatedBy[]
    An authorized principal.
    licenseTypes string[]
    The license type(s) associated with the JavaDownloadToken.
    lifecycleDetails string
    Possible lifecycle substates.
    state string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the JavaDownloadToken was created. An RFC3339 formatted datetime string.
    timeExpires string
    The expiry time of the JavaDownloadToken. An RFC3339 formatted datetime string.
    timeLastUsed string
    The time the JavaDownloadToken was last used for download. An RFC3339 formatted datetime string.
    timeUpdated string
    The time the JavaDownloadToken was updated. An RFC3339 formatted datetime string.
    value string
    Unique JavaDownloadToken value.
    compartment_id str
    The OCID of the tenancy.
    created_bies Sequence[jms.GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemCreatedBy]
    An authorized principal.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
    description str
    User provided description of the JavaDownloadToken.
    display_name str
    A filter to return only resources that match the entire display name given.
    freeform_tags Mapping[str, Any]
    Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
    id str
    Unique JavaDownloadToken identifier.
    is_default bool
    A flag to indicate if the token is default.
    java_version str
    The associated Java version of the JavaDownloadToken.
    last_updated_bies Sequence[jms.GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemLastUpdatedBy]
    An authorized principal.
    license_types Sequence[str]
    The license type(s) associated with the JavaDownloadToken.
    lifecycle_details str
    Possible lifecycle substates.
    state str
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time the JavaDownloadToken was created. An RFC3339 formatted datetime string.
    time_expires str
    The expiry time of the JavaDownloadToken. An RFC3339 formatted datetime string.
    time_last_used str
    The time the JavaDownloadToken was last used for download. An RFC3339 formatted datetime string.
    time_updated str
    The time the JavaDownloadToken was updated. An RFC3339 formatted datetime string.
    value str
    Unique JavaDownloadToken value.
    compartmentId String
    The OCID of the tenancy.
    createdBies List<Property Map>
    An authorized principal.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
    description String
    User provided description of the JavaDownloadToken.
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
    id String
    Unique JavaDownloadToken identifier.
    isDefault Boolean
    A flag to indicate if the token is default.
    javaVersion String
    The associated Java version of the JavaDownloadToken.
    lastUpdatedBies List<Property Map>
    An authorized principal.
    licenseTypes List<String>
    The license type(s) associated with the JavaDownloadToken.
    lifecycleDetails String
    Possible lifecycle substates.
    state String
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the JavaDownloadToken was created. An RFC3339 formatted datetime string.
    timeExpires String
    The expiry time of the JavaDownloadToken. An RFC3339 formatted datetime string.
    timeLastUsed String
    The time the JavaDownloadToken was last used for download. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the JavaDownloadToken was updated. An RFC3339 formatted datetime string.
    value String
    Unique JavaDownloadToken value.

    GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemCreatedBy

    DisplayName string
    A filter to return only resources that match the entire display name given.
    Email string
    The email of the principal.
    Id string
    Unique JavaDownloadToken identifier.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Email string
    The email of the principal.
    Id string
    Unique JavaDownloadToken identifier.
    displayName String
    A filter to return only resources that match the entire display name given.
    email String
    The email of the principal.
    id String
    Unique JavaDownloadToken identifier.
    displayName string
    A filter to return only resources that match the entire display name given.
    email string
    The email of the principal.
    id string
    Unique JavaDownloadToken identifier.
    display_name str
    A filter to return only resources that match the entire display name given.
    email str
    The email of the principal.
    id str
    Unique JavaDownloadToken identifier.
    displayName String
    A filter to return only resources that match the entire display name given.
    email String
    The email of the principal.
    id String
    Unique JavaDownloadToken identifier.

    GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemLastUpdatedBy

    DisplayName string
    A filter to return only resources that match the entire display name given.
    Email string
    The email of the principal.
    Id string
    Unique JavaDownloadToken identifier.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Email string
    The email of the principal.
    Id string
    Unique JavaDownloadToken identifier.
    displayName String
    A filter to return only resources that match the entire display name given.
    email String
    The email of the principal.
    id String
    Unique JavaDownloadToken identifier.
    displayName string
    A filter to return only resources that match the entire display name given.
    email string
    The email of the principal.
    id string
    Unique JavaDownloadToken identifier.
    display_name str
    A filter to return only resources that match the entire display name given.
    email str
    The email of the principal.
    id str
    Unique JavaDownloadToken identifier.
    displayName String
    A filter to return only resources that match the entire display name given.
    email String
    The email of the principal.
    id String
    Unique JavaDownloadToken identifier.

    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 v1.34.0 published on Friday, May 3, 2024 by Pulumi