1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Jms
  5. getJavaDownloadsJavaLicenseAcceptanceRecords
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.Jms.getJavaDownloadsJavaLicenseAcceptanceRecords

Explore with Pulumi AI

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

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/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
	})
}
Copy
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,
    });

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

    }
}
Copy
variables:
  testJavaLicenseAcceptanceRecords:
    fn::invoke:
      function: oci:Jms:getJavaDownloadsJavaLicenseAcceptanceRecords
      arguments:
        compartmentId: ${tenancyOcid}
        id: ${javaLicenseAcceptanceRecordId}
        licenseType: ${javaLicenseAcceptanceRecordLicenseType}
        searchByUser: ${javaLicenseAcceptanceRecordSearchByUser}
        status: ${javaLicenseAcceptanceRecordStatus}
Copy

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>
Copy
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]
Copy
func GetJavaDownloadsJavaLicenseAcceptanceRecords(ctx *Context, args *GetJavaDownloadsJavaLicenseAcceptanceRecordsArgs, opts ...InvokeOption) (*GetJavaDownloadsJavaLicenseAcceptanceRecordsResult, error)
func GetJavaDownloadsJavaLicenseAcceptanceRecordsOutput(ctx *Context, args *GetJavaDownloadsJavaLicenseAcceptanceRecordsOutputArgs, opts ...InvokeOption) GetJavaDownloadsJavaLicenseAcceptanceRecordsResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetJavaDownloadsJavaLicenseAcceptanceRecordsResult> getJavaDownloadsJavaLicenseAcceptanceRecords(GetJavaDownloadsJavaLicenseAcceptanceRecordsArgs args, InvokeOptions options)
public static Output<GetJavaDownloadsJavaLicenseAcceptanceRecordsResult> getJavaDownloadsJavaLicenseAcceptanceRecords(GetJavaDownloadsJavaLicenseAcceptanceRecordsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Jms/getJavaDownloadsJavaLicenseAcceptanceRecords:getJavaDownloadsJavaLicenseAcceptanceRecords
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The OCID of the tenancy.
Filters Changes to this property will trigger replacement. 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 a response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
Status string
The status of license acceptance.
CompartmentId This property is required. string
The OCID of the tenancy.
Filters Changes to this property will trigger replacement. []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 a response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
Status string
The status of license acceptance.
compartmentId This property is required. String
The OCID of the tenancy.
filters Changes to this property will trigger replacement. 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 a response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
status String
The status of license acceptance.
compartmentId This property is required. string
The OCID of the tenancy.
filters Changes to this property will trigger replacement. 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 a response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
status string
The status of license acceptance.
compartment_id This property is required. str
The OCID of the tenancy.
filters Changes to this property will trigger replacement. 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 a response datatype for the createdBy and lastUpdatedBy fields in applicable resource.
status str
The status of license acceptance.
compartmentId This property is required. String
The OCID of the tenancy.
filters Changes to this property will trigger replacement. 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 a 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 This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollection

items This property is required. List<Property Map>

GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItem

CompartmentId This property is required. string
The OCID of the tenancy.
CreatedBies This property is required. List<GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy>
An authorized principal.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
FreeformTags This property is required. Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
Id This property is required. string
Unique Java license acceptance record identifier.
LastUpdatedBies This property is required. List<GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy>
An authorized principal.
LicenseAcceptanceStatus This property is required. string
Status of license acceptance.
LicenseType This property is required. string
Unique Java license type.
State This property is required. string
The current state of the JavaLicenseAcceptanceRecord.
SystemTags This property is required. Dictionary<string, string>
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 This property is required. string
The date and time of license acceptance (formatted according to RFC3339).
TimeLastUpdated This property is required. string
The date and time of last update (formatted according to RFC3339).
CompartmentId This property is required. string
The OCID of the tenancy.
CreatedBies This property is required. []GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy
An authorized principal.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
FreeformTags This property is required. map[string]string
Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
Id This property is required. string
Unique Java license acceptance record identifier.
LastUpdatedBies This property is required. []GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy
An authorized principal.
LicenseAcceptanceStatus This property is required. string
Status of license acceptance.
LicenseType This property is required. string
Unique Java license type.
State This property is required. string
The current state of the JavaLicenseAcceptanceRecord.
SystemTags This property is required. map[string]string
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 This property is required. string
The date and time of license acceptance (formatted according to RFC3339).
TimeLastUpdated This property is required. string
The date and time of last update (formatted according to RFC3339).
compartmentId This property is required. String
The OCID of the tenancy.
createdBies This property is required. List<GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy>
An authorized principal.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
freeformTags This property is required. Map<String,String>
Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
id This property is required. String
Unique Java license acceptance record identifier.
lastUpdatedBies This property is required. List<GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy>
An authorized principal.
licenseAcceptanceStatus This property is required. String
Status of license acceptance.
licenseType This property is required. String
Unique Java license type.
state This property is required. String
The current state of the JavaLicenseAcceptanceRecord.
systemTags This property is required. Map<String,String>
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 This property is required. String
The date and time of license acceptance (formatted according to RFC3339).
timeLastUpdated This property is required. String
The date and time of last update (formatted according to RFC3339).
compartmentId This property is required. string
The OCID of the tenancy.
createdBies This property is required. GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy[]
An authorized principal.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
freeformTags This property is required. {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
id This property is required. string
Unique Java license acceptance record identifier.
lastUpdatedBies This property is required. GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy[]
An authorized principal.
licenseAcceptanceStatus This property is required. string
Status of license acceptance.
licenseType This property is required. string
Unique Java license type.
state This property is required. string
The current state of the JavaLicenseAcceptanceRecord.
systemTags This property is required. {[key: string]: string}
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 This property is required. string
The date and time of license acceptance (formatted according to RFC3339).
timeLastUpdated This property is required. string
The date and time of last update (formatted according to RFC3339).
compartment_id This property is required. str
The OCID of the tenancy.
created_bies This property is required. Sequence[jms.GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy]
An authorized principal.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
freeform_tags This property is required. Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
id This property is required. str
Unique Java license acceptance record identifier.
last_updated_bies This property is required. Sequence[jms.GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy]
An authorized principal.
license_acceptance_status This property is required. str
Status of license acceptance.
license_type This property is required. str
Unique Java license type.
state This property is required. str
The current state of the JavaLicenseAcceptanceRecord.
system_tags This property is required. Mapping[str, str]
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 This property is required. str
The date and time of license acceptance (formatted according to RFC3339).
time_last_updated This property is required. str
The date and time of last update (formatted according to RFC3339).
compartmentId This property is required. String
The OCID of the tenancy.
createdBies This property is required. List<Property Map>
An authorized principal.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. (See Understanding Free-form Tags).
freeformTags This property is required. Map<String>
Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}. (See Managing Tags and Tag Namespaces.)
id This property is required. String
Unique Java license acceptance record identifier.
lastUpdatedBies This property is required. List<Property Map>
An authorized principal.
licenseAcceptanceStatus This property is required. String
Status of license acceptance.
licenseType This property is required. String
Unique Java license type.
state This property is required. String
The current state of the JavaLicenseAcceptanceRecord.
systemTags This property is required. Map<String>
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 This property is required. String
The date and time of license acceptance (formatted according to RFC3339).
timeLastUpdated This property is required. String
The date and time of last update (formatted according to RFC3339).

GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemCreatedBy

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

GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCollectionItemLastUpdatedBy

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