oci.Jms.JavaDownloadsJavaLicenseAcceptanceRecord
Explore with Pulumi AI
This resource provides the Java License Acceptance Record resource in Oracle Cloud Infrastructure Jms Java Downloads service.
Creates a Java license acceptance record for the specified license type in a tenancy.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testJavaLicenseAcceptanceRecord = new oci.jms.JavaDownloadsJavaLicenseAcceptanceRecord("test_java_license_acceptance_record", {
    compartmentId: tenancyOcid,
    licenseAcceptanceStatus: javaLicenseAcceptanceRecordLicenseAcceptanceStatus,
    licenseType: javaLicenseAcceptanceRecordLicenseType,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
});
import pulumi
import pulumi_oci as oci
test_java_license_acceptance_record = oci.jms.JavaDownloadsJavaLicenseAcceptanceRecord("test_java_license_acceptance_record",
    compartment_id=tenancy_ocid,
    license_acceptance_status=java_license_acceptance_record_license_acceptance_status,
    license_type=java_license_acceptance_record_license_type,
    defined_tags={
        "foo-namespace.bar-key": "value",
    })
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.NewJavaDownloadsJavaLicenseAcceptanceRecord(ctx, "test_java_license_acceptance_record", &jms.JavaDownloadsJavaLicenseAcceptanceRecordArgs{
			CompartmentId:           pulumi.Any(tenancyOcid),
			LicenseAcceptanceStatus: pulumi.Any(javaLicenseAcceptanceRecordLicenseAcceptanceStatus),
			LicenseType:             pulumi.Any(javaLicenseAcceptanceRecordLicenseType),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
		})
		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 testJavaLicenseAcceptanceRecord = new Oci.Jms.JavaDownloadsJavaLicenseAcceptanceRecord("test_java_license_acceptance_record", new()
    {
        CompartmentId = tenancyOcid,
        LicenseAcceptanceStatus = javaLicenseAcceptanceRecordLicenseAcceptanceStatus,
        LicenseType = javaLicenseAcceptanceRecordLicenseType,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Jms.JavaDownloadsJavaLicenseAcceptanceRecord;
import com.pulumi.oci.Jms.JavaDownloadsJavaLicenseAcceptanceRecordArgs;
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) {
        var testJavaLicenseAcceptanceRecord = new JavaDownloadsJavaLicenseAcceptanceRecord("testJavaLicenseAcceptanceRecord", JavaDownloadsJavaLicenseAcceptanceRecordArgs.builder()
            .compartmentId(tenancyOcid)
            .licenseAcceptanceStatus(javaLicenseAcceptanceRecordLicenseAcceptanceStatus)
            .licenseType(javaLicenseAcceptanceRecordLicenseType)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .build());
    }
}
resources:
  testJavaLicenseAcceptanceRecord:
    type: oci:Jms:JavaDownloadsJavaLicenseAcceptanceRecord
    name: test_java_license_acceptance_record
    properties:
      compartmentId: ${tenancyOcid}
      licenseAcceptanceStatus: ${javaLicenseAcceptanceRecordLicenseAcceptanceStatus}
      licenseType: ${javaLicenseAcceptanceRecordLicenseType}
      definedTags:
        foo-namespace.bar-key: value
Create JavaDownloadsJavaLicenseAcceptanceRecord Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new JavaDownloadsJavaLicenseAcceptanceRecord(name: string, args: JavaDownloadsJavaLicenseAcceptanceRecordArgs, opts?: CustomResourceOptions);@overload
def JavaDownloadsJavaLicenseAcceptanceRecord(resource_name: str,
                                             args: JavaDownloadsJavaLicenseAcceptanceRecordArgs,
                                             opts: Optional[ResourceOptions] = None)
@overload
def JavaDownloadsJavaLicenseAcceptanceRecord(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             compartment_id: Optional[str] = None,
                                             license_acceptance_status: Optional[str] = None,
                                             license_type: Optional[str] = None,
                                             defined_tags: Optional[Mapping[str, str]] = None)func NewJavaDownloadsJavaLicenseAcceptanceRecord(ctx *Context, name string, args JavaDownloadsJavaLicenseAcceptanceRecordArgs, opts ...ResourceOption) (*JavaDownloadsJavaLicenseAcceptanceRecord, error)public JavaDownloadsJavaLicenseAcceptanceRecord(string name, JavaDownloadsJavaLicenseAcceptanceRecordArgs args, CustomResourceOptions? opts = null)
