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

oci.Jms.getJavaDownloadsJavaLicenseAcceptanceRecords

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 License Acceptance Records in Oracle Cloud Infrastructure Jms Java Downloads service.

    Returns a list of all the Java license acceptance records in a tenancy.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testJavaLicenseAcceptanceRecords = oci.Jms.getJavaDownloadsJavaLicenseAcceptanceRecords({
        compartmentId: tenancyOcid,
        id: javaLicenseAcceptanceRecordId,
        licenseType: javaLicenseAcceptanceRecordLicenseType,
        searchByUser: javaLicenseAcceptanceRecordSearchByUser,
        status: javaLicenseAcceptanceRecordStatus,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_java_license_acceptance_records = oci.Jms.get_java_downloads_java_license_acceptance_records(compartment_id=tenancy_ocid,
        id=java_license_acceptance_record_id,
        license_type=java_license_acceptance_record_license_type,
        search_by_user=java_license_acceptance_record_search_by_user,
        status=java_license_acceptance_record_status)
    
    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.GetJavaDownloadsJavaLicenseAcceptanceRecords(ctx, &jms.GetJavaDownloadsJavaLicenseAcceptanceRecordsArgs{
    			CompartmentId: tenancyOcid,
    			Id:            pulumi.StringRef(javaLicenseAcceptanceRecordId),
    			LicenseType:   pulumi.StringRef(javaLicenseAcceptanceRecordLicenseType),
    			SearchByUser:  pulumi.StringRef(javaLicenseAcceptanceRecordSearchByUser),
    			Status:        pulumi.StringRef(javaLicenseAcceptanceRecordStatus),
    		}, 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 testJavaLicenseAcceptanceRecords = Oci.Jms.GetJavaDownloadsJavaLicenseAcceptanceRecords.Invoke(new()
        {
            CompartmentId = tenancyOcid,
            Id = javaLicenseAcceptanceRecordId,
            LicenseType = javaLicenseAcceptanceRecordLicenseType,
            SearchByUser = javaLicenseAcceptanceRecordSearchByUser,
            Status = javaLicenseAcceptanceRecordStatus,
        });
    
    });
    
    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.GetJavaDownloadsJavaLicenseAcceptanceRecordsArgs;
    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 testJavaLicenseAcceptanceRecords = JmsFunctions.getJavaDownloadsJavaLicenseAcceptanceRecords(GetJavaDownloadsJavaLicenseAcceptanceRecordsArgs.builder()
                .compartmentId(tenancyOcid)
                .id(javaLicenseAcceptanceRecordId)
                .licenseType(javaLicenseAcceptanceRecordLicenseType)
                .searchByUser(javaLicenseAcceptanceRecordSearchByUser)
                .status(javaLicenseAcceptanceRecordStatus)
                .build());
    
        }
    }
    
    variables:
      testJavaLicenseAcceptanceRecords:
        fn::invoke:
          Function: oci:Jms:getJavaDownloadsJavaLicenseAcceptanceRecords
          Arguments:
            compartmentId: ${tenancyOcid}
            id: ${javaLicenseAcceptanceRecordId}
            licenseType: ${javaLicenseAcceptanceRecordLicenseType}
            searchByUser: ${javaLicenseAcceptanceRecordSearchByUser}
            status: ${javaLicenseAcceptanceRecordStatus}
    

    Using getJavaDownloadsJavaLicenseAcceptanceRecords

    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 getJavaDownloadsJavaLicenseAcceptanceRecords(args: GetJavaDownloadsJavaLicenseAcceptanceRecordsArgs, opts?: InvokeOptions): Promise<GetJavaDownloadsJavaLicenseAcceptanceRecordsResult>
    function getJavaDownloadsJavaLicenseAcceptanceRecordsOutput(args: GetJavaDownloadsJavaLicenseAcceptanceRecordsOutputArgs, opts?: InvokeOptions): Output<GetJavaDownloadsJavaLicenseAcceptanceRecordsResult>
    def get_java_downloads_java_license_acceptance_records(compartment_id: Optional[str] = None,
                                                           filters: Optional[Sequence[_jms.GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter]] = None,
                                                           id: Optional[str] = None,
                                                           license_type: Optional[str] = None,
                                                           search_by_user: Optional[str] = None,
                                                           status: Optional[str] = None,
                                                           opts: Optional[InvokeOptions] = None) -> GetJavaDownloadsJavaLicenseAcceptanceRecordsResult
    def get_java_downloads_java_license_acceptance_records_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[_jms.GetJavaDownloadsJavaLicenseAcceptanceRecordsFilterArgs]]]] = None,
                                                           id: Optional[pulumi.Input[str]] = None,
                                                           license_type: Optional[pulumi.Input[str]] = None,
                                                           search_by_user: Optional[pulumi.Input[str]] = None,
                                                           status: Optional[pulumi.Input[str]] = None,
                                                           opts: Optional[InvokeOptions] = None) -> Output[GetJavaDownloadsJavaLicenseAcceptanceRecordsResult]
    func GetJavaDownloadsJavaLicenseAcceptanceRecords(ctx *Context, args *GetJavaDownloadsJavaLicenseAcceptanceRecordsArgs, opts ...InvokeOption) (*GetJavaDownloadsJavaLicenseAcceptanceRecordsResult, error)
    func GetJavaDownloadsJavaLicenseAcceptanceRecordsOutput(ctx *Context, args *GetJavaDownloadsJavaLicenseAcceptanceRecordsOutputArgs, opts ...InvokeOption) GetJavaDownloadsJavaLicenseAcceptanceRecordsResultOutput

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

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

    The following arguments are supported:

    CompartmentId string
    The OCID of the tenancy.
    Filters List<GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter>
    Id string
    Unique Java license acceptance record identifier.
    LicenseType string
    Unique Java license type.
    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.
    Status string
    The status of license acceptance.
    CompartmentId string
    The OCID of the tenancy.
    Filters []GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter
    Id string
    Unique Java license acceptance record identifier.
    LicenseType string
    Unique Java license type.
    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.
    Status string
    The status of license acceptance.
    compartmentId String
    The OCID of the tenancy.
    filters List<GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter>
    id String
    Unique Java license acceptance record identifier.
    licenseType String
    Unique Java license type.
    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.
    status String
    The status of license acceptance.
    compartmentId string
    The OCID of the tenancy.
    filters GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter[]
    id string
    Unique Java license acceptance record identifier.
    licenseType string
    Unique Java license type.
    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.
    status string
    The status of license acceptance.
    compartment_id str
    The OCID of the tenancy.
    filters Sequence[jms.GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter]
    id str
    Unique Java license acceptance record identifier.
    license_type str
    Unique Java license type.
    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.
    status str
    The status of license acceptance.
    compartmentId String
    The OCID of the tenancy.
    filters List<Property Map>
    id String
    Unique Java license acceptance record identifier.
    licenseType String
    Unique Java license type.
    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.
    status String
    The status of license acceptance.

    getJavaDownloadsJavaLicenseAcceptanceRecords Result

    The following output properties are available:

    CompartmentId string
    The tenancy OCID of the user accepting the license.
    JavaLicenseAcceptanceRecordCollections List<GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollection>
    The list of java_license_acceptance_record_collection.
    Filters List<GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter>
    Id string
    The OCID of the principal.
    LicenseType string
    License type associated with the acceptance.
    SearchByUser string
    Status string
    CompartmentId string
    The tenancy OCID of the user accepting the license.
    JavaLicenseAcceptanceRecordCollections []GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollection
    The list of java_license_acceptance_record_collection.
    Filters []GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter
    Id string
    The OCID of the principal.
    LicenseType string
    License type associated with the acceptance.
    SearchByUser string
    Status string
    compartmentId String
    The tenancy OCID of the user accepting the license.
    javaLicenseAcceptanceRecordCollections List<GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollection>
    The list of java_license_acceptance_record_collection.
    filters List<GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter>
    id String
    The OCID of the principal.
    licenseType String
    License type associated with the acceptance.
    searchByUser String
    status String
    compartmentId string
    The tenancy OCID of the user accepting the license.
    javaLicenseAcceptanceRecordCollections GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollection[]
    The list of java_license_acceptance_record_collection.
    filters GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter[]
    id string
    The OCID of the principal.
    licenseType string
    License type associated with the acceptance.
    searchByUser string
    status string
    compartment_id str
    The tenancy OCID of the user accepting the license.
    java_license_acceptance_record_collections Sequence[jms.GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollection]
    The list of java_license_acceptance_record_collection.
    filters Sequence[jms.GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter]
    id str
    The OCID of the principal.
    license_type str
    License type associated with the acceptance.
    search_by_user str
    status str
    compartmentId String
    The tenancy OCID of the user accepting the license.
    javaLicenseAcceptanceRecordCollections List<Property Map>
    The list of java_license_acceptance_record_collection.
    filters List<Property Map>
    id String
    The OCID of the principal.
    licenseType String
    License type associated with the acceptance.
    searchByUser String
    status String

    Supporting Types

    GetJavaDownloadsJavaLicenseAcceptanceRecordsFilter

    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

    GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollection

    GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItem

    CompartmentId string
    The OCID of the tenancy.
    CreatedBies List<GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy>
    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).
    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 Java license acceptance record identifier.
    LastUpdatedBies List<GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy>
    An authorized principal.
    LicenseAcceptanceStatus string
    Status of license acceptance.
    LicenseType string
    Unique Java license type.
    State string
    The current state of the JavaLicenseAcceptanceRecord.
    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"}
    TimeAccepted string
    The date and time of license acceptance(formatted according to RFC3339).
    TimeLastUpdated string
    The date and time of last update(formatted according to RFC3339).
    CompartmentId string
    The OCID of the tenancy.
    CreatedBies []GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy
    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).
    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 Java license acceptance record identifier.
    LastUpdatedBies []GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy
    An authorized principal.
    LicenseAcceptanceStatus string
    Status of license acceptance.
    LicenseType string
    Unique Java license type.
    State string
    The current state of the JavaLicenseAcceptanceRecord.
    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"}
    TimeAccepted string
    The date and time of license acceptance(formatted according to RFC3339).
    TimeLastUpdated string
    The date and time of last update(formatted according to RFC3339).
    compartmentId String
    The OCID of the tenancy.
    createdBies List<GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy>
    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).
    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 Java license acceptance record identifier.
    lastUpdatedBies List<GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy>
    An authorized principal.
    licenseAcceptanceStatus String
    Status of license acceptance.
    licenseType String
    Unique Java license type.
    state String
    The current state of the JavaLicenseAcceptanceRecord.
    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"}
    timeAccepted String
    The date and time of license acceptance(formatted according to RFC3339).
    timeLastUpdated String
    The date and time of last update(formatted according to RFC3339).
    compartmentId string
    The OCID of the tenancy.
    createdBies GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy[]
    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).
    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 Java license acceptance record identifier.
    lastUpdatedBies GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy[]
    An authorized principal.
    licenseAcceptanceStatus string
    Status of license acceptance.
    licenseType string
    Unique Java license type.
    state string
    The current state of the JavaLicenseAcceptanceRecord.
    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"}
    timeAccepted string
    The date and time of license acceptance(formatted according to RFC3339).
    timeLastUpdated string
    The date and time of last update(formatted according to RFC3339).
    compartment_id str
    The OCID of the tenancy.
    created_bies Sequence[jms.GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy]
    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).
    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 Java license acceptance record identifier.
    last_updated_bies Sequence[jms.GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy]
    An authorized principal.
    license_acceptance_status str
    Status of license acceptance.
    license_type str
    Unique Java license type.
    state str
    The current state of the JavaLicenseAcceptanceRecord.
    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_accepted str
    The date and time of license acceptance(formatted according to RFC3339).
    time_last_updated str
    The date and time of last update(formatted according to RFC3339).
    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).
    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 Java license acceptance record identifier.
    lastUpdatedBies List<Property Map>
    An authorized principal.
    licenseAcceptanceStatus String
    Status of license acceptance.
    licenseType String
    Unique Java license type.
    state String
    The current state of the JavaLicenseAcceptanceRecord.
    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"}
    timeAccepted String
    The date and time of license acceptance(formatted according to RFC3339).
    timeLastUpdated String
    The date and time of last update(formatted according to RFC3339).

    GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy

    DisplayName string
    The name of the principal.
    Email string
    The email of the principal.
    Id string
    Unique Java license acceptance record identifier.
    DisplayName string
    The name of the principal.
    Email string
    The email of the principal.
    Id string
    Unique Java license acceptance record identifier.
    displayName String
    The name of the principal.
    email String
    The email of the principal.
    id String
    Unique Java license acceptance record identifier.
    displayName string
    The name of the principal.
    email string
    The email of the principal.
    id string
    Unique Java license acceptance record identifier.
    display_name str
    The name of the principal.
    email str
    The email of the principal.
    id str
    Unique Java license acceptance record identifier.
    displayName String
    The name of the principal.
    email String
    The email of the principal.
    id String
    Unique Java license acceptance record identifier.

    GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy

    DisplayName string
    The name of the principal.
    Email string
    The email of the principal.
    Id string
    Unique Java license acceptance record identifier.
    DisplayName string
    The name of the principal.
    Email string
    The email of the principal.
    Id string
    Unique Java license acceptance record identifier.
    displayName String
    The name of the principal.
    email String
    The email of the principal.
    id String
    Unique Java license acceptance record identifier.
    displayName string
    The name of the principal.
    email string
    The email of the principal.
    id string
    Unique Java license acceptance record identifier.
    display_name str
    The name of the principal.
    email str
    The email of the principal.
    id str
    Unique Java license acceptance record identifier.
    displayName String
    The name of the principal.
    email String
    The email of the principal.
    id String
    Unique Java license acceptance record 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