pulumi-oci 1.38.0a1717136770__py3-none-any.whl → 1.38.0a1717181239__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +8 -0
- pulumi_oci/bigdataservice/__init__.py +1 -0
- pulumi_oci/bigdataservice/_inputs.py +103 -2
- pulumi_oci/bigdataservice/bds_instance_os_patch_action.py +239 -0
- pulumi_oci/bigdataservice/outputs.py +174 -6
- pulumi_oci/jms/get_java_downloads_java_download_report.py +28 -2
- pulumi_oci/jms/get_java_downloads_java_download_token.py +4 -4
- pulumi_oci/jms/get_java_downloads_java_license_acceptance_record.py +2 -2
- pulumi_oci/jms/java_downloads_java_download_report.py +96 -6
- pulumi_oci/jms/java_downloads_java_download_token.py +14 -12
- pulumi_oci/jms/java_downloads_java_license_acceptance_record.py +41 -16
- pulumi_oci/jms/outputs.py +38 -16
- pulumi_oci/loadbalancer/_inputs.py +4 -0
- pulumi_oci/loadbalancer/outputs.py +4 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.38.0a1717181239.dist-info}/METADATA +1 -1
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.38.0a1717181239.dist-info}/RECORD +19 -18
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.38.0a1717181239.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.38.0a1717181239.dist-info}/top_level.txt +0 -0
@@ -18,12 +18,16 @@ class JavaDownloadsJavaDownloadReportArgs:
|
|
18
18
|
def __init__(__self__, *,
|
19
19
|
compartment_id: pulumi.Input[str],
|
20
20
|
format: pulumi.Input[str],
|
21
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
22
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
21
23
|
time_end: Optional[pulumi.Input[str]] = None,
|
22
24
|
time_start: Optional[pulumi.Input[str]] = None):
|
23
25
|
"""
|
24
26
|
The set of arguments for constructing a JavaDownloadsJavaDownloadReport resource.
|
25
27
|
:param pulumi.Input[str] compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) here should be the tenancy OCID.
|
26
28
|
:param pulumi.Input[str] format: The format of the report that is generated.
|
29
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: 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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
30
|
+
:param pulumi.Input[Mapping[str, Any]] freeform_tags: 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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
27
31
|
:param pulumi.Input[str] time_end: The end time until when the download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
28
32
|
:param pulumi.Input[str] time_start: The start time from when download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
29
33
|
|
@@ -33,6 +37,10 @@ class JavaDownloadsJavaDownloadReportArgs:
|
|
33
37
|
"""
|
34
38
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
39
|
pulumi.set(__self__, "format", format)
|
40
|
+
if defined_tags is not None:
|
41
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
42
|
+
if freeform_tags is not None:
|
43
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
36
44
|
if time_end is not None:
|
37
45
|
pulumi.set(__self__, "time_end", time_end)
|
38
46
|
if time_start is not None:
|
@@ -62,6 +70,30 @@ class JavaDownloadsJavaDownloadReportArgs:
|
|
62
70
|
def format(self, value: pulumi.Input[str]):
|
63
71
|
pulumi.set(self, "format", value)
|
64
72
|
|
73
|
+
@property
|
74
|
+
@pulumi.getter(name="definedTags")
|
75
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
76
|
+
"""
|
77
|
+
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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
78
|
+
"""
|
79
|
+
return pulumi.get(self, "defined_tags")
|
80
|
+
|
81
|
+
@defined_tags.setter
|
82
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
83
|
+
pulumi.set(self, "defined_tags", value)
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="freeformTags")
|
87
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
88
|
+
"""
|
89
|
+
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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "freeform_tags")
|
92
|
+
|
93
|
+
@freeform_tags.setter
|
94
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
95
|
+
pulumi.set(self, "freeform_tags", value)
|
96
|
+
|
65
97
|
@property
|
66
98
|
@pulumi.getter(name="timeEnd")
|
67
99
|
def time_end(self) -> Optional[pulumi.Input[str]]:
|
@@ -103,6 +135,8 @@ class _JavaDownloadsJavaDownloadReportState:
|
|
103
135
|
file_size_in_bytes: Optional[pulumi.Input[str]] = None,
|
104
136
|
format: Optional[pulumi.Input[str]] = None,
|
105
137
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
138
|
+
sort_by: Optional[pulumi.Input[str]] = None,
|
139
|
+
sort_order: Optional[pulumi.Input[str]] = None,
|
106
140
|
state: Optional[pulumi.Input[str]] = None,
|
107
141
|
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
108
142
|
time_created: Optional[pulumi.Input[str]] = None,
|
@@ -121,7 +155,7 @@ class _JavaDownloadsJavaDownloadReportState:
|
|
121
155
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: 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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
122
156
|
:param pulumi.Input[str] state: The current state of the Java download report.
|
123
157
|
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
124
|
-
:param pulumi.Input[str] time_created: The time the Java download report was created
|
158
|
+
:param pulumi.Input[str] time_created: The time the Java download report was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
125
159
|
:param pulumi.Input[str] time_end: The end time until when the download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
126
160
|
:param pulumi.Input[str] time_start: The start time from when download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
127
161
|
|
@@ -147,6 +181,10 @@ class _JavaDownloadsJavaDownloadReportState:
|
|
147
181
|
pulumi.set(__self__, "format", format)
|
148
182
|
if freeform_tags is not None:
|
149
183
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
184
|
+
if sort_by is not None:
|
185
|
+
pulumi.set(__self__, "sort_by", sort_by)
|
186
|
+
if sort_order is not None:
|
187
|
+
pulumi.set(__self__, "sort_order", sort_order)
|
150
188
|
if state is not None:
|
151
189
|
pulumi.set(__self__, "state", state)
|
152
190
|
if system_tags is not None:
|
@@ -266,6 +304,24 @@ class _JavaDownloadsJavaDownloadReportState:
|
|
266
304
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
267
305
|
pulumi.set(self, "freeform_tags", value)
|
268
306
|
|
307
|
+
@property
|
308
|
+
@pulumi.getter(name="sortBy")
|
309
|
+
def sort_by(self) -> Optional[pulumi.Input[str]]:
|
310
|
+
return pulumi.get(self, "sort_by")
|
311
|
+
|
312
|
+
@sort_by.setter
|
313
|
+
def sort_by(self, value: Optional[pulumi.Input[str]]):
|
314
|
+
pulumi.set(self, "sort_by", value)
|
315
|
+
|
316
|
+
@property
|
317
|
+
@pulumi.getter(name="sortOrder")
|
318
|
+
def sort_order(self) -> Optional[pulumi.Input[str]]:
|
319
|
+
return pulumi.get(self, "sort_order")
|
320
|
+
|
321
|
+
@sort_order.setter
|
322
|
+
def sort_order(self, value: Optional[pulumi.Input[str]]):
|
323
|
+
pulumi.set(self, "sort_order", value)
|
324
|
+
|
269
325
|
@property
|
270
326
|
@pulumi.getter
|
271
327
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -294,7 +350,7 @@ class _JavaDownloadsJavaDownloadReportState:
|
|
294
350
|
@pulumi.getter(name="timeCreated")
|
295
351
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
296
352
|
"""
|
297
|
-
The time the Java download report was created
|
353
|
+
The time the Java download report was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
298
354
|
"""
|
299
355
|
return pulumi.get(self, "time_created")
|
300
356
|
|
@@ -337,7 +393,9 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
337
393
|
resource_name: str,
|
338
394
|
opts: Optional[pulumi.ResourceOptions] = None,
|
339
395
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
396
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
340
397
|
format: Optional[pulumi.Input[str]] = None,
|
398
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
341
399
|
time_end: Optional[pulumi.Input[str]] = None,
|
342
400
|
time_start: Optional[pulumi.Input[str]] = None,
|
343
401
|
__props__=None):
|
@@ -356,6 +414,12 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
356
414
|
test_java_download_report = oci.jms.JavaDownloadsJavaDownloadReport("test_java_download_report",
|
357
415
|
compartment_id=tenancy_ocid,
|
358
416
|
format=java_download_report_format,
|
417
|
+
defined_tags={
|
418
|
+
"foo-namespace.bar-key": "value",
|
419
|
+
},
|
420
|
+
freeform_tags={
|
421
|
+
"bar-key": "value",
|
422
|
+
},
|
359
423
|
time_end=java_download_report_time_end,
|
360
424
|
time_start=java_download_report_time_start)
|
361
425
|
```
|
@@ -367,7 +431,9 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
367
431
|
:param str resource_name: The name of the resource.
|
368
432
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
369
433
|
:param pulumi.Input[str] compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) here should be the tenancy OCID.
|
434
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: 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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
370
435
|
:param pulumi.Input[str] format: The format of the report that is generated.
|
436
|
+
:param pulumi.Input[Mapping[str, Any]] freeform_tags: 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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
371
437
|
:param pulumi.Input[str] time_end: The end time until when the download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
372
438
|
:param pulumi.Input[str] time_start: The start time from when download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
373
439
|
|
@@ -396,6 +462,12 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
396
462
|
test_java_download_report = oci.jms.JavaDownloadsJavaDownloadReport("test_java_download_report",
|
397
463
|
compartment_id=tenancy_ocid,
|
398
464
|
format=java_download_report_format,
|
465
|
+
defined_tags={
|
466
|
+
"foo-namespace.bar-key": "value",
|
467
|
+
},
|
468
|
+
freeform_tags={
|
469
|
+
"bar-key": "value",
|
470
|
+
},
|
399
471
|
time_end=java_download_report_time_end,
|
400
472
|
time_start=java_download_report_time_start)
|
401
473
|
```
|
@@ -420,7 +492,9 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
420
492
|
resource_name: str,
|
421
493
|
opts: Optional[pulumi.ResourceOptions] = None,
|
422
494
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
495
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
423
496
|
format: Optional[pulumi.Input[str]] = None,
|
497
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
424
498
|
time_end: Optional[pulumi.Input[str]] = None,
|
425
499
|
time_start: Optional[pulumi.Input[str]] = None,
|
426
500
|
__props__=None):
|
@@ -435,18 +509,20 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
435
509
|
if compartment_id is None and not opts.urn:
|
436
510
|
raise TypeError("Missing required property 'compartment_id'")
|
437
511
|
__props__.__dict__["compartment_id"] = compartment_id
|
512
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
438
513
|
if format is None and not opts.urn:
|
439
514
|
raise TypeError("Missing required property 'format'")
|
440
515
|
__props__.__dict__["format"] = format
|
516
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
441
517
|
__props__.__dict__["time_end"] = time_end
|
442
518
|
__props__.__dict__["time_start"] = time_start
|
443
519
|
__props__.__dict__["checksum_type"] = None
|
444
520
|
__props__.__dict__["checksum_value"] = None
|
445
521
|
__props__.__dict__["created_bies"] = None
|
446
|
-
__props__.__dict__["defined_tags"] = None
|
447
522
|
__props__.__dict__["display_name"] = None
|
448
523
|
__props__.__dict__["file_size_in_bytes"] = None
|
449
|
-
__props__.__dict__["
|
524
|
+
__props__.__dict__["sort_by"] = None
|
525
|
+
__props__.__dict__["sort_order"] = None
|
450
526
|
__props__.__dict__["state"] = None
|
451
527
|
__props__.__dict__["system_tags"] = None
|
452
528
|
__props__.__dict__["time_created"] = None
|
@@ -469,6 +545,8 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
469
545
|
file_size_in_bytes: Optional[pulumi.Input[str]] = None,
|
470
546
|
format: Optional[pulumi.Input[str]] = None,
|
471
547
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
548
|
+
sort_by: Optional[pulumi.Input[str]] = None,
|
549
|
+
sort_order: Optional[pulumi.Input[str]] = None,
|
472
550
|
state: Optional[pulumi.Input[str]] = None,
|
473
551
|
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
474
552
|
time_created: Optional[pulumi.Input[str]] = None,
|
@@ -492,7 +570,7 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
492
570
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: 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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
493
571
|
:param pulumi.Input[str] state: The current state of the Java download report.
|
494
572
|
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
495
|
-
:param pulumi.Input[str] time_created: The time the Java download report was created
|
573
|
+
:param pulumi.Input[str] time_created: The time the Java download report was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
496
574
|
:param pulumi.Input[str] time_end: The end time until when the download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
497
575
|
:param pulumi.Input[str] time_start: The start time from when download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
498
576
|
|
@@ -513,6 +591,8 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
513
591
|
__props__.__dict__["file_size_in_bytes"] = file_size_in_bytes
|
514
592
|
__props__.__dict__["format"] = format
|
515
593
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
594
|
+
__props__.__dict__["sort_by"] = sort_by
|
595
|
+
__props__.__dict__["sort_order"] = sort_order
|
516
596
|
__props__.__dict__["state"] = state
|
517
597
|
__props__.__dict__["system_tags"] = system_tags
|
518
598
|
__props__.__dict__["time_created"] = time_created
|
@@ -592,6 +672,16 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
592
672
|
"""
|
593
673
|
return pulumi.get(self, "freeform_tags")
|
594
674
|
|
675
|
+
@property
|
676
|
+
@pulumi.getter(name="sortBy")
|
677
|
+
def sort_by(self) -> pulumi.Output[str]:
|
678
|
+
return pulumi.get(self, "sort_by")
|
679
|
+
|
680
|
+
@property
|
681
|
+
@pulumi.getter(name="sortOrder")
|
682
|
+
def sort_order(self) -> pulumi.Output[str]:
|
683
|
+
return pulumi.get(self, "sort_order")
|
684
|
+
|
595
685
|
@property
|
596
686
|
@pulumi.getter
|
597
687
|
def state(self) -> pulumi.Output[str]:
|
@@ -612,7 +702,7 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
612
702
|
@pulumi.getter(name="timeCreated")
|
613
703
|
def time_created(self) -> pulumi.Output[str]:
|
614
704
|
"""
|
615
|
-
The time the Java download report was created
|
705
|
+
The time the Java download report was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
616
706
|
"""
|
617
707
|
return pulumi.get(self, "time_created")
|
618
708
|
|
@@ -203,14 +203,14 @@ class _JavaDownloadsJavaDownloadTokenState:
|
|
203
203
|
:param pulumi.Input[str] lifecycle_details: Possible lifecycle substates.
|
204
204
|
:param pulumi.Input[str] state: The current state of the JavaDownloadToken.
|
205
205
|
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
206
|
-
:param pulumi.Input[str] time_created: The time the JavaDownloadToken was created
|
206
|
+
:param pulumi.Input[str] time_created: The time the JavaDownloadToken was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
207
207
|
:param pulumi.Input[str] time_expires: (Updatable) Expiry time of the token.
|
208
208
|
|
209
209
|
|
210
210
|
** IMPORTANT **
|
211
211
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
212
|
-
:param pulumi.Input[str] time_last_used: The time the JavaDownloadToken was last used for download
|
213
|
-
:param pulumi.Input[str] time_updated: The time the JavaDownloadToken was updated
|
212
|
+
:param pulumi.Input[str] time_last_used: The time the JavaDownloadToken was last used for download, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
213
|
+
:param pulumi.Input[str] time_updated: The time the JavaDownloadToken was updated, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
214
214
|
:param pulumi.Input[str] value: Uniquely generated value for the JavaDownloadToken.
|
215
215
|
"""
|
216
216
|
if compartment_id is not None:
|
@@ -410,7 +410,7 @@ class _JavaDownloadsJavaDownloadTokenState:
|
|
410
410
|
@pulumi.getter(name="timeCreated")
|
411
411
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
412
412
|
"""
|
413
|
-
The time the JavaDownloadToken was created
|
413
|
+
The time the JavaDownloadToken was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
414
414
|
"""
|
415
415
|
return pulumi.get(self, "time_created")
|
416
416
|
|
@@ -438,7 +438,7 @@ class _JavaDownloadsJavaDownloadTokenState:
|
|
438
438
|
@pulumi.getter(name="timeLastUsed")
|
439
439
|
def time_last_used(self) -> Optional[pulumi.Input[str]]:
|
440
440
|
"""
|
441
|
-
The time the JavaDownloadToken was last used for download
|
441
|
+
The time the JavaDownloadToken was last used for download, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
442
442
|
"""
|
443
443
|
return pulumi.get(self, "time_last_used")
|
444
444
|
|
@@ -450,7 +450,7 @@ class _JavaDownloadsJavaDownloadTokenState:
|
|
450
450
|
@pulumi.getter(name="timeUpdated")
|
451
451
|
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
452
452
|
"""
|
453
|
-
The time the JavaDownloadToken was updated
|
453
|
+
The time the JavaDownloadToken was updated, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
454
454
|
"""
|
455
455
|
return pulumi.get(self, "time_updated")
|
456
456
|
|
@@ -490,6 +490,7 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
490
490
|
This resource provides the Java Download Token resource in Oracle Cloud Infrastructure Jms Java Downloads service.
|
491
491
|
|
492
492
|
Creates a new JavaDownloadToken in the tenancy with specified attributes.
|
493
|
+
Ensure that you review the license terms before token generation. Visit the <a href="https://www.oracle.com/java/technologies/downloads"/>Oracle Java Downloads</a> page to understand the license terms of the Java version for which you are generating a token. By generating a token, you agree to the associated license terms. See <a href="https://www.oracle.com/cis/java/technologies/javase/jdk-faqs.html">Oracle JDK Licensing - FAQs</a> for detailed information.
|
493
494
|
|
494
495
|
## Example Usage
|
495
496
|
|
@@ -543,6 +544,7 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
543
544
|
This resource provides the Java Download Token resource in Oracle Cloud Infrastructure Jms Java Downloads service.
|
544
545
|
|
545
546
|
Creates a new JavaDownloadToken in the tenancy with specified attributes.
|
547
|
+
Ensure that you review the license terms before token generation. Visit the <a href="https://www.oracle.com/java/technologies/downloads"/>Oracle Java Downloads</a> page to understand the license terms of the Java version for which you are generating a token. By generating a token, you agree to the associated license terms. See <a href="https://www.oracle.com/cis/java/technologies/javase/jdk-faqs.html">Oracle JDK Licensing - FAQs</a> for detailed information.
|
546
548
|
|
547
549
|
## Example Usage
|
548
550
|
|
@@ -681,14 +683,14 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
681
683
|
:param pulumi.Input[str] lifecycle_details: Possible lifecycle substates.
|
682
684
|
:param pulumi.Input[str] state: The current state of the JavaDownloadToken.
|
683
685
|
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
684
|
-
:param pulumi.Input[str] time_created: The time the JavaDownloadToken was created
|
686
|
+
:param pulumi.Input[str] time_created: The time the JavaDownloadToken was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
685
687
|
:param pulumi.Input[str] time_expires: (Updatable) Expiry time of the token.
|
686
688
|
|
687
689
|
|
688
690
|
** IMPORTANT **
|
689
691
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
690
|
-
:param pulumi.Input[str] time_last_used: The time the JavaDownloadToken was last used for download
|
691
|
-
:param pulumi.Input[str] time_updated: The time the JavaDownloadToken was updated
|
692
|
+
:param pulumi.Input[str] time_last_used: The time the JavaDownloadToken was last used for download, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
693
|
+
:param pulumi.Input[str] time_updated: The time the JavaDownloadToken was updated, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
692
694
|
:param pulumi.Input[str] value: Uniquely generated value for the JavaDownloadToken.
|
693
695
|
"""
|
694
696
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -823,7 +825,7 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
823
825
|
@pulumi.getter(name="timeCreated")
|
824
826
|
def time_created(self) -> pulumi.Output[str]:
|
825
827
|
"""
|
826
|
-
The time the JavaDownloadToken was created
|
828
|
+
The time the JavaDownloadToken was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
827
829
|
"""
|
828
830
|
return pulumi.get(self, "time_created")
|
829
831
|
|
@@ -843,7 +845,7 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
843
845
|
@pulumi.getter(name="timeLastUsed")
|
844
846
|
def time_last_used(self) -> pulumi.Output[str]:
|
845
847
|
"""
|
846
|
-
The time the JavaDownloadToken was last used for download
|
848
|
+
The time the JavaDownloadToken was last used for download, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
847
849
|
"""
|
848
850
|
return pulumi.get(self, "time_last_used")
|
849
851
|
|
@@ -851,7 +853,7 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
851
853
|
@pulumi.getter(name="timeUpdated")
|
852
854
|
def time_updated(self) -> pulumi.Output[str]:
|
853
855
|
"""
|
854
|
-
The time the JavaDownloadToken was updated
|
856
|
+
The time the JavaDownloadToken was updated, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
855
857
|
"""
|
856
858
|
return pulumi.get(self, "time_updated")
|
857
859
|
|
@@ -18,7 +18,8 @@ class JavaDownloadsJavaLicenseAcceptanceRecordArgs:
|
|
18
18
|
def __init__(__self__, *,
|
19
19
|
compartment_id: pulumi.Input[str],
|
20
20
|
license_acceptance_status: pulumi.Input[str],
|
21
|
-
license_type: pulumi.Input[str]
|
21
|
+
license_type: pulumi.Input[str],
|
22
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None):
|
22
23
|
"""
|
23
24
|
The set of arguments for constructing a JavaDownloadsJavaLicenseAcceptanceRecord resource.
|
24
25
|
:param pulumi.Input[str] compartment_id: The tenancy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user accepting the license.
|
@@ -28,10 +29,13 @@ class JavaDownloadsJavaLicenseAcceptanceRecordArgs:
|
|
28
29
|
|
29
30
|
** IMPORTANT **
|
30
31
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
32
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
31
33
|
"""
|
32
34
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
33
35
|
pulumi.set(__self__, "license_acceptance_status", license_acceptance_status)
|
34
36
|
pulumi.set(__self__, "license_type", license_type)
|
37
|
+
if defined_tags is not None:
|
38
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
35
39
|
|
36
40
|
@property
|
37
41
|
@pulumi.getter(name="compartmentId")
|
@@ -73,6 +77,18 @@ class JavaDownloadsJavaLicenseAcceptanceRecordArgs:
|
|
73
77
|
def license_type(self, value: pulumi.Input[str]):
|
74
78
|
pulumi.set(self, "license_type", value)
|
75
79
|
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="definedTags")
|
82
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
83
|
+
"""
|
84
|
+
(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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "defined_tags")
|
87
|
+
|
88
|
+
@defined_tags.setter
|
89
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
90
|
+
pulumi.set(self, "defined_tags", value)
|
91
|
+
|
76
92
|
|
77
93
|
@pulumi.input_type
|
78
94
|
class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
@@ -92,7 +108,7 @@ class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
|
92
108
|
Input properties used for looking up and filtering JavaDownloadsJavaLicenseAcceptanceRecord resources.
|
93
109
|
:param pulumi.Input[str] compartment_id: The tenancy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user accepting the license.
|
94
110
|
:param pulumi.Input[Sequence[pulumi.Input['JavaDownloadsJavaLicenseAcceptanceRecordCreatedByArgs']]] created_bies: An authorized principal.
|
95
|
-
:param pulumi.Input[Mapping[str, Any]] defined_tags: 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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
111
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
96
112
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: 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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
97
113
|
:param pulumi.Input[Sequence[pulumi.Input['JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs']]] last_updated_bies: An authorized principal.
|
98
114
|
:param pulumi.Input[str] license_acceptance_status: (Updatable) Status of license acceptance.
|
@@ -103,8 +119,8 @@ class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
|
103
119
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
104
120
|
:param pulumi.Input[str] state: The current state of the JavaLicenseAcceptanceRecord.
|
105
121
|
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
106
|
-
:param pulumi.Input[str] time_accepted: The date and time of license acceptance(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
107
|
-
:param pulumi.Input[str] time_last_updated: The date and time of last update(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
122
|
+
:param pulumi.Input[str] time_accepted: The date and time of license acceptance (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
123
|
+
:param pulumi.Input[str] time_last_updated: The date and time of last update (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
108
124
|
"""
|
109
125
|
if compartment_id is not None:
|
110
126
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -157,7 +173,7 @@ class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
|
157
173
|
@pulumi.getter(name="definedTags")
|
158
174
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
159
175
|
"""
|
160
|
-
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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
176
|
+
(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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
161
177
|
"""
|
162
178
|
return pulumi.get(self, "defined_tags")
|
163
179
|
|
@@ -245,7 +261,7 @@ class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
|
245
261
|
@pulumi.getter(name="timeAccepted")
|
246
262
|
def time_accepted(self) -> Optional[pulumi.Input[str]]:
|
247
263
|
"""
|
248
|
-
The date and time of license acceptance(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
264
|
+
The date and time of license acceptance (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
249
265
|
"""
|
250
266
|
return pulumi.get(self, "time_accepted")
|
251
267
|
|
@@ -257,7 +273,7 @@ class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
|
257
273
|
@pulumi.getter(name="timeLastUpdated")
|
258
274
|
def time_last_updated(self) -> Optional[pulumi.Input[str]]:
|
259
275
|
"""
|
260
|
-
The date and time of last update(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
276
|
+
The date and time of last update (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
261
277
|
"""
|
262
278
|
return pulumi.get(self, "time_last_updated")
|
263
279
|
|
@@ -272,6 +288,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
272
288
|
resource_name: str,
|
273
289
|
opts: Optional[pulumi.ResourceOptions] = None,
|
274
290
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
291
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
275
292
|
license_acceptance_status: Optional[pulumi.Input[str]] = None,
|
276
293
|
license_type: Optional[pulumi.Input[str]] = None,
|
277
294
|
__props__=None):
|
@@ -289,7 +306,10 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
289
306
|
test_java_license_acceptance_record = oci.jms.JavaDownloadsJavaLicenseAcceptanceRecord("test_java_license_acceptance_record",
|
290
307
|
compartment_id=tenancy_ocid,
|
291
308
|
license_acceptance_status=java_license_acceptance_record_license_acceptance_status,
|
292
|
-
license_type=java_license_acceptance_record_license_type
|
309
|
+
license_type=java_license_acceptance_record_license_type,
|
310
|
+
defined_tags={
|
311
|
+
"foo-namespace.bar-key": "value",
|
312
|
+
})
|
293
313
|
```
|
294
314
|
|
295
315
|
## Import
|
@@ -299,6 +319,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
299
319
|
:param str resource_name: The name of the resource.
|
300
320
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
301
321
|
:param pulumi.Input[str] compartment_id: The tenancy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user accepting the license.
|
322
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
302
323
|
:param pulumi.Input[str] license_acceptance_status: (Updatable) Status of license acceptance.
|
303
324
|
:param pulumi.Input[str] license_type: License type for the Java version.
|
304
325
|
|
@@ -326,7 +347,10 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
326
347
|
test_java_license_acceptance_record = oci.jms.JavaDownloadsJavaLicenseAcceptanceRecord("test_java_license_acceptance_record",
|
327
348
|
compartment_id=tenancy_ocid,
|
328
349
|
license_acceptance_status=java_license_acceptance_record_license_acceptance_status,
|
329
|
-
license_type=java_license_acceptance_record_license_type
|
350
|
+
license_type=java_license_acceptance_record_license_type,
|
351
|
+
defined_tags={
|
352
|
+
"foo-namespace.bar-key": "value",
|
353
|
+
})
|
330
354
|
```
|
331
355
|
|
332
356
|
## Import
|
@@ -349,6 +373,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
349
373
|
resource_name: str,
|
350
374
|
opts: Optional[pulumi.ResourceOptions] = None,
|
351
375
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
376
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
352
377
|
license_acceptance_status: Optional[pulumi.Input[str]] = None,
|
353
378
|
license_type: Optional[pulumi.Input[str]] = None,
|
354
379
|
__props__=None):
|
@@ -363,6 +388,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
363
388
|
if compartment_id is None and not opts.urn:
|
364
389
|
raise TypeError("Missing required property 'compartment_id'")
|
365
390
|
__props__.__dict__["compartment_id"] = compartment_id
|
391
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
366
392
|
if license_acceptance_status is None and not opts.urn:
|
367
393
|
raise TypeError("Missing required property 'license_acceptance_status'")
|
368
394
|
__props__.__dict__["license_acceptance_status"] = license_acceptance_status
|
@@ -370,7 +396,6 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
370
396
|
raise TypeError("Missing required property 'license_type'")
|
371
397
|
__props__.__dict__["license_type"] = license_type
|
372
398
|
__props__.__dict__["created_bies"] = None
|
373
|
-
__props__.__dict__["defined_tags"] = None
|
374
399
|
__props__.__dict__["freeform_tags"] = None
|
375
400
|
__props__.__dict__["last_updated_bies"] = None
|
376
401
|
__props__.__dict__["state"] = None
|
@@ -407,7 +432,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
407
432
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
408
433
|
:param pulumi.Input[str] compartment_id: The tenancy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user accepting the license.
|
409
434
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['JavaDownloadsJavaLicenseAcceptanceRecordCreatedByArgs']]]] created_bies: An authorized principal.
|
410
|
-
:param pulumi.Input[Mapping[str, Any]] defined_tags: 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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
435
|
+
:param pulumi.Input[Mapping[str, Any]] defined_tags: (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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
411
436
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: 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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
412
437
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs']]]] last_updated_bies: An authorized principal.
|
413
438
|
:param pulumi.Input[str] license_acceptance_status: (Updatable) Status of license acceptance.
|
@@ -418,8 +443,8 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
418
443
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
419
444
|
:param pulumi.Input[str] state: The current state of the JavaLicenseAcceptanceRecord.
|
420
445
|
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
421
|
-
:param pulumi.Input[str] time_accepted: The date and time of license acceptance(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
422
|
-
:param pulumi.Input[str] time_last_updated: The date and time of last update(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
446
|
+
:param pulumi.Input[str] time_accepted: The date and time of license acceptance (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
447
|
+
:param pulumi.Input[str] time_last_updated: The date and time of last update (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
423
448
|
"""
|
424
449
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
425
450
|
|
@@ -458,7 +483,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
458
483
|
@pulumi.getter(name="definedTags")
|
459
484
|
def defined_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
460
485
|
"""
|
461
|
-
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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
486
|
+
(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](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
462
487
|
"""
|
463
488
|
return pulumi.get(self, "defined_tags")
|
464
489
|
|
@@ -518,7 +543,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
518
543
|
@pulumi.getter(name="timeAccepted")
|
519
544
|
def time_accepted(self) -> pulumi.Output[str]:
|
520
545
|
"""
|
521
|
-
The date and time of license acceptance(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
546
|
+
The date and time of license acceptance (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
522
547
|
"""
|
523
548
|
return pulumi.get(self, "time_accepted")
|
524
549
|
|
@@ -526,7 +551,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
526
551
|
@pulumi.getter(name="timeLastUpdated")
|
527
552
|
def time_last_updated(self) -> pulumi.Output[str]:
|
528
553
|
"""
|
529
|
-
The date and time of last update(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
554
|
+
The date and time of last update (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
530
555
|
"""
|
531
556
|
return pulumi.get(self, "time_last_updated")
|
532
557
|
|