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/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. An RFC3339 formatted datetime string.
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. An RFC3339 formatted datetime string.
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. An RFC3339 formatted datetime string.
3699
- :param str time_expires: The expiry time of the JavaDownloadToken. An RFC3339 formatted datetime string.
3700
- :param str time_last_used: The time the JavaDownloadToken was last used for download. An RFC3339 formatted datetime string.
3701
- :param str time_updated: The time the JavaDownloadToken was updated. An RFC3339 formatted datetime string.
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. An RFC3339 formatted datetime string.
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. An RFC3339 formatted datetime string.
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. An RFC3339 formatted datetime string.
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. An RFC3339 formatted datetime string.
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
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "1.38.0-alpha.1717136770"
4
+ "version": "1.38.0-alpha.1717181239"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_oci
3
- Version: 1.38.0a1717136770
3
+ Version: 1.38.0a1717181239
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com
@@ -1,7 +1,7 @@
1
- pulumi_oci/__init__.py,sha256=fZxifQSAbkjxERPe2sSY6EXytmjCzBLeCBnW6TM6GSk,158365
1
+ pulumi_oci/__init__.py,sha256=EgmNCTX-yjYfKqA1wtSrVddLPXzf7Awo9AoxcK7JciM,158599
2
2
  pulumi_oci/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
3
3
  pulumi_oci/provider.py,sha256=9MXW-Zeh5jJ_T7w9PgSlFcu0s4_tylBZIVYdFLmo_fU,23922
4
- pulumi_oci/pulumi-plugin.json,sha256=5soybwz5p2uaSxciNIozJ0j3EdAFBp2AiQNlFb3iPFU,80
4
+ pulumi_oci/pulumi-plugin.json,sha256=TRXGresspAU-HRQrYHp8FTqWPXRkR3EzqnYIiab1pfk,80
5
5
  pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
7
7
  pulumi_oci/adm/_inputs.py,sha256=nMRnDJd64H5GAJ9ybIPjR9fsDdJFyCdHYBir_ADSrT4,53283
@@ -203,13 +203,14 @@ pulumi_oci/bastion/get_session.py,sha256=v9dzvHhlz2MOZGJo16izdWcgl5PC_9k_GMBF-Vh
203
203
  pulumi_oci/bastion/get_sessions.py,sha256=eII6RBQZh_-ZOr8NMEVRqlZ3urFQ1pEptU5jw87NZlc,7874
204
204
  pulumi_oci/bastion/outputs.py,sha256=FpuoZdFmTFuQ8nozQ2VVH72zS8EOh_5P8rTPCvcFeZU,37588
205
205
  pulumi_oci/bastion/session.py,sha256=p2dWb88uvbIq7-UvUI5y2wFG6zD1Oqm4IA8Xik1c2Qk,31873
206
- pulumi_oci/bigdataservice/__init__.py,sha256=NXDGSmIxDSbZJEA0aQdz6tLv6pFwihsRpKTWgvlOv9I,1098
207
- pulumi_oci/bigdataservice/_inputs.py,sha256=bI2yUWajAugbX4qp08PnoJ40zdFEheJEoYQCDFXmad4,133683
206
+ pulumi_oci/bigdataservice/__init__.py,sha256=cfK9F0bg8e4EWvHKVfGmcZLVDxJui2Updr0sYM5b0QM,1142
207
+ pulumi_oci/bigdataservice/_inputs.py,sha256=-1QnK93l-EcNTE_zd8j2v2V7rZX6dMF_nd1IAONe-SA,138557
208
208
  pulumi_oci/bigdataservice/auto_scaling_configuration.py,sha256=a7tEks44Sn6NgVHIktjKVAxkuS49CoxzN2Hq32uegAQ,40510
209
209
  pulumi_oci/bigdataservice/bds_instance.py,sha256=lPnkhrv6UfaaQoVtiYAYvEfwMXGSgSswKpwCbhDU-Zg,75201
210
210
  pulumi_oci/bigdataservice/bds_instance_api_key.py,sha256=NvBH9YqnOBaq3-UYMypk1hK0TLiq_6HLQ2hYjzRMpf4,25252
211
211
  pulumi_oci/bigdataservice/bds_instance_metastore_config.py,sha256=NDLpOHfKXM7Pc-9Bvop4Dl4-kExChH5UXAxWYXQagdQ,28741
212
212
  pulumi_oci/bigdataservice/bds_instance_operation_certificate_managements_management.py,sha256=z-j6nuM8mm7Lv5oGxs2f_BZg2R27rhAvjUBZ1m8xUc4,33730
213
+ pulumi_oci/bigdataservice/bds_instance_os_patch_action.py,sha256=cO4U5IiTSho7XaAlnMdhkcZFjpKqMD_eGKUXiKJcBKw,11417
213
214
  pulumi_oci/bigdataservice/bds_instance_patch_action.py,sha256=b4iePJd844AluldBxqHSbAZ0jIcYZoJhRZWbFvRMt6o,13080
214
215
  pulumi_oci/bigdataservice/get_auto_scaling_configuration.py,sha256=60WLewCGPq1XWI40FFmIOxitrA8tvJXUdxaR6SCaIQM,10285
215
216
  pulumi_oci/bigdataservice/get_auto_scaling_configurations.py,sha256=-SE7dG2bDIxHj5FqGhKCcv__ktsIq57dv1EvpD-GnPY,6434
@@ -223,7 +224,7 @@ pulumi_oci/bigdataservice/get_bds_instance_metastore_configs.py,sha256=7RUO8omYF
223
224
  pulumi_oci/bigdataservice/get_bds_instance_patch_histories.py,sha256=PgLcnXG-YaZyUbW2xDy5gtRw_7eMWka5_npQi2F1fIg,8019
224
225
  pulumi_oci/bigdataservice/get_bds_instance_patches.py,sha256=CrhGR1zM2zzHfcBLiov1WnW3qb9ZO7KmrQNTehHCjug,4813
225
226
  pulumi_oci/bigdataservice/get_bds_instances.py,sha256=BBJKNo5mVAU37UAU1hrafmLetxmT64bFGKz1phiwB0Y,6540
226
- pulumi_oci/bigdataservice/outputs.py,sha256=jNzginQ2hKUEKtqrI5_WvfKpigjvzu0DtMc8Q8IXLx0,313568
227
+ pulumi_oci/bigdataservice/outputs.py,sha256=MURhXBzE64o5h7PouHM_8yDVdpjq8S-YLcVsSFfk4Xw,321498
227
228
  pulumi_oci/blockchain/__init__.py,sha256=b2CLshPLLmnO6Om3TLPGauDJ2z_cYIHxtBonK4zQJEs,610
228
229
  pulumi_oci/blockchain/_inputs.py,sha256=JqE3ivHgQxJlWqZmgHSip04a9NnyOCmIr7eGrFHzcqo,20903
229
230
  pulumi_oci/blockchain/blockchain_platform.py,sha256=P9SFc4lDHJ8PTGIeDNvNid8mFnZJ2Ul2dWmc1cHsAfA,62329
@@ -1796,13 +1797,13 @@ pulumi_oci/jms/get_fleets.py,sha256=781jSZ3pXJnY725myGCi4oUYV7Nn5vND3VnhSAXHFGE,
1796
1797
  pulumi_oci/jms/get_installation_site.py,sha256=GQqKx594Z-cfzAto5QH-g_riupqaFFfOwNWts-XPVaA,15160
1797
1798
  pulumi_oci/jms/get_installation_sites.py,sha256=QSLfO--kd6dEXmNTPEUL34nO0R-M9JGYDmyvTnCQ86M,16273
1798
1799
  pulumi_oci/jms/get_java_downloads_java_download_records.py,sha256=RrC7Aw-838qtz79HtWUWjm60m19fr0Y9B8G8zHL6NBw,13726
1799
- pulumi_oci/jms/get_java_downloads_java_download_report.py,sha256=ukE8bh-f2RTf8RKjH9MnGJbtyoOlo80blX7EzbIomI4,12432
1800
+ pulumi_oci/jms/get_java_downloads_java_download_report.py,sha256=-TAv_SoYrI0oNV2I7Z54gBCK-6TMTWxG3E-7NOWTSSA,13662
1800
1801
  pulumi_oci/jms/get_java_downloads_java_download_report_content.py,sha256=ytObM1V5gDe-N0KFFWGDOp-Fxhi5gbP9ENSUh8wsb5Q,4303
1801
1802
  pulumi_oci/jms/get_java_downloads_java_download_reports.py,sha256=y8c9USlKZzdkhsYFa_ZMzxERmvG6l5zreZXvXT6FzHQ,9059
1802
- pulumi_oci/jms/get_java_downloads_java_download_token.py,sha256=EijE9YhMaa8hI_9iqej8iv8OoGWKjJICGfbvURZTj3w,14836
1803
+ pulumi_oci/jms/get_java_downloads_java_download_token.py,sha256=pVwdgOJrC8MN-iwfVk5Y-EF2lYOV4Smhka6pmjrJIUY,15084
1803
1804
  pulumi_oci/jms/get_java_downloads_java_download_tokens.py,sha256=NluFY2UqEtySs_wQNmqSnglJJ1hUjpGWv1LLxdLt4QQ,11696
1804
1805
  pulumi_oci/jms/get_java_downloads_java_license.py,sha256=5bKViZBVwFKNLanIdDhRGuzT2Clu2mI34NHoVjxaw64,4749
1805
- pulumi_oci/jms/get_java_downloads_java_license_acceptance_record.py,sha256=J_3cO7AJyqDAT8eTiaHhEW5lM74jwQN8gyCS-0R9fww,12009
1806
+ pulumi_oci/jms/get_java_downloads_java_license_acceptance_record.py,sha256=Uu0QQotUWxkzr9IaoBYT1eFMT3tiYe-2UIpz6Hp1Y-0,12011
1806
1807
  pulumi_oci/jms/get_java_downloads_java_license_acceptance_records.py,sha256=QzrnlFEEoYb_Pp1ww7gSKRSr5OwWasBhlpJPOe-iAh8,10378
1807
1808
  pulumi_oci/jms/get_java_downloads_java_licenses.py,sha256=mwhdHIDEWkwrmKioIckt_OB-JVIMs04TcbmkvU_CoZo,6279
1808
1809
  pulumi_oci/jms/get_java_families.py,sha256=0DJdHON22Wx50iDwZoobpgVe0kXWyXYiNMXM17-puVU,7384
@@ -1811,10 +1812,10 @@ pulumi_oci/jms/get_java_release.py,sha256=TGBh_TE93AUk0V_4GiPLRGPRECbvmdV3QPV9gg
1811
1812
  pulumi_oci/jms/get_java_releases.py,sha256=HunekKcPNawgZGbPjmvaWEsEQLXVLycAAHposwX7Dks,8799
1812
1813
  pulumi_oci/jms/get_list_jre_usage.py,sha256=Vb7DQQ3fMPkvHZPbSzyT-cuzk-R-by5pANw1AC20QkU,9381
1813
1814
  pulumi_oci/jms/get_summarize_resource_inventory.py,sha256=RU5RPM5qYbomIdN8vdTTaUuENZL9zB5IFIPtp9Aa6zQ,9312
1814
- pulumi_oci/jms/java_downloads_java_download_report.py,sha256=lYvvHxlXyDw8_4mK5cHTm4e8mhE1i-72LsNxWDvx-SU,31873
1815
- pulumi_oci/jms/java_downloads_java_download_token.py,sha256=Gr1k5vxKfZ8hq44DHALt0gbEk-qm0ldKdXQ8Y6hn2jo,43498
1816
- pulumi_oci/jms/java_downloads_java_license_acceptance_record.py,sha256=6qyPW5cBhZoa3VB4rYx6W3y0PlSIaPQn9YRi2-il2QM,28259
1817
- pulumi_oci/jms/outputs.py,sha256=6gydiXLc1Nt3jc5JbWBZgxPF8pDaob-ny_aBUC0ljDg,252823
1815
+ pulumi_oci/jms/java_downloads_java_download_report.py,sha256=PiiM9-xMPps1HNLj9qtFeltiogLELMXQ5YqTTS6dOkc,37239
1816
+ pulumi_oci/jms/java_downloads_java_download_token.py,sha256=vA3skhGaznpOBgNI7udOPsDADUlvlIjhL4HTRXPylXo,45184
1817
+ pulumi_oci/jms/java_downloads_java_license_acceptance_record.py,sha256=E3q9eIPRw2mzMmauUQHxAGmILzfGTnS7eQxvs9Rz_zM,30141
1818
+ pulumi_oci/jms/outputs.py,sha256=_dD8gMpsc9HdgeIfHv7MzhA_qc5trFXKk5KqlkWcKtE,254561
1818
1819
  pulumi_oci/kms/__init__.py,sha256=FORCQ_KwYzL1Hforp8BeGi5GenxORzJYVl51JzaRyTU,968
1819
1820
  pulumi_oci/kms/_inputs.py,sha256=iWU-hXIprsQTrZBnUS0rtTyxTDxvGk0T4p73Hw2bZxo,41777
1820
1821
  pulumi_oci/kms/ekms_private_endpoint.py,sha256=0-ShnAaGxsHxTz-MMoDg7EMpQGkCwTcBXkxxn9U5HaQ,33194
@@ -1866,7 +1867,7 @@ pulumi_oci/limits/get_services.py,sha256=ibYVcHKg46zGxuoHMy482Mf8MwoLlQ0ftNkrLRq
1866
1867
  pulumi_oci/limits/outputs.py,sha256=4xzrDTB9kqJN3I3qPzAWee2WjZAhwd7vMZ3oxbx6ZRE,22754
1867
1868
  pulumi_oci/limits/quota.py,sha256=hZrhH9FPlGgGxQzB2ZtX2Ha-7uwepbWhHnCm8mg1dIo,29555
1868
1869
  pulumi_oci/loadbalancer/__init__.py,sha256=MEaFdbTIsnehC12wXAUwvJcOEZM4WCItCZ52hjWqJWA,1231
1869
- pulumi_oci/loadbalancer/_inputs.py,sha256=AsKZkVkKa5fyDuWxs4qkMPGc6kuVyEm8OA7wqrXhIPw,139048
1870
+ pulumi_oci/loadbalancer/_inputs.py,sha256=J6EqBFTtXCAmVRU6kK0T_mr4d1c1iFg7QozgyWVc1a0,139138
1870
1871
  pulumi_oci/loadbalancer/backend.py,sha256=Q54YSbDq1KRKsYdt0EN232HQUS7aWTZa1ctq8p-KV_E,35364
1871
1872
  pulumi_oci/loadbalancer/backend_set.py,sha256=wbUIs8hvr1KCCrXDUsSAgeBVgVUQ2awGoFjKA1D1ZG8,64160
1872
1873
  pulumi_oci/loadbalancer/certificate.py,sha256=vnjWLTNnIaQvpeGFVN40IBjxwN61oFgWdmWpevmHYLI,31966
@@ -1893,7 +1894,7 @@ pulumi_oci/loadbalancer/hostname.py,sha256=pJ2uFqd3yvQKZknoZqVpmE0ZocBiu8d5GaMNh
1893
1894
  pulumi_oci/loadbalancer/listener.py,sha256=XTEOCYEnW20W_KBllmGQrnZs-wtgG-PUG3_K5IBsKuI,41617
1894
1895
  pulumi_oci/loadbalancer/load_balancer.py,sha256=R4-s7EadOoJ62pORjilvMAmlqqhWgAnpSmSLqFpDXtY,73103
1895
1896
  pulumi_oci/loadbalancer/load_balancer_routing_policy.py,sha256=d-PwEhjNV--G-679g43Si2-zYl7Xn7D8tKxgze2YI9o,18474
1896
- pulumi_oci/loadbalancer/outputs.py,sha256=FhfbxxkqNs8GlO2b1PZjzUfPd_2DbZV522Oz97CLHi8,263333
1897
+ pulumi_oci/loadbalancer/outputs.py,sha256=ZFoNATiEuGwnv6LuYUXl_Q0FmrDfo0e_0IAXTjpH-nY,263423
1897
1898
  pulumi_oci/loadbalancer/path_route_set.py,sha256=raq1HEOJ03xhUIDtK6pTZSkBkZizwBSGCDplhRcguEY,14909
1898
1899
  pulumi_oci/loadbalancer/rule_set.py,sha256=oQmuSBhLiM2F419trBuAt1SLLjjWI3vNqH4QxaTmW2w,19272
1899
1900
  pulumi_oci/loadbalancer/ssl_cipher_suite.py,sha256=TB7iW-BpEd9sM2k78vUdESKrerdeN-UkVZK8mK8krW8,18984
@@ -2734,7 +2735,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=2EXX-nZiSRnou_ywPuVnvH9CT
2734
2735
  pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=iXFu2wfolxLPGoRpC9PvrbsMvIURoaPHkg6WVLdoEd8,14234
2735
2736
  pulumi_oci/waf/network_address_list.py,sha256=Burm-luOi53fUUOZVqwfKueKEDWQw8789Ir0mUblOiE,33054
2736
2737
  pulumi_oci/waf/outputs.py,sha256=IibDb-778q6fJDgC9y7kgFTv6CEz8lMNaSd1c3Su9uc,227138
2737
- pulumi_oci-1.38.0a1717136770.dist-info/METADATA,sha256=ZxQLVmzQ3fD0jyAETj4xqi4K-imAZ9lEhA4luzsCS54,3899
2738
- pulumi_oci-1.38.0a1717136770.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
2739
- pulumi_oci-1.38.0a1717136770.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
2740
- pulumi_oci-1.38.0a1717136770.dist-info/RECORD,,
2738
+ pulumi_oci-1.38.0a1717181239.dist-info/METADATA,sha256=N6SDHT_hChRHNoWPB-PRy-2Ws2Q5fbWHWQouZ6LaWVI,3899
2739
+ pulumi_oci-1.38.0a1717181239.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
2740
+ pulumi_oci-1.38.0a1717181239.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
2741
+ pulumi_oci-1.38.0a1717181239.dist-info/RECORD,,