pulumi-oci 1.38.0a1717136770__py3-none-any.whl → 1.39.0__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 +19 -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/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +44 -4
- pulumi_oci/database/autonomous_database.py +61 -14
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +25 -7
- pulumi_oci/database/get_autonomous_character_sets.py +4 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_database_peers.py +133 -0
- pulumi_oci/database/outputs.py +102 -6
- pulumi_oci/demandsignal/__init__.py +12 -0
- pulumi_oci/demandsignal/_inputs.py +267 -0
- pulumi_oci/demandsignal/get_occ_demand_signal.py +259 -0
- pulumi_oci/demandsignal/get_occ_demand_signals.py +183 -0
- pulumi_oci/demandsignal/occ_demand_signal.py +630 -0
- pulumi_oci/demandsignal/outputs.py +700 -0
- pulumi_oci/goldengate/_inputs.py +219 -6
- pulumi_oci/goldengate/connection.py +334 -0
- pulumi_oci/goldengate/connection_assignment.py +68 -19
- pulumi_oci/goldengate/deployment.py +88 -7
- pulumi_oci/goldengate/deployment_backup.py +122 -3
- pulumi_oci/goldengate/deployment_certificate.py +59 -10
- pulumi_oci/goldengate/get_connection.py +80 -1
- pulumi_oci/goldengate/get_connection_assignment.py +11 -1
- pulumi_oci/goldengate/get_deployment.py +25 -2
- pulumi_oci/goldengate/get_deployment_backup.py +38 -1
- pulumi_oci/goldengate/get_deployment_certificate.py +12 -2
- pulumi_oci/goldengate/get_deployment_certificates.py +3 -0
- pulumi_oci/goldengate/get_trail_files.py +2 -2
- pulumi_oci/goldengate/get_trail_sequences.py +2 -2
- pulumi_oci/goldengate/outputs.py +720 -12
- 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.39.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/RECORD +48 -40
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.38.0a1717136770.dist-info → pulumi_oci-1.39.0.dist-info}/top_level.txt +0 -0
@@ -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
|
|
pulumi_oci/jms/outputs.py
CHANGED
@@ -3159,7 +3159,7 @@ class GetJavaDownloadsJavaDownloadRecordsJavaDownloadRecordCollectionItemResult(
|
|
3159
3159
|
:param str family_display_name: The Java family display name.
|
3160
3160
|
:param str family_version: Unique Java family version identifier.
|
3161
3161
|
:param str os_family: Target Operating System family of the artifact.
|
3162
|
-
:param str package_type: The package type(typically the file extension) of the artifact.
|
3162
|
+
:param str package_type: The package type (typically the file extension) of the artifact.
|
3163
3163
|
:param str package_type_detail: Packaging type detail of the artifact.
|
3164
3164
|
:param str release_version: Unique Java release version identifier.
|
3165
3165
|
:param str time_downloaded: Timestamp of download.
|
@@ -3227,7 +3227,7 @@ class GetJavaDownloadsJavaDownloadRecordsJavaDownloadRecordCollectionItemResult(
|
|
3227
3227
|
@pulumi.getter(name="packageType")
|
3228
3228
|
def package_type(self) -> str:
|
3229
3229
|
"""
|
3230
|
-
The package type(typically the file extension) of the artifact.
|
3230
|
+
The package type (typically the file extension) of the artifact.
|
3231
3231
|
"""
|
3232
3232
|
return pulumi.get(self, "package_type")
|
3233
3233
|
|
@@ -3348,6 +3348,8 @@ class GetJavaDownloadsJavaDownloadReportsJavaDownloadReportCollectionItemResult(
|
|
3348
3348
|
format: str,
|
3349
3349
|
freeform_tags: Mapping[str, Any],
|
3350
3350
|
id: str,
|
3351
|
+
sort_by: str,
|
3352
|
+
sort_order: str,
|
3351
3353
|
state: str,
|
3352
3354
|
system_tags: Mapping[str, Any],
|
3353
3355
|
time_created: str,
|
@@ -3366,7 +3368,9 @@ class GetJavaDownloadsJavaDownloadReportsJavaDownloadReportCollectionItemResult(
|
|
3366
3368
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Java download report.
|
3367
3369
|
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
3368
3370
|
:param 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"}`
|
3369
|
-
:param str time_created: The time the Java download report was created
|
3371
|
+
:param 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.
|
3372
|
+
:param str time_end: The end time until when the download records are included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
3373
|
+
:param str time_start: The start time from when the download records are included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
3370
3374
|
"""
|
3371
3375
|
pulumi.set(__self__, "checksum_type", checksum_type)
|
3372
3376
|
pulumi.set(__self__, "checksum_value", checksum_value)
|
@@ -3378,6 +3382,8 @@ class GetJavaDownloadsJavaDownloadReportsJavaDownloadReportCollectionItemResult(
|
|
3378
3382
|
pulumi.set(__self__, "format", format)
|
3379
3383
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
3380
3384
|
pulumi.set(__self__, "id", id)
|
3385
|
+
pulumi.set(__self__, "sort_by", sort_by)
|
3386
|
+
pulumi.set(__self__, "sort_order", sort_order)
|
3381
3387
|
pulumi.set(__self__, "state", state)
|
3382
3388
|
pulumi.set(__self__, "system_tags", system_tags)
|
3383
3389
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -3464,6 +3470,16 @@ class GetJavaDownloadsJavaDownloadReportsJavaDownloadReportCollectionItemResult(
|
|
3464
3470
|
"""
|
3465
3471
|
return pulumi.get(self, "id")
|
3466
3472
|
|
3473
|
+
@property
|
3474
|
+
@pulumi.getter(name="sortBy")
|
3475
|
+
def sort_by(self) -> str:
|
3476
|
+
return pulumi.get(self, "sort_by")
|
3477
|
+
|
3478
|
+
@property
|
3479
|
+
@pulumi.getter(name="sortOrder")
|
3480
|
+
def sort_order(self) -> str:
|
3481
|
+
return pulumi.get(self, "sort_order")
|
3482
|
+
|
3467
3483
|
@property
|
3468
3484
|
@pulumi.getter
|
3469
3485
|
def state(self) -> str:
|
@@ -3484,18 +3500,24 @@ class GetJavaDownloadsJavaDownloadReportsJavaDownloadReportCollectionItemResult(
|
|
3484
3500
|
@pulumi.getter(name="timeCreated")
|
3485
3501
|
def time_created(self) -> str:
|
3486
3502
|
"""
|
3487
|
-
The time the Java download report was created
|
3503
|
+
The time the Java download report was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
3488
3504
|
"""
|
3489
3505
|
return pulumi.get(self, "time_created")
|
3490
3506
|
|
3491
3507
|
@property
|
3492
3508
|
@pulumi.getter(name="timeEnd")
|
3493
3509
|
def time_end(self) -> str:
|
3510
|
+
"""
|
3511
|
+
The end time until when the download records are included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
3512
|
+
"""
|
3494
3513
|
return pulumi.get(self, "time_end")
|
3495
3514
|
|
3496
3515
|
@property
|
3497
3516
|
@pulumi.getter(name="timeStart")
|
3498
3517
|
def time_start(self) -> str:
|
3518
|
+
"""
|
3519
|
+
The start time from when the download records are included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
3520
|
+
"""
|
3499
3521
|
return pulumi.get(self, "time_start")
|
3500
3522
|
|
3501
3523
|
|
@@ -3695,10 +3717,10 @@ class GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemResult(di
|
|
3695
3717
|
:param str lifecycle_details: Possible lifecycle substates.
|
3696
3718
|
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
3697
3719
|
:param 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"}`
|
3698
|
-
:param str time_created: The time the JavaDownloadToken was created
|
3699
|
-
:param str time_expires: The expiry time of the JavaDownloadToken
|
3700
|
-
:param str time_last_used: The time the JavaDownloadToken was last used for download
|
3701
|
-
:param str time_updated: The time the JavaDownloadToken was updated
|
3720
|
+
:param str time_created: The time the JavaDownloadToken was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
3721
|
+
:param str time_expires: The expiry time of the JavaDownloadToken, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
3722
|
+
:param 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.
|
3723
|
+
:param str time_updated: The time the JavaDownloadToken was updated, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
3702
3724
|
:param str value: Unique JavaDownloadToken value.
|
3703
3725
|
"""
|
3704
3726
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -3837,7 +3859,7 @@ class GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemResult(di
|
|
3837
3859
|
@pulumi.getter(name="timeCreated")
|
3838
3860
|
def time_created(self) -> str:
|
3839
3861
|
"""
|
3840
|
-
The time the JavaDownloadToken was created
|
3862
|
+
The time the JavaDownloadToken was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
3841
3863
|
"""
|
3842
3864
|
return pulumi.get(self, "time_created")
|
3843
3865
|
|
@@ -3845,7 +3867,7 @@ class GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemResult(di
|
|
3845
3867
|
@pulumi.getter(name="timeExpires")
|
3846
3868
|
def time_expires(self) -> str:
|
3847
3869
|
"""
|
3848
|
-
The expiry time of the JavaDownloadToken
|
3870
|
+
The expiry time of the JavaDownloadToken, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
3849
3871
|
"""
|
3850
3872
|
return pulumi.get(self, "time_expires")
|
3851
3873
|
|
@@ -3853,7 +3875,7 @@ class GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemResult(di
|
|
3853
3875
|
@pulumi.getter(name="timeLastUsed")
|
3854
3876
|
def time_last_used(self) -> str:
|
3855
3877
|
"""
|
3856
|
-
The time the JavaDownloadToken was last used for download
|
3878
|
+
The time the JavaDownloadToken was last used for download, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
3857
3879
|
"""
|
3858
3880
|
return pulumi.get(self, "time_last_used")
|
3859
3881
|
|
@@ -3861,7 +3883,7 @@ class GetJavaDownloadsJavaDownloadTokensJavaDownloadTokenCollectionItemResult(di
|
|
3861
3883
|
@pulumi.getter(name="timeUpdated")
|
3862
3884
|
def time_updated(self) -> str:
|
3863
3885
|
"""
|
3864
|
-
The time the JavaDownloadToken was updated
|
3886
|
+
The time the JavaDownloadToken was updated, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
3865
3887
|
"""
|
3866
3888
|
return pulumi.get(self, "time_updated")
|
3867
3889
|
|
@@ -4099,8 +4121,8 @@ class GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCol
|
|
4099
4121
|
:param str license_type: Unique Java license type.
|
4100
4122
|
:param str state: The current state of the JavaLicenseAcceptanceRecord.
|
4101
4123
|
:param 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"}`
|
4102
|
-
:param str time_accepted: The date and time of license acceptance(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
4103
|
-
:param str time_last_updated: The date and time of last update(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
4124
|
+
:param str time_accepted: The date and time of license acceptance (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
4125
|
+
:param str time_last_updated: The date and time of last update (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
4104
4126
|
"""
|
4105
4127
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
4106
4128
|
pulumi.set(__self__, "created_bies", created_bies)
|
@@ -4199,7 +4221,7 @@ class GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCol
|
|
4199
4221
|
@pulumi.getter(name="timeAccepted")
|
4200
4222
|
def time_accepted(self) -> str:
|
4201
4223
|
"""
|
4202
|
-
The date and time of license acceptance(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
4224
|
+
The date and time of license acceptance (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
4203
4225
|
"""
|
4204
4226
|
return pulumi.get(self, "time_accepted")
|
4205
4227
|
|
@@ -4207,7 +4229,7 @@ class GetJavaDownloadsJavaLicenseAcceptanceRecordsJavaLicenseAcceptanceRecordCol
|
|
4207
4229
|
@pulumi.getter(name="timeLastUpdated")
|
4208
4230
|
def time_last_updated(self) -> str:
|
4209
4231
|
"""
|
4210
|
-
The date and time of last update(formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
4232
|
+
The date and time of last update (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
4211
4233
|
"""
|
4212
4234
|
return pulumi.get(self, "time_last_updated")
|
4213
4235
|
|
@@ -604,6 +604,7 @@ class BackendSetSslConfigurationArgs:
|
|
604
604
|
* TLSv1
|
605
605
|
* TLSv1.1
|
606
606
|
* TLSv1.2
|
607
|
+
* TLSv1.3
|
607
608
|
|
608
609
|
If this field is not specified, TLSv1.2 is the default.
|
609
610
|
|
@@ -703,6 +704,7 @@ class BackendSetSslConfigurationArgs:
|
|
703
704
|
* TLSv1
|
704
705
|
* TLSv1.1
|
705
706
|
* TLSv1.2
|
707
|
+
* TLSv1.3
|
706
708
|
|
707
709
|
If this field is not specified, TLSv1.2 is the default.
|
708
710
|
|
@@ -859,6 +861,7 @@ class ListenerSslConfigurationArgs:
|
|
859
861
|
* TLSv1
|
860
862
|
* TLSv1.1
|
861
863
|
* TLSv1.2
|
864
|
+
* TLSv1.3
|
862
865
|
|
863
866
|
If this field is not specified, TLSv1.2 is the default.
|
864
867
|
|
@@ -973,6 +976,7 @@ class ListenerSslConfigurationArgs:
|
|
973
976
|
* TLSv1
|
974
977
|
* TLSv1.1
|
975
978
|
* TLSv1.2
|
979
|
+
* TLSv1.3
|
976
980
|
|
977
981
|
If this field is not specified, TLSv1.2 is the default.
|
978
982
|
|
@@ -661,6 +661,7 @@ class BackendSetSslConfiguration(dict):
|
|
661
661
|
* TLSv1
|
662
662
|
* TLSv1.1
|
663
663
|
* TLSv1.2
|
664
|
+
* TLSv1.3
|
664
665
|
|
665
666
|
If this field is not specified, TLSv1.2 is the default.
|
666
667
|
|
@@ -748,6 +749,7 @@ class BackendSetSslConfiguration(dict):
|
|
748
749
|
* TLSv1
|
749
750
|
* TLSv1.1
|
750
751
|
* TLSv1.2
|
752
|
+
* TLSv1.3
|
751
753
|
|
752
754
|
If this field is not specified, TLSv1.2 is the default.
|
753
755
|
|
@@ -926,6 +928,7 @@ class ListenerSslConfiguration(dict):
|
|
926
928
|
* TLSv1
|
927
929
|
* TLSv1.1
|
928
930
|
* TLSv1.2
|
931
|
+
* TLSv1.3
|
929
932
|
|
930
933
|
If this field is not specified, TLSv1.2 is the default.
|
931
934
|
|
@@ -1024,6 +1027,7 @@ class ListenerSslConfiguration(dict):
|
|
1024
1027
|
* TLSv1
|
1025
1028
|
* TLSv1.1
|
1026
1029
|
* TLSv1.2
|
1030
|
+
* TLSv1.3
|
1027
1031
|
|
1028
1032
|
If this field is not specified, TLSv1.2 is the default.
|
1029
1033
|
|
pulumi_oci/pulumi-plugin.json
CHANGED