public JavaDownloadsJavaLicenseAcceptanceRecord(String name, JavaDownloadsJavaLicenseAcceptanceRecordArgs args)
public JavaDownloadsJavaLicenseAcceptanceRecord(String name, JavaDownloadsJavaLicenseAcceptanceRecordArgs args, CustomResourceOptions options)
type: oci:Jms:JavaDownloadsJavaLicenseAcceptanceRecord
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args JavaDownloadsJavaLicenseAcceptanceRecordArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args JavaDownloadsJavaLicenseAcceptanceRecordArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args JavaDownloadsJavaLicenseAcceptanceRecordArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args JavaDownloadsJavaLicenseAcceptanceRecordArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args JavaDownloadsJavaLicenseAcceptanceRecordArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var javaDownloadsJavaLicenseAcceptanceRecordResource = new Oci.Jms.JavaDownloadsJavaLicenseAcceptanceRecord("javaDownloadsJavaLicenseAcceptanceRecordResource", new()
{
    CompartmentId = "string",
    LicenseAcceptanceStatus = "string",
    LicenseType = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
});
example, err := jms.NewJavaDownloadsJavaLicenseAcceptanceRecord(ctx, "javaDownloadsJavaLicenseAcceptanceRecordResource", &jms.JavaDownloadsJavaLicenseAcceptanceRecordArgs{
	CompartmentId:           pulumi.String("string"),
	LicenseAcceptanceStatus: pulumi.String("string"),
	LicenseType:             pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var javaDownloadsJavaLicenseAcceptanceRecordResource = new JavaDownloadsJavaLicenseAcceptanceRecord("javaDownloadsJavaLicenseAcceptanceRecordResource", JavaDownloadsJavaLicenseAcceptanceRecordArgs.builder()
    .compartmentId("string")
    .licenseAcceptanceStatus("string")
    .licenseType("string")
    .definedTags(Map.of("string", "string"))
    .build());
java_downloads_java_license_acceptance_record_resource = oci.jms.JavaDownloadsJavaLicenseAcceptanceRecord("javaDownloadsJavaLicenseAcceptanceRecordResource",
    compartment_id="string",
    license_acceptance_status="string",
    license_type="string",
    defined_tags={
        "string": "string",
    })
const javaDownloadsJavaLicenseAcceptanceRecordResource = new oci.jms.JavaDownloadsJavaLicenseAcceptanceRecord("javaDownloadsJavaLicenseAcceptanceRecordResource", {
    compartmentId: "string",
    licenseAcceptanceStatus: "string",
    licenseType: "string",
    definedTags: {
        string: "string",
    },
});
type: oci:Jms:JavaDownloadsJavaLicenseAcceptanceRecord
properties:
    compartmentId: string
    definedTags:
        string: string
    licenseAcceptanceStatus: string
    licenseType: string
JavaDownloadsJavaLicenseAcceptanceRecord Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The JavaDownloadsJavaLicenseAcceptanceRecord resource accepts the following input properties:
- CompartmentId string
- The tenancy OCID of the user accepting the license.
- LicenseAcceptance stringStatus 
- (Updatable) Status of license acceptance.
- LicenseType string
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Dictionary<string, string>
- (Updatable) 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).
- CompartmentId string
- The tenancy OCID of the user accepting the license.
- LicenseAcceptance stringStatus 
- (Updatable) Status of license acceptance.
- LicenseType string
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- map[string]string
- (Updatable) 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).
- compartmentId String
- The tenancy OCID of the user accepting the license.
- licenseAcceptance StringStatus 
- (Updatable) Status of license acceptance.
- licenseType String
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Map<String,String>
- (Updatable) 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).
- compartmentId string
- The tenancy OCID of the user accepting the license.
- licenseAcceptance stringStatus 
- (Updatable) Status of license acceptance.
- licenseType string
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- {[key: string]: string}
- (Updatable) 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).
- compartment_id str
- The tenancy OCID of the user accepting the license.
- license_acceptance_ strstatus 
- (Updatable) Status of license acceptance.
- license_type str
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Mapping[str, str]
- (Updatable) 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).
- compartmentId String
- The tenancy OCID of the user accepting the license.
- licenseAcceptance StringStatus 
- (Updatable) Status of license acceptance.
- licenseType String
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Map<String>
- (Updatable) 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).
Outputs
All input properties are implicitly available as output properties. Additionally, the JavaDownloadsJavaLicenseAcceptanceRecord resource produces the following output properties:
- CreatedBies List<JavaDownloads Java License Acceptance Record Created By> 
- An authorized principal.
- 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 string
- The provider-assigned unique ID for this managed resource.
- LastUpdated List<JavaBies Downloads Java License Acceptance Record Last Updated By> 
- An authorized principal.
- State string
- The current state of the JavaLicenseAcceptanceRecord.
- 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 string
- The date and time of license acceptance (formatted according to RFC3339).
- TimeLast stringUpdated 
- The date and time of last update (formatted according to RFC3339).
- CreatedBies []JavaDownloads Java License Acceptance Record Created By 
- An authorized principal.
- 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 string
- The provider-assigned unique ID for this managed resource.
- LastUpdated []JavaBies Downloads Java License Acceptance Record Last Updated By 
- An authorized principal.
- State string
- The current state of the JavaLicenseAcceptanceRecord.
- 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 string
- The date and time of license acceptance (formatted according to RFC3339).
- TimeLast stringUpdated 
- The date and time of last update (formatted according to RFC3339).
- createdBies List<JavaDownloads Java License Acceptance Record Created By> 
- An authorized principal.
- 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 String
- The provider-assigned unique ID for this managed resource.
- lastUpdated List<JavaBies Downloads Java License Acceptance Record Last Updated By> 
- An authorized principal.
- state String
- The current state of the JavaLicenseAcceptanceRecord.
- 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 String
- The date and time of license acceptance (formatted according to RFC3339).
- timeLast StringUpdated 
- The date and time of last update (formatted according to RFC3339).
- createdBies JavaDownloads Java License Acceptance Record Created By[] 
- An authorized principal.
- {[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 string
- The provider-assigned unique ID for this managed resource.
- lastUpdated JavaBies Downloads Java License Acceptance Record Last Updated By[] 
- An authorized principal.
- state string
- The current state of the JavaLicenseAcceptanceRecord.
- {[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 string
- The date and time of license acceptance (formatted according to RFC3339).
- timeLast stringUpdated 
- The date and time of last update (formatted according to RFC3339).
- created_bies Sequence[JavaDownloads Java License Acceptance Record Created By] 
- An authorized principal.
- 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 str
- The provider-assigned unique ID for this managed resource.
- last_updated_ Sequence[Javabies Downloads Java License Acceptance Record Last Updated By] 
- An authorized principal.
- state str
- The current state of the JavaLicenseAcceptanceRecord.
- 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 str
- The date and time of license acceptance (formatted according to RFC3339).
- time_last_ strupdated 
- The date and time of last update (formatted according to RFC3339).
- createdBies List<Property Map>
- An authorized principal.
- 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 String
- The provider-assigned unique ID for this managed resource.
- lastUpdated List<Property Map>Bies 
- An authorized principal.
- state String
- The current state of the JavaLicenseAcceptanceRecord.
- 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 String
- The date and time of license acceptance (formatted according to RFC3339).
- timeLast StringUpdated 
- The date and time of last update (formatted according to RFC3339).
Look up Existing JavaDownloadsJavaLicenseAcceptanceRecord Resource
Get an existing JavaDownloadsJavaLicenseAcceptanceRecord resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: JavaDownloadsJavaLicenseAcceptanceRecordState, opts?: CustomResourceOptions): JavaDownloadsJavaLicenseAcceptanceRecord@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        created_bies: Optional[Sequence[JavaDownloadsJavaLicenseAcceptanceRecordCreatedByArgs]] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        last_updated_bies: Optional[Sequence[JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs]] = None,
        license_acceptance_status: Optional[str] = None,
        license_type: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_accepted: Optional[str] = None,
        time_last_updated: Optional[str] = None) -> JavaDownloadsJavaLicenseAcceptanceRecordfunc GetJavaDownloadsJavaLicenseAcceptanceRecord(ctx *Context, name string, id IDInput, state *JavaDownloadsJavaLicenseAcceptanceRecordState, opts ...ResourceOption) (*JavaDownloadsJavaLicenseAcceptanceRecord, error)public static JavaDownloadsJavaLicenseAcceptanceRecord Get(string name, Input<string> id, JavaDownloadsJavaLicenseAcceptanceRecordState? state, CustomResourceOptions? opts = null)public static JavaDownloadsJavaLicenseAcceptanceRecord get(String name, Output<String> id, JavaDownloadsJavaLicenseAcceptanceRecordState state, CustomResourceOptions options)resources:  _:    type: oci:Jms:JavaDownloadsJavaLicenseAcceptanceRecord    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CompartmentId string
- The tenancy OCID of the user accepting the license.
- CreatedBies List<JavaDownloads Java License Acceptance Record Created By> 
- An authorized principal.
- Dictionary<string, string>
- (Updatable) 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).
- 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.)
- LastUpdated List<JavaBies Downloads Java License Acceptance Record Last Updated By> 
- An authorized principal.
- LicenseAcceptance stringStatus 
- (Updatable) Status of license acceptance.
- LicenseType string
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- State string
- The current state of the JavaLicenseAcceptanceRecord.
- 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 string
- The date and time of license acceptance (formatted according to RFC3339).
- TimeLast stringUpdated 
- The date and time of last update (formatted according to RFC3339).
- CompartmentId string
- The tenancy OCID of the user accepting the license.
- CreatedBies []JavaDownloads Java License Acceptance Record Created By Args 
- An authorized principal.
- map[string]string
- (Updatable) 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).
- 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.)
- LastUpdated []JavaBies Downloads Java License Acceptance Record Last Updated By Args 
- An authorized principal.
- LicenseAcceptance stringStatus 
- (Updatable) Status of license acceptance.
- LicenseType string
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- State string
- The current state of the JavaLicenseAcceptanceRecord.
- 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 string
- The date and time of license acceptance (formatted according to RFC3339).
- TimeLast stringUpdated 
- The date and time of last update (formatted according to RFC3339).
- compartmentId String
- The tenancy OCID of the user accepting the license.
- createdBies List<JavaDownloads Java License Acceptance Record Created By> 
- An authorized principal.
- Map<String,String>
- (Updatable) 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).
- 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.)
- lastUpdated List<JavaBies Downloads Java License Acceptance Record Last Updated By> 
- An authorized principal.
- licenseAcceptance StringStatus 
- (Updatable) Status of license acceptance.
- licenseType String
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state String
- The current state of the JavaLicenseAcceptanceRecord.
- 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 String
- The date and time of license acceptance (formatted according to RFC3339).
- timeLast StringUpdated 
- The date and time of last update (formatted according to RFC3339).
- compartmentId string
- The tenancy OCID of the user accepting the license.
- createdBies JavaDownloads Java License Acceptance Record Created By[] 
- An authorized principal.
- {[key: string]: string}
- (Updatable) 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).
- {[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.)
- lastUpdated JavaBies Downloads Java License Acceptance Record Last Updated By[] 
- An authorized principal.
- licenseAcceptance stringStatus 
- (Updatable) Status of license acceptance.
- licenseType string
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state string
- The current state of the JavaLicenseAcceptanceRecord.
- {[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 string
- The date and time of license acceptance (formatted according to RFC3339).
- timeLast stringUpdated 
- The date and time of last update (formatted according to RFC3339).
- compartment_id str
- The tenancy OCID of the user accepting the license.
- created_bies Sequence[JavaDownloads Java License Acceptance Record Created By Args] 
- An authorized principal.
- Mapping[str, str]
- (Updatable) 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).
- 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.)
- last_updated_ Sequence[Javabies Downloads Java License Acceptance Record Last Updated By Args] 
- An authorized principal.
- license_acceptance_ strstatus 
- (Updatable) Status of license acceptance.
- license_type str
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state str
- The current state of the JavaLicenseAcceptanceRecord.
- 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 str
- The date and time of license acceptance (formatted according to RFC3339).
- time_last_ strupdated 
- The date and time of last update (formatted according to RFC3339).
- compartmentId String
- The tenancy OCID of the user accepting the license.
- createdBies List<Property Map>
- An authorized principal.
- Map<String>
- (Updatable) 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).
- 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.)
- lastUpdated List<Property Map>Bies 
- An authorized principal.
- licenseAcceptance StringStatus 
- (Updatable) Status of license acceptance.
- licenseType String
- License type for the Java version. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state String
- The current state of the JavaLicenseAcceptanceRecord.
- 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 String
- The date and time of license acceptance (formatted according to RFC3339).
- timeLast StringUpdated 
- The date and time of last update (formatted according to RFC3339).
Supporting Types
JavaDownloadsJavaLicenseAcceptanceRecordCreatedBy, JavaDownloadsJavaLicenseAcceptanceRecordCreatedByArgs                
- DisplayName string
- The name of the principal.
- Email string
- The email of the principal.
- Id string
- The OCID of the principal.
- DisplayName string
- The name of the principal.
- Email string
- The email of the principal.
- Id string
- The OCID of the principal.
- displayName String
- The name of the principal.
- email String
- The email of the principal.
- id String
- The OCID of the principal.
- displayName string
- The name of the principal.
- email string
- The email of the principal.
- id string
- The OCID of the principal.
- display_name str
- The name of the principal.
- email str
- The email of the principal.
- id str
- The OCID of the principal.
- displayName String
- The name of the principal.
- email String
- The email of the principal.
- id String
- The OCID of the principal.
JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy, JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs                  
- DisplayName string
- The name of the principal.
- Email string
- The email of the principal.
- Id string
- The OCID of the principal.
- DisplayName string
- The name of the principal.
- Email string
- The email of the principal.
- Id string
- The OCID of the principal.
- displayName String
- The name of the principal.
- email String
- The email of the principal.
- id String
- The OCID of the principal.
- displayName string
- The name of the principal.
- email string
- The email of the principal.
- id string
- The OCID of the principal.
- display_name str
- The name of the principal.
- email str
- The email of the principal.
- id str
- The OCID of the principal.
- displayName String
- The name of the principal.
- email String
- The email of the principal.
- id String
- The OCID of the principal.
Import
Import is not supported for this resource.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.