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

oci.Jms.JavaDownloadsJavaLicenseAcceptanceRecord

Explore with Pulumi AI

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

    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,
    });
    
    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)
    
    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.NewJavaDownloadsJavaLicenseAcceptanceRecord(ctx, "test_java_license_acceptance_record", &Jms.JavaDownloadsJavaLicenseAcceptanceRecordArgs{
    			CompartmentId:           pulumi.Any(tenancyOcid),
    			LicenseAcceptanceStatus: pulumi.Any(javaLicenseAcceptanceRecordLicenseAcceptanceStatus),
    			LicenseType:             pulumi.Any(javaLicenseAcceptanceRecordLicenseType),
    		})
    		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,
        });
    
    });
    
    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)
                .build());
    
        }
    }
    
    resources:
      testJavaLicenseAcceptanceRecord:
        type: oci:Jms:JavaDownloadsJavaLicenseAcceptanceRecord
        name: test_java_license_acceptance_record
        properties:
          compartmentId: ${tenancyOcid}
          licenseAcceptanceStatus: ${javaLicenseAcceptanceRecordLicenseAcceptanceStatus}
          licenseType: ${javaLicenseAcceptanceRecordLicenseType}
    

    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)
    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.

    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",
    });
    
    example, err := Jms.NewJavaDownloadsJavaLicenseAcceptanceRecord(ctx, "javaDownloadsJavaLicenseAcceptanceRecordResource", &Jms.JavaDownloadsJavaLicenseAcceptanceRecordArgs{
    	CompartmentId:           pulumi.String("string"),
    	LicenseAcceptanceStatus: pulumi.String("string"),
    	LicenseType:             pulumi.String("string"),
    })
    
    var javaDownloadsJavaLicenseAcceptanceRecordResource = new JavaDownloadsJavaLicenseAcceptanceRecord("javaDownloadsJavaLicenseAcceptanceRecordResource", JavaDownloadsJavaLicenseAcceptanceRecordArgs.builder()        
        .compartmentId("string")
        .licenseAcceptanceStatus("string")
        .licenseType("string")
        .build());
    
    java_downloads_java_license_acceptance_record_resource = oci.jms.JavaDownloadsJavaLicenseAcceptanceRecord("javaDownloadsJavaLicenseAcceptanceRecordResource",
        compartment_id="string",
        license_acceptance_status="string",
        license_type="string")
    
    const javaDownloadsJavaLicenseAcceptanceRecordResource = new oci.jms.JavaDownloadsJavaLicenseAcceptanceRecord("javaDownloadsJavaLicenseAcceptanceRecordResource", {
        compartmentId: "string",
        licenseAcceptanceStatus: "string",
        licenseType: "string",
    });
    
    type: oci:Jms:JavaDownloadsJavaLicenseAcceptanceRecord
    properties:
        compartmentId: 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

    The JavaDownloadsJavaLicenseAcceptanceRecord resource accepts the following input properties:

    CompartmentId string
    The tenancy OCID of the user accepting the license.
    LicenseAcceptanceStatus string
    (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

    CompartmentId string
    The tenancy OCID of the user accepting the license.
    LicenseAcceptanceStatus string
    (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

    compartmentId String
    The tenancy OCID of the user accepting the license.
    licenseAcceptanceStatus String
    (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

    compartmentId string
    The tenancy OCID of the user accepting the license.
    licenseAcceptanceStatus string
    (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

    compartment_id str
    The tenancy OCID of the user accepting the license.
    license_acceptance_status str
    (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

    compartmentId String
    The tenancy OCID of the user accepting the license.
    licenseAcceptanceStatus String
    (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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the JavaDownloadsJavaLicenseAcceptanceRecord resource produces the following output properties:

    CreatedBies List<JavaDownloadsJavaLicenseAcceptanceRecordCreatedBy>
    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
    The provider-assigned unique ID for this managed resource.
    LastUpdatedBies List<JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy>
    An authorized principal.
    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).
    CreatedBies []JavaDownloadsJavaLicenseAcceptanceRecordCreatedBy
    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
    The provider-assigned unique ID for this managed resource.
    LastUpdatedBies []JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy
    An authorized principal.
    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).
    createdBies List<JavaDownloadsJavaLicenseAcceptanceRecordCreatedBy>
    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
    The provider-assigned unique ID for this managed resource.
    lastUpdatedBies List<JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy>
    An authorized principal.
    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).
    createdBies JavaDownloadsJavaLicenseAcceptanceRecordCreatedBy[]
    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
    The provider-assigned unique ID for this managed resource.
    lastUpdatedBies JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy[]
    An authorized principal.
    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).
    created_bies Sequence[jms.JavaDownloadsJavaLicenseAcceptanceRecordCreatedBy]
    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
    The provider-assigned unique ID for this managed resource.
    last_updated_bies Sequence[jms.JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy]
    An authorized principal.
    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).
    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
    The provider-assigned unique ID for this managed resource.
    lastUpdatedBies List<Property Map>
    An authorized principal.
    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).

    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[_jms.JavaDownloadsJavaLicenseAcceptanceRecordCreatedByArgs]] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            last_updated_bies: Optional[Sequence[_jms.JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs]] = None,
            license_acceptance_status: Optional[str] = None,
            license_type: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            time_accepted: Optional[str] = None,
            time_last_updated: Optional[str] = None) -> JavaDownloadsJavaLicenseAcceptanceRecord
    func 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)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    CompartmentId string
    The tenancy OCID of the user accepting the license.
    CreatedBies List<JavaDownloadsJavaLicenseAcceptanceRecordCreatedBy>
    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.)
    LastUpdatedBies List<JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy>
    An authorized principal.
    LicenseAcceptanceStatus string
    (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.
    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 tenancy OCID of the user accepting the license.
    CreatedBies []JavaDownloadsJavaLicenseAcceptanceRecordCreatedByArgs
    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.)
    LastUpdatedBies []JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs
    An authorized principal.
    LicenseAcceptanceStatus string
    (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.
    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 tenancy OCID of the user accepting the license.
    createdBies List<JavaDownloadsJavaLicenseAcceptanceRecordCreatedBy>
    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.)
    lastUpdatedBies List<JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy>
    An authorized principal.
    licenseAcceptanceStatus String
    (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.
    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 tenancy OCID of the user accepting the license.
    createdBies JavaDownloadsJavaLicenseAcceptanceRecordCreatedBy[]
    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.)
    lastUpdatedBies JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy[]
    An authorized principal.
    licenseAcceptanceStatus string
    (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.
    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 tenancy OCID of the user accepting the license.
    created_bies Sequence[jms.JavaDownloadsJavaLicenseAcceptanceRecordCreatedByArgs]
    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.)
    last_updated_bies Sequence[jms.JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs]
    An authorized principal.
    license_acceptance_status str
    (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.
    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 tenancy OCID of the user accepting the license.
    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.)
    lastUpdatedBies List<Property Map>
    An authorized principal.
    licenseAcceptanceStatus String
    (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.
    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).

    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi