pulumi-oci 1.38.0__py3-none-any.whl → 1.38.0a1717136770__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 +0 -8
- pulumi_oci/bigdataservice/__init__.py +0 -1
- pulumi_oci/bigdataservice/_inputs.py +2 -103
- pulumi_oci/bigdataservice/outputs.py +6 -174
- pulumi_oci/jms/get_java_downloads_java_download_report.py +2 -28
- 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 +6 -96
- pulumi_oci/jms/java_downloads_java_download_token.py +12 -14
- pulumi_oci/jms/java_downloads_java_license_acceptance_record.py +16 -41
- pulumi_oci/jms/outputs.py +16 -38
- pulumi_oci/loadbalancer/_inputs.py +0 -4
- pulumi_oci/loadbalancer/outputs.py +0 -4
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.38.0.dist-info → pulumi_oci-1.38.0a1717136770.dist-info}/METADATA +1 -1
- {pulumi_oci-1.38.0.dist-info → pulumi_oci-1.38.0a1717136770.dist-info}/RECORD +18 -19
- pulumi_oci/bigdataservice/bds_instance_os_patch_action.py +0 -239
- {pulumi_oci-1.38.0.dist-info → pulumi_oci-1.38.0a1717136770.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.38.0.dist-info → pulumi_oci-1.38.0a1717136770.dist-info}/top_level.txt +0 -0
@@ -205,7 +205,7 @@ class GetJavaDownloadsJavaDownloadTokenResult:
|
|
205
205
|
@pulumi.getter(name="timeCreated")
|
206
206
|
def time_created(self) -> str:
|
207
207
|
"""
|
208
|
-
The time the JavaDownloadToken was created
|
208
|
+
The time the JavaDownloadToken was created. An RFC3339 formatted datetime string.
|
209
209
|
"""
|
210
210
|
return pulumi.get(self, "time_created")
|
211
211
|
|
@@ -213,7 +213,7 @@ class GetJavaDownloadsJavaDownloadTokenResult:
|
|
213
213
|
@pulumi.getter(name="timeExpires")
|
214
214
|
def time_expires(self) -> str:
|
215
215
|
"""
|
216
|
-
The expiry time of the JavaDownloadToken
|
216
|
+
The expiry time of the JavaDownloadToken. An RFC3339 formatted datetime string.
|
217
217
|
"""
|
218
218
|
return pulumi.get(self, "time_expires")
|
219
219
|
|
@@ -221,7 +221,7 @@ class GetJavaDownloadsJavaDownloadTokenResult:
|
|
221
221
|
@pulumi.getter(name="timeLastUsed")
|
222
222
|
def time_last_used(self) -> str:
|
223
223
|
"""
|
224
|
-
The time the JavaDownloadToken was last used for download
|
224
|
+
The time the JavaDownloadToken was last used for download. An RFC3339 formatted datetime string.
|
225
225
|
"""
|
226
226
|
return pulumi.get(self, "time_last_used")
|
227
227
|
|
@@ -229,7 +229,7 @@ class GetJavaDownloadsJavaDownloadTokenResult:
|
|
229
229
|
@pulumi.getter(name="timeUpdated")
|
230
230
|
def time_updated(self) -> str:
|
231
231
|
"""
|
232
|
-
The time the JavaDownloadToken was updated
|
232
|
+
The time the JavaDownloadToken was updated. An RFC3339 formatted datetime string.
|
233
233
|
"""
|
234
234
|
return pulumi.get(self, "time_updated")
|
235
235
|
|
@@ -152,7 +152,7 @@ class GetJavaDownloadsJavaLicenseAcceptanceRecordResult:
|
|
152
152
|
@pulumi.getter(name="timeAccepted")
|
153
153
|
def time_accepted(self) -> str:
|
154
154
|
"""
|
155
|
-
The date and time of license acceptance
|
155
|
+
The date and time of license acceptance(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
156
156
|
"""
|
157
157
|
return pulumi.get(self, "time_accepted")
|
158
158
|
|
@@ -160,7 +160,7 @@ class GetJavaDownloadsJavaLicenseAcceptanceRecordResult:
|
|
160
160
|
@pulumi.getter(name="timeLastUpdated")
|
161
161
|
def time_last_updated(self) -> str:
|
162
162
|
"""
|
163
|
-
The date and time of last update
|
163
|
+
The date and time of last update(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
164
164
|
"""
|
165
165
|
return pulumi.get(self, "time_last_updated")
|
166
166
|
|
@@ -18,16 +18,12 @@ 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,
|
23
21
|
time_end: Optional[pulumi.Input[str]] = None,
|
24
22
|
time_start: Optional[pulumi.Input[str]] = None):
|
25
23
|
"""
|
26
24
|
The set of arguments for constructing a JavaDownloadsJavaDownloadReport resource.
|
27
25
|
: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.
|
28
26
|
: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).)
|
31
27
|
: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)).
|
32
28
|
: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)).
|
33
29
|
|
@@ -37,10 +33,6 @@ class JavaDownloadsJavaDownloadReportArgs:
|
|
37
33
|
"""
|
38
34
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
39
35
|
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)
|
44
36
|
if time_end is not None:
|
45
37
|
pulumi.set(__self__, "time_end", time_end)
|
46
38
|
if time_start is not None:
|
@@ -70,30 +62,6 @@ class JavaDownloadsJavaDownloadReportArgs:
|
|
70
62
|
def format(self, value: pulumi.Input[str]):
|
71
63
|
pulumi.set(self, "format", value)
|
72
64
|
|
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
|
-
|
97
65
|
@property
|
98
66
|
@pulumi.getter(name="timeEnd")
|
99
67
|
def time_end(self) -> Optional[pulumi.Input[str]]:
|
@@ -135,8 +103,6 @@ class _JavaDownloadsJavaDownloadReportState:
|
|
135
103
|
file_size_in_bytes: Optional[pulumi.Input[str]] = None,
|
136
104
|
format: Optional[pulumi.Input[str]] = None,
|
137
105
|
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,
|
140
106
|
state: Optional[pulumi.Input[str]] = None,
|
141
107
|
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
142
108
|
time_created: Optional[pulumi.Input[str]] = None,
|
@@ -155,7 +121,7 @@ class _JavaDownloadsJavaDownloadReportState:
|
|
155
121
|
: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).)
|
156
122
|
:param pulumi.Input[str] state: The current state of the Java download report.
|
157
123
|
: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"}`
|
158
|
-
:param pulumi.Input[str] time_created: The time the Java download report was created
|
124
|
+
:param pulumi.Input[str] time_created: The time the Java download report was created. An RFC3339 formatted datetime string.
|
159
125
|
: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)).
|
160
126
|
: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)).
|
161
127
|
|
@@ -181,10 +147,6 @@ class _JavaDownloadsJavaDownloadReportState:
|
|
181
147
|
pulumi.set(__self__, "format", format)
|
182
148
|
if freeform_tags is not None:
|
183
149
|
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)
|
188
150
|
if state is not None:
|
189
151
|
pulumi.set(__self__, "state", state)
|
190
152
|
if system_tags is not None:
|
@@ -304,24 +266,6 @@ class _JavaDownloadsJavaDownloadReportState:
|
|
304
266
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
305
267
|
pulumi.set(self, "freeform_tags", value)
|
306
268
|
|
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
|
-
|
325
269
|
@property
|
326
270
|
@pulumi.getter
|
327
271
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -350,7 +294,7 @@ class _JavaDownloadsJavaDownloadReportState:
|
|
350
294
|
@pulumi.getter(name="timeCreated")
|
351
295
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
352
296
|
"""
|
353
|
-
The time the Java download report was created
|
297
|
+
The time the Java download report was created. An RFC3339 formatted datetime string.
|
354
298
|
"""
|
355
299
|
return pulumi.get(self, "time_created")
|
356
300
|
|
@@ -393,9 +337,7 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
393
337
|
resource_name: str,
|
394
338
|
opts: Optional[pulumi.ResourceOptions] = None,
|
395
339
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
396
|
-
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
397
340
|
format: Optional[pulumi.Input[str]] = None,
|
398
|
-
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
399
341
|
time_end: Optional[pulumi.Input[str]] = None,
|
400
342
|
time_start: Optional[pulumi.Input[str]] = None,
|
401
343
|
__props__=None):
|
@@ -414,12 +356,6 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
414
356
|
test_java_download_report = oci.jms.JavaDownloadsJavaDownloadReport("test_java_download_report",
|
415
357
|
compartment_id=tenancy_ocid,
|
416
358
|
format=java_download_report_format,
|
417
|
-
defined_tags={
|
418
|
-
"foo-namespace.bar-key": "value",
|
419
|
-
},
|
420
|
-
freeform_tags={
|
421
|
-
"bar-key": "value",
|
422
|
-
},
|
423
359
|
time_end=java_download_report_time_end,
|
424
360
|
time_start=java_download_report_time_start)
|
425
361
|
```
|
@@ -431,9 +367,7 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
431
367
|
:param str resource_name: The name of the resource.
|
432
368
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
433
369
|
: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)).
|
435
370
|
: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).)
|
437
371
|
: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)).
|
438
372
|
: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)).
|
439
373
|
|
@@ -462,12 +396,6 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
462
396
|
test_java_download_report = oci.jms.JavaDownloadsJavaDownloadReport("test_java_download_report",
|
463
397
|
compartment_id=tenancy_ocid,
|
464
398
|
format=java_download_report_format,
|
465
|
-
defined_tags={
|
466
|
-
"foo-namespace.bar-key": "value",
|
467
|
-
},
|
468
|
-
freeform_tags={
|
469
|
-
"bar-key": "value",
|
470
|
-
},
|
471
399
|
time_end=java_download_report_time_end,
|
472
400
|
time_start=java_download_report_time_start)
|
473
401
|
```
|
@@ -492,9 +420,7 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
492
420
|
resource_name: str,
|
493
421
|
opts: Optional[pulumi.ResourceOptions] = None,
|
494
422
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
495
|
-
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
496
423
|
format: Optional[pulumi.Input[str]] = None,
|
497
|
-
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
498
424
|
time_end: Optional[pulumi.Input[str]] = None,
|
499
425
|
time_start: Optional[pulumi.Input[str]] = None,
|
500
426
|
__props__=None):
|
@@ -509,20 +435,18 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
509
435
|
if compartment_id is None and not opts.urn:
|
510
436
|
raise TypeError("Missing required property 'compartment_id'")
|
511
437
|
__props__.__dict__["compartment_id"] = compartment_id
|
512
|
-
__props__.__dict__["defined_tags"] = defined_tags
|
513
438
|
if format is None and not opts.urn:
|
514
439
|
raise TypeError("Missing required property 'format'")
|
515
440
|
__props__.__dict__["format"] = format
|
516
|
-
__props__.__dict__["freeform_tags"] = freeform_tags
|
517
441
|
__props__.__dict__["time_end"] = time_end
|
518
442
|
__props__.__dict__["time_start"] = time_start
|
519
443
|
__props__.__dict__["checksum_type"] = None
|
520
444
|
__props__.__dict__["checksum_value"] = None
|
521
445
|
__props__.__dict__["created_bies"] = None
|
446
|
+
__props__.__dict__["defined_tags"] = None
|
522
447
|
__props__.__dict__["display_name"] = None
|
523
448
|
__props__.__dict__["file_size_in_bytes"] = None
|
524
|
-
__props__.__dict__["
|
525
|
-
__props__.__dict__["sort_order"] = None
|
449
|
+
__props__.__dict__["freeform_tags"] = None
|
526
450
|
__props__.__dict__["state"] = None
|
527
451
|
__props__.__dict__["system_tags"] = None
|
528
452
|
__props__.__dict__["time_created"] = None
|
@@ -545,8 +469,6 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
545
469
|
file_size_in_bytes: Optional[pulumi.Input[str]] = None,
|
546
470
|
format: Optional[pulumi.Input[str]] = None,
|
547
471
|
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,
|
550
472
|
state: Optional[pulumi.Input[str]] = None,
|
551
473
|
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
552
474
|
time_created: Optional[pulumi.Input[str]] = None,
|
@@ -570,7 +492,7 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
570
492
|
: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).)
|
571
493
|
:param pulumi.Input[str] state: The current state of the Java download report.
|
572
494
|
: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"}`
|
573
|
-
:param pulumi.Input[str] time_created: The time the Java download report was created
|
495
|
+
:param pulumi.Input[str] time_created: The time the Java download report was created. An RFC3339 formatted datetime string.
|
574
496
|
: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)).
|
575
497
|
: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)).
|
576
498
|
|
@@ -591,8 +513,6 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
591
513
|
__props__.__dict__["file_size_in_bytes"] = file_size_in_bytes
|
592
514
|
__props__.__dict__["format"] = format
|
593
515
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
594
|
-
__props__.__dict__["sort_by"] = sort_by
|
595
|
-
__props__.__dict__["sort_order"] = sort_order
|
596
516
|
__props__.__dict__["state"] = state
|
597
517
|
__props__.__dict__["system_tags"] = system_tags
|
598
518
|
__props__.__dict__["time_created"] = time_created
|
@@ -672,16 +592,6 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
672
592
|
"""
|
673
593
|
return pulumi.get(self, "freeform_tags")
|
674
594
|
|
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
|
-
|
685
595
|
@property
|
686
596
|
@pulumi.getter
|
687
597
|
def state(self) -> pulumi.Output[str]:
|
@@ -702,7 +612,7 @@ class JavaDownloadsJavaDownloadReport(pulumi.CustomResource):
|
|
702
612
|
@pulumi.getter(name="timeCreated")
|
703
613
|
def time_created(self) -> pulumi.Output[str]:
|
704
614
|
"""
|
705
|
-
The time the Java download report was created
|
615
|
+
The time the Java download report was created. An RFC3339 formatted datetime string.
|
706
616
|
"""
|
707
617
|
return pulumi.get(self, "time_created")
|
708
618
|
|
@@ -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. An 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. An RFC3339 formatted datetime string.
|
213
|
+
:param pulumi.Input[str] time_updated: The time the JavaDownloadToken was updated. An 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. An 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. An 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. An RFC3339 formatted datetime string.
|
454
454
|
"""
|
455
455
|
return pulumi.get(self, "time_updated")
|
456
456
|
|
@@ -490,7 +490,6 @@ 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.
|
494
493
|
|
495
494
|
## Example Usage
|
496
495
|
|
@@ -544,7 +543,6 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
544
543
|
This resource provides the Java Download Token resource in Oracle Cloud Infrastructure Jms Java Downloads service.
|
545
544
|
|
546
545
|
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.
|
548
546
|
|
549
547
|
## Example Usage
|
550
548
|
|
@@ -683,14 +681,14 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
683
681
|
:param pulumi.Input[str] lifecycle_details: Possible lifecycle substates.
|
684
682
|
:param pulumi.Input[str] state: The current state of the JavaDownloadToken.
|
685
683
|
: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"}`
|
686
|
-
:param pulumi.Input[str] time_created: The time the JavaDownloadToken was created
|
684
|
+
:param pulumi.Input[str] time_created: The time the JavaDownloadToken was created. An RFC3339 formatted datetime string.
|
687
685
|
:param pulumi.Input[str] time_expires: (Updatable) Expiry time of the token.
|
688
686
|
|
689
687
|
|
690
688
|
** IMPORTANT **
|
691
689
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
692
|
-
:param pulumi.Input[str] time_last_used: The time the JavaDownloadToken was last used for download
|
693
|
-
:param pulumi.Input[str] time_updated: The time the JavaDownloadToken was updated
|
690
|
+
:param pulumi.Input[str] time_last_used: The time the JavaDownloadToken was last used for download. An RFC3339 formatted datetime string.
|
691
|
+
:param pulumi.Input[str] time_updated: The time the JavaDownloadToken was updated. An RFC3339 formatted datetime string.
|
694
692
|
:param pulumi.Input[str] value: Uniquely generated value for the JavaDownloadToken.
|
695
693
|
"""
|
696
694
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -825,7 +823,7 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
825
823
|
@pulumi.getter(name="timeCreated")
|
826
824
|
def time_created(self) -> pulumi.Output[str]:
|
827
825
|
"""
|
828
|
-
The time the JavaDownloadToken was created
|
826
|
+
The time the JavaDownloadToken was created. An RFC3339 formatted datetime string.
|
829
827
|
"""
|
830
828
|
return pulumi.get(self, "time_created")
|
831
829
|
|
@@ -845,7 +843,7 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
845
843
|
@pulumi.getter(name="timeLastUsed")
|
846
844
|
def time_last_used(self) -> pulumi.Output[str]:
|
847
845
|
"""
|
848
|
-
The time the JavaDownloadToken was last used for download
|
846
|
+
The time the JavaDownloadToken was last used for download. An RFC3339 formatted datetime string.
|
849
847
|
"""
|
850
848
|
return pulumi.get(self, "time_last_used")
|
851
849
|
|
@@ -853,7 +851,7 @@ class JavaDownloadsJavaDownloadToken(pulumi.CustomResource):
|
|
853
851
|
@pulumi.getter(name="timeUpdated")
|
854
852
|
def time_updated(self) -> pulumi.Output[str]:
|
855
853
|
"""
|
856
|
-
The time the JavaDownloadToken was updated
|
854
|
+
The time the JavaDownloadToken was updated. An RFC3339 formatted datetime string.
|
857
855
|
"""
|
858
856
|
return pulumi.get(self, "time_updated")
|
859
857
|
|
@@ -18,8 +18,7 @@ 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]
|
22
|
-
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None):
|
21
|
+
license_type: pulumi.Input[str]):
|
23
22
|
"""
|
24
23
|
The set of arguments for constructing a JavaDownloadsJavaLicenseAcceptanceRecord resource.
|
25
24
|
: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.
|
@@ -29,13 +28,10 @@ class JavaDownloadsJavaLicenseAcceptanceRecordArgs:
|
|
29
28
|
|
30
29
|
** IMPORTANT **
|
31
30
|
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)).
|
33
31
|
"""
|
34
32
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
33
|
pulumi.set(__self__, "license_acceptance_status", license_acceptance_status)
|
36
34
|
pulumi.set(__self__, "license_type", license_type)
|
37
|
-
if defined_tags is not None:
|
38
|
-
pulumi.set(__self__, "defined_tags", defined_tags)
|
39
35
|
|
40
36
|
@property
|
41
37
|
@pulumi.getter(name="compartmentId")
|
@@ -77,18 +73,6 @@ class JavaDownloadsJavaLicenseAcceptanceRecordArgs:
|
|
77
73
|
def license_type(self, value: pulumi.Input[str]):
|
78
74
|
pulumi.set(self, "license_type", value)
|
79
75
|
|
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
|
-
|
92
76
|
|
93
77
|
@pulumi.input_type
|
94
78
|
class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
@@ -108,7 +92,7 @@ class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
|
108
92
|
Input properties used for looking up and filtering JavaDownloadsJavaLicenseAcceptanceRecord resources.
|
109
93
|
: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.
|
110
94
|
:param pulumi.Input[Sequence[pulumi.Input['JavaDownloadsJavaLicenseAcceptanceRecordCreatedByArgs']]] created_bies: An authorized principal.
|
111
|
-
:param pulumi.Input[Mapping[str, Any]] defined_tags:
|
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)).
|
112
96
|
: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).)
|
113
97
|
:param pulumi.Input[Sequence[pulumi.Input['JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs']]] last_updated_bies: An authorized principal.
|
114
98
|
:param pulumi.Input[str] license_acceptance_status: (Updatable) Status of license acceptance.
|
@@ -119,8 +103,8 @@ class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
|
119
103
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
120
104
|
:param pulumi.Input[str] state: The current state of the JavaLicenseAcceptanceRecord.
|
121
105
|
: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"}`
|
122
|
-
:param pulumi.Input[str] time_accepted: The date and time of license acceptance
|
123
|
-
:param pulumi.Input[str] time_last_updated: The date and time of last update
|
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)).
|
124
108
|
"""
|
125
109
|
if compartment_id is not None:
|
126
110
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -173,7 +157,7 @@ class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
|
173
157
|
@pulumi.getter(name="definedTags")
|
174
158
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
175
159
|
"""
|
176
|
-
|
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)).
|
177
161
|
"""
|
178
162
|
return pulumi.get(self, "defined_tags")
|
179
163
|
|
@@ -261,7 +245,7 @@ class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
|
261
245
|
@pulumi.getter(name="timeAccepted")
|
262
246
|
def time_accepted(self) -> Optional[pulumi.Input[str]]:
|
263
247
|
"""
|
264
|
-
The date and time of license acceptance
|
248
|
+
The date and time of license acceptance(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
265
249
|
"""
|
266
250
|
return pulumi.get(self, "time_accepted")
|
267
251
|
|
@@ -273,7 +257,7 @@ class _JavaDownloadsJavaLicenseAcceptanceRecordState:
|
|
273
257
|
@pulumi.getter(name="timeLastUpdated")
|
274
258
|
def time_last_updated(self) -> Optional[pulumi.Input[str]]:
|
275
259
|
"""
|
276
|
-
The date and time of last update
|
260
|
+
The date and time of last update(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
277
261
|
"""
|
278
262
|
return pulumi.get(self, "time_last_updated")
|
279
263
|
|
@@ -288,7 +272,6 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
288
272
|
resource_name: str,
|
289
273
|
opts: Optional[pulumi.ResourceOptions] = None,
|
290
274
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
291
|
-
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
292
275
|
license_acceptance_status: Optional[pulumi.Input[str]] = None,
|
293
276
|
license_type: Optional[pulumi.Input[str]] = None,
|
294
277
|
__props__=None):
|
@@ -306,10 +289,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
306
289
|
test_java_license_acceptance_record = oci.jms.JavaDownloadsJavaLicenseAcceptanceRecord("test_java_license_acceptance_record",
|
307
290
|
compartment_id=tenancy_ocid,
|
308
291
|
license_acceptance_status=java_license_acceptance_record_license_acceptance_status,
|
309
|
-
license_type=java_license_acceptance_record_license_type
|
310
|
-
defined_tags={
|
311
|
-
"foo-namespace.bar-key": "value",
|
312
|
-
})
|
292
|
+
license_type=java_license_acceptance_record_license_type)
|
313
293
|
```
|
314
294
|
|
315
295
|
## Import
|
@@ -319,7 +299,6 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
319
299
|
:param str resource_name: The name of the resource.
|
320
300
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
321
301
|
: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)).
|
323
302
|
:param pulumi.Input[str] license_acceptance_status: (Updatable) Status of license acceptance.
|
324
303
|
:param pulumi.Input[str] license_type: License type for the Java version.
|
325
304
|
|
@@ -347,10 +326,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
347
326
|
test_java_license_acceptance_record = oci.jms.JavaDownloadsJavaLicenseAcceptanceRecord("test_java_license_acceptance_record",
|
348
327
|
compartment_id=tenancy_ocid,
|
349
328
|
license_acceptance_status=java_license_acceptance_record_license_acceptance_status,
|
350
|
-
license_type=java_license_acceptance_record_license_type
|
351
|
-
defined_tags={
|
352
|
-
"foo-namespace.bar-key": "value",
|
353
|
-
})
|
329
|
+
license_type=java_license_acceptance_record_license_type)
|
354
330
|
```
|
355
331
|
|
356
332
|
## Import
|
@@ -373,7 +349,6 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
373
349
|
resource_name: str,
|
374
350
|
opts: Optional[pulumi.ResourceOptions] = None,
|
375
351
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
376
|
-
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
377
352
|
license_acceptance_status: Optional[pulumi.Input[str]] = None,
|
378
353
|
license_type: Optional[pulumi.Input[str]] = None,
|
379
354
|
__props__=None):
|
@@ -388,7 +363,6 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
388
363
|
if compartment_id is None and not opts.urn:
|
389
364
|
raise TypeError("Missing required property 'compartment_id'")
|
390
365
|
__props__.__dict__["compartment_id"] = compartment_id
|
391
|
-
__props__.__dict__["defined_tags"] = defined_tags
|
392
366
|
if license_acceptance_status is None and not opts.urn:
|
393
367
|
raise TypeError("Missing required property 'license_acceptance_status'")
|
394
368
|
__props__.__dict__["license_acceptance_status"] = license_acceptance_status
|
@@ -396,6 +370,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
396
370
|
raise TypeError("Missing required property 'license_type'")
|
397
371
|
__props__.__dict__["license_type"] = license_type
|
398
372
|
__props__.__dict__["created_bies"] = None
|
373
|
+
__props__.__dict__["defined_tags"] = None
|
399
374
|
__props__.__dict__["freeform_tags"] = None
|
400
375
|
__props__.__dict__["last_updated_bies"] = None
|
401
376
|
__props__.__dict__["state"] = None
|
@@ -432,7 +407,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
432
407
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
433
408
|
: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.
|
434
409
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['JavaDownloadsJavaLicenseAcceptanceRecordCreatedByArgs']]]] created_bies: An authorized principal.
|
435
|
-
:param pulumi.Input[Mapping[str, Any]] defined_tags:
|
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)).
|
436
411
|
: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).)
|
437
412
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedByArgs']]]] last_updated_bies: An authorized principal.
|
438
413
|
:param pulumi.Input[str] license_acceptance_status: (Updatable) Status of license acceptance.
|
@@ -443,8 +418,8 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
443
418
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
444
419
|
:param pulumi.Input[str] state: The current state of the JavaLicenseAcceptanceRecord.
|
445
420
|
: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"}`
|
446
|
-
:param pulumi.Input[str] time_accepted: The date and time of license acceptance
|
447
|
-
:param pulumi.Input[str] time_last_updated: The date and time of last update
|
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)).
|
448
423
|
"""
|
449
424
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
450
425
|
|
@@ -483,7 +458,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
483
458
|
@pulumi.getter(name="definedTags")
|
484
459
|
def defined_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
485
460
|
"""
|
486
|
-
|
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)).
|
487
462
|
"""
|
488
463
|
return pulumi.get(self, "defined_tags")
|
489
464
|
|
@@ -543,7 +518,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
543
518
|
@pulumi.getter(name="timeAccepted")
|
544
519
|
def time_accepted(self) -> pulumi.Output[str]:
|
545
520
|
"""
|
546
|
-
The date and time of license acceptance
|
521
|
+
The date and time of license acceptance(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
547
522
|
"""
|
548
523
|
return pulumi.get(self, "time_accepted")
|
549
524
|
|
@@ -551,7 +526,7 @@ class JavaDownloadsJavaLicenseAcceptanceRecord(pulumi.CustomResource):
|
|
551
526
|
@pulumi.getter(name="timeLastUpdated")
|
552
527
|
def time_last_updated(self) -> pulumi.Output[str]:
|
553
528
|
"""
|
554
|
-
The date and time of last update
|
529
|
+
The date and time of last update(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
555
530
|
"""
|
556
531
|
return pulumi.get(self, "time_last_updated")
|
557
532
|
|