pulumi-oci 2.13.0a1729198151__py3-none-any.whl → 2.14.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 +24 -19
- pulumi_oci/containerengine/_inputs.py +341 -0
- pulumi_oci/containerengine/cluster.py +64 -0
- pulumi_oci/containerengine/get_cluster.py +12 -1
- pulumi_oci/containerengine/outputs.py +582 -0
- pulumi_oci/core/_inputs.py +373 -37
- pulumi_oci/core/boot_volume.py +90 -5
- pulumi_oci/core/get_block_volume_replica.py +15 -1
- pulumi_oci/core/get_boot_volume.py +15 -4
- pulumi_oci/core/get_boot_volume_replica.py +15 -1
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/get_volume.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_configuration.py +4 -0
- pulumi_oci/core/outputs.py +738 -53
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/core/volume.py +110 -12
- pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
- pulumi_oci/core/volume_group.py +56 -5
- pulumi_oci/database/_inputs.py +642 -0
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +75 -0
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +29 -1
- pulumi_oci/database/get_autonomous_databases.py +22 -28
- pulumi_oci/database/outputs.py +1669 -86
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
- pulumi_oci/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +85 -1
- pulumi_oci/datascience/get_models.py +5 -0
- pulumi_oci/datascience/model.py +206 -66
- pulumi_oci/datascience/outputs.py +759 -0
- pulumi_oci/desktops/_inputs.py +175 -13
- pulumi_oci/desktops/desktop_pool.py +67 -0
- pulumi_oci/desktops/get_desktop_pool.py +16 -1
- pulumi_oci/desktops/outputs.py +339 -18
- pulumi_oci/dns/__init__.py +2 -0
- pulumi_oci/dns/_inputs.py +1157 -12
- pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
- pulumi_oci/dns/get_records.py +45 -13
- pulumi_oci/dns/get_resolver.py +8 -6
- pulumi_oci/dns/get_resolver_endpoint.py +8 -6
- pulumi_oci/dns/get_resolver_endpoints.py +2 -2
- pulumi_oci/dns/get_resolvers.py +12 -12
- pulumi_oci/dns/get_rrset.py +16 -16
- pulumi_oci/dns/get_rrsets.py +12 -10
- pulumi_oci/dns/get_view.py +8 -4
- pulumi_oci/dns/get_views.py +12 -12
- pulumi_oci/dns/get_zones.py +33 -13
- pulumi_oci/dns/outputs.py +1388 -79
- pulumi_oci/dns/record.py +12 -12
- pulumi_oci/dns/resolver.py +7 -7
- pulumi_oci/dns/resolver_endpoint.py +2 -2
- pulumi_oci/dns/rrset.py +50 -41
- pulumi_oci/dns/zone.py +176 -17
- pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
- pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
- pulumi_oci/filestorage/_inputs.py +651 -0
- pulumi_oci/filestorage/export.py +96 -3
- pulumi_oci/filestorage/file_system.py +93 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
- pulumi_oci/filestorage/get_outbound_connector.py +26 -1
- pulumi_oci/filestorage/get_replication.py +27 -1
- pulumi_oci/filestorage/get_snapshot.py +27 -1
- pulumi_oci/filestorage/mount_target.py +108 -0
- pulumi_oci/filestorage/outbound_connector.py +93 -0
- pulumi_oci/filestorage/outputs.py +1218 -2
- pulumi_oci/filestorage/replication.py +95 -0
- pulumi_oci/filestorage/snapshot.py +97 -2
- pulumi_oci/goldengate/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +165 -0
- pulumi_oci/goldengate/connection.py +49 -35
- pulumi_oci/goldengate/database_registration.py +7 -7
- pulumi_oci/goldengate/deployment.py +79 -4
- pulumi_oci/goldengate/get_deployment.py +30 -2
- pulumi_oci/goldengate/get_deployment_environments.py +144 -0
- pulumi_oci/goldengate/outputs.py +409 -2
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/RECORD +88 -93
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/WHEEL +1 -1
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=BR4IMtd0MW31TlJWrH_EaOH0c_MpPh9F1sGi643z7kU,170209
|
2
2
|
pulumi_oci/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
3
3
|
pulumi_oci/provider.py,sha256=L04-4ahVUIjPUidGY7-4m7y0-gX_oHcgpIJSRYRJET4,24096
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=jr3PlyEjyYZLiZy2XIy569TrmzgCj75PUT7KnzPT4EQ,63
|
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=YnlFWcwYsWjjrUbroAeHpnljrt9mAPqMtutbJnKVRCk,69792
|
@@ -408,9 +408,9 @@ pulumi_oci/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030
|
|
408
408
|
pulumi_oci/config/__init__.pyi,sha256=u-mzKvOTiMfI84KsFpX9aZXnBBo5IrmGoKW5DpYtHOY,2800
|
409
409
|
pulumi_oci/config/vars.py,sha256=lF28g7ubS_m7dmUz-BSXrHhRv_E7tbOB_6PgX64eSFg,4329
|
410
410
|
pulumi_oci/containerengine/__init__.py,sha256=SdyuqHYrpB6AkkA98SaO-K5EOeDlCqxREshS6cITv7w,1332
|
411
|
-
pulumi_oci/containerengine/_inputs.py,sha256=
|
411
|
+
pulumi_oci/containerengine/_inputs.py,sha256=3jUk0cFUVfuTMb8YlsUxi4XjwixWNetQTkFbvu8t6_k,240710
|
412
412
|
pulumi_oci/containerengine/addon.py,sha256=ISg-kEFZ2shk3zpC6L25-hkZpd_jRjy9Jk4FdsSbBPg,21607
|
413
|
-
pulumi_oci/containerengine/cluster.py,sha256=
|
413
|
+
pulumi_oci/containerengine/cluster.py,sha256=0fhCh65MttT3CgcYtXDGd_3CG_HC34ghkcQtm8CBWNQ,56176
|
414
414
|
pulumi_oci/containerengine/cluster_complete_credential_rotation_management.py,sha256=djNxV8Ezp2QI195gIZ4JY2av8_-EV_A8hgmhihTqzJ0,9157
|
415
415
|
pulumi_oci/containerengine/cluster_start_credential_rotation_management.py,sha256=T0uorpfS9YPFObM-5Qoqa_vgQe8piGzRc4pAvAacrwM,12502
|
416
416
|
pulumi_oci/containerengine/cluster_workload_mapping.py,sha256=Zb1buFg1fJFqqksdtjA8ZutRwjpCaTpxT59BDWxIOug,24801
|
@@ -418,7 +418,7 @@ pulumi_oci/containerengine/container_instance.py,sha256=YQOltaw6CJyMYtkoAGKAcf2m
|
|
418
418
|
pulumi_oci/containerengine/get_addon.py,sha256=jIOosR_Ro9gklF2zzQys-3_C3yH6UZG7zxA5MNLLI6M,8973
|
419
419
|
pulumi_oci/containerengine/get_addon_options.py,sha256=nQaNWdHFnb2RHCdfXZsqchLQXGqKn5M69tMBYZi-CuQ,6567
|
420
420
|
pulumi_oci/containerengine/get_addons.py,sha256=VXtD_L4tZmWLX4DIEExckS-FUSApUHV0vahR8wXT-3s,4985
|
421
|
-
pulumi_oci/containerengine/get_cluster.py,sha256=
|
421
|
+
pulumi_oci/containerengine/get_cluster.py,sha256=prx0eKQ9efLtiuhaTQMcm_PSC478yMrxcGphVnBssYY,15954
|
422
422
|
pulumi_oci/containerengine/get_cluster_credential_rotation_status.py,sha256=bQ86wg2wNbdoKo3LTREw51JKz0NxCc8DXdDV5xz5CbY,7357
|
423
423
|
pulumi_oci/containerengine/get_cluster_kube_config.py,sha256=Vio3O6v3lQycFRPOQLGiFkzNhYrgP_mvlocJatezdpg,7647
|
424
424
|
pulumi_oci/containerengine/get_cluster_option.py,sha256=wP6fTVoBzES98ZNz6uO4qrFQZMC4O4A4EpXqLDZ0ZUY,7014
|
@@ -436,7 +436,7 @@ pulumi_oci/containerengine/get_work_request_errors.py,sha256=Kfuuw-ZLMVR8QiMk8Xj
|
|
436
436
|
pulumi_oci/containerengine/get_work_request_log_entries.py,sha256=-Rzwku_-4-oQhpTZNRvTu2-tsR4Q3fuJlFJagpPw_I4,7030
|
437
437
|
pulumi_oci/containerengine/get_work_requests.py,sha256=2w_9QJI-qMQGK5aGjnOpWkmEulXVKk6CkZoxO8m11x8,9565
|
438
438
|
pulumi_oci/containerengine/node_pool.py,sha256=lLxfW8ddsmcUKbYSN9gtI7luoV_ZtyThP87zFccHgdY,78815
|
439
|
-
pulumi_oci/containerengine/outputs.py,sha256=
|
439
|
+
pulumi_oci/containerengine/outputs.py,sha256=5v2c22wLQ_-1cd7OY2yJL8kUXyY8H0-eD2KzNDbHI60,381505
|
440
440
|
pulumi_oci/containerengine/virtual_node_pool.py,sha256=527e4Zss31IvGAIAVsr4GPw9X44UN8qXRInTpKq1E_I,54454
|
441
441
|
pulumi_oci/containerinstances/__init__.py,sha256=xO0-NxqDfouoMvYJoAIqyDTwJ_OfkHLWfmRRCIJaflE,480
|
442
442
|
pulumi_oci/containerinstances/_inputs.py,sha256=9xAzmOah2OikS_3-h3r08ldn2X9CPtdvseWpsfFVLHQ,3781
|
@@ -446,10 +446,10 @@ pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=L34MKfTVRx
|
|
446
446
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=ja0-ZJhRJjU1ll2twzFw28qv26_Nag_5Mv8Qh-1c_CI,9795
|
447
447
|
pulumi_oci/containerinstances/outputs.py,sha256=OuSGULqIZLd5f1STmJeYEgdh19-ZzC5nHOfpIA_q41o,99616
|
448
448
|
pulumi_oci/core/__init__.py,sha256=f2OKqOZoaPWB24-hh_jmUg0raWU7jen5zWyglJJIb1o,8726
|
449
|
-
pulumi_oci/core/_inputs.py,sha256=
|
449
|
+
pulumi_oci/core/_inputs.py,sha256=C9E6GiX5nrnGuesfvAWxNy6o-T_F0fqr5BEXecFRmqE,1209630
|
450
450
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=w0xmbvF3ZVEoTyxj-v86bDLlY7tVNxDCW7l1xl9TnrY,14622
|
451
451
|
pulumi_oci/core/app_catalog_subscription.py,sha256=0VyKID-oO2-Ko6sntOgA9Iof9g8xh8LYic1VflGYzM0,29260
|
452
|
-
pulumi_oci/core/boot_volume.py,sha256=
|
452
|
+
pulumi_oci/core/boot_volume.py,sha256=PGWxwlIRQqJimDrUgi_NCUXQc-mMlzzpjcJOT02DwMQ,72480
|
453
453
|
pulumi_oci/core/boot_volume_backup.py,sha256=g30NOU8Ys_ecJeUvAldR2lSjze1Hs3VJyB0G-IWb5F8,46913
|
454
454
|
pulumi_oci/core/capture_filter.py,sha256=ZJyuX7HfgFW-Ff4AH2wfaiqZLIPHp08PzeA2ziQauCM,41556
|
455
455
|
pulumi_oci/core/cluster_network.py,sha256=6m3u6zyfF29zdBbqVDTlxnFXKAMiW-s3SYHXDoO5Szo,45503
|
@@ -480,13 +480,13 @@ pulumi_oci/core/get_app_catalog_listing_resource_version.py,sha256=QE6dQmJSyKtus
|
|
480
480
|
pulumi_oci/core/get_app_catalog_listing_resource_versions.py,sha256=X6TSnSiLpzqr5ZT-gn4bEOujAqsBGIUWDkSAZdOnvK4,6626
|
481
481
|
pulumi_oci/core/get_app_catalog_listings.py,sha256=WOSB9GR__dEOibxxkMJooXz47e3mGAxnRYl4koHFg44,8476
|
482
482
|
pulumi_oci/core/get_app_catalog_subscriptions.py,sha256=f55dt_EXSPDnhJz6WzEROxJKK1pVnIBjLP7ZaWDLM7Q,7325
|
483
|
-
pulumi_oci/core/get_block_volume_replica.py,sha256=
|
483
|
+
pulumi_oci/core/get_block_volume_replica.py,sha256=iLi8GD_t5Y2RSpGB4-XU0bhgyiTCHsaEn0op_CMDfZs,12818
|
484
484
|
pulumi_oci/core/get_block_volume_replicas.py,sha256=hPq3MfcsrvBDixROosZMTenyZSF2pOGevKJvRf2QMVo,11278
|
485
|
-
pulumi_oci/core/get_boot_volume.py,sha256=
|
485
|
+
pulumi_oci/core/get_boot_volume.py,sha256=u-BX7oAZMlCcP9ti2YGjX6mRaed-P9OP6bCWLOEEFPY,20596
|
486
486
|
pulumi_oci/core/get_boot_volume_attachments.py,sha256=cFNydHrIBzofV4qJWj9nN_cihSz-6cMoPeSfhh8fRqo,9958
|
487
487
|
pulumi_oci/core/get_boot_volume_backup.py,sha256=uWBqTdJt5840raFrjPdWNmNvnY9CRLLGPx3a6uGdm-o,17034
|
488
488
|
pulumi_oci/core/get_boot_volume_backups.py,sha256=vXTz_Shb5deeVDc8gb_DN2x2J0g1775j7ZML5lD7MRs,11015
|
489
|
-
pulumi_oci/core/get_boot_volume_replica.py,sha256=
|
489
|
+
pulumi_oci/core/get_boot_volume_replica.py,sha256=_F6-6evO1ITaKFcwgOgd0t6V-tqXYapJW0fS-WHr0Ts,13301
|
490
490
|
pulumi_oci/core/get_boot_volume_replicas.py,sha256=dLAY3JfXxxwvKLkHkJJPTXJcpYpvJnKqmIQtTR3V2Kg,11205
|
491
491
|
pulumi_oci/core/get_boot_volumes.py,sha256=Ge7xp8-QTQ_lhHofhmjnyCV5Yth69QgDD61d46nAAQI,8126
|
492
492
|
pulumi_oci/core/get_byoip_allocated_ranges.py,sha256=2IYvvghdpkTHweP5DOaB9QDXe9W1_-6gwMu6Bt6GxT8,6531
|
@@ -548,7 +548,7 @@ pulumi_oci/core/get_image.py,sha256=53Fu6VFf5tITHVPd9XZm9q-ET8AC9fjnS_YY827Jy9g,
|
|
548
548
|
pulumi_oci/core/get_image_shape.py,sha256=SOaH7WT0pwY60SQWEBZaf7Hya1r8OunVLY8-YNSEQiY,6803
|
549
549
|
pulumi_oci/core/get_image_shapes.py,sha256=UuhDcsBAO-yj7-Wt-zI78mSeF_puvSGZIp-la6mX914,5740
|
550
550
|
pulumi_oci/core/get_images.py,sha256=EAQXARGWR5BUqqp7_dw54affFplEHEcpGUVgxwf_uPA,14337
|
551
|
-
pulumi_oci/core/get_instance.py,sha256=
|
551
|
+
pulumi_oci/core/get_instance.py,sha256=Sl5Bo_LHNVOFqGqQVHQ4S2UW3PRT2jUO7GsNsDwz_dE,38293
|
552
552
|
pulumi_oci/core/get_instance_configuration.py,sha256=XprVJjfwQk7pJ3395dUJNu_i-FcuGTIYpcVEbYLGgNM,10719
|
553
553
|
pulumi_oci/core/get_instance_configurations.py,sha256=WudUeYz2FXglGvep4mwn533Y6lhLeG2XZ2wbaV4vMAw,6223
|
554
554
|
pulumi_oci/core/get_instance_console_connections.py,sha256=CZ2PoNajKsAx9t7x9mZA8scDUCO9cDKDUz3SauL3QN8,7969
|
@@ -606,7 +606,7 @@ pulumi_oci/core/get_subnets.py,sha256=2inMIUzDbPmuuPDgM5mqPiC7risJWaxP-8zEtvR_Cg
|
|
606
606
|
pulumi_oci/core/get_tunnel_security_associations.py,sha256=C7sf1_AkXEx0cKCE7Ab4lYx63E9mA8nkAhwmjC_KuMg,7329
|
607
607
|
pulumi_oci/core/get_vcn.py,sha256=UQdV2AmtmXwWO7YGEZ8u49lmr5CRBwD22pwzUrtStDM,18427
|
608
608
|
pulumi_oci/core/get_vcns.py,sha256=0f6nMm5Rc4mgAXkYDjn_V_ydarNKAuVGjlUpRqD48Gg,7762
|
609
|
-
pulumi_oci/core/get_virtual_circuit.py,sha256=
|
609
|
+
pulumi_oci/core/get_virtual_circuit.py,sha256=o6UyhRCrh_l-KL1O9dvYoOX-xJT3VYZBi18dtN8bO-0,26602
|
610
610
|
pulumi_oci/core/get_virtual_circuit_associated_tunnels.py,sha256=S7Fsb2kYwcsiezBE3Mc-uRnfXPpFuLA0DF2GwrjbZW0,6917
|
611
611
|
pulumi_oci/core/get_virtual_circuit_bandwidth_shapes.py,sha256=6i0arskxmhuMhqL-9IeZuvnnhzeBcLxhLQvpPzaGrcA,7401
|
612
612
|
pulumi_oci/core/get_virtual_circuit_public_prefixes.py,sha256=fHUGHphaEQxYBhgFV8acqmxis96hG9u2XXY9cyr36hk,8521
|
@@ -616,7 +616,7 @@ pulumi_oci/core/get_vlan.py,sha256=hImcsCYVv2FKcwi9p2iFbqPjG8RrZu-ZOWxNs3ArFag,1
|
|
616
616
|
pulumi_oci/core/get_vlans.py,sha256=raYSrH58iCyYDKBw1JMNtWMObQ0encO1n-kUYURq1kU,8559
|
617
617
|
pulumi_oci/core/get_vnic.py,sha256=JyZYl3CyYPhF7g2hScy1DHgqBg8JmYQBu8FMO587UHw,17452
|
618
618
|
pulumi_oci/core/get_vnic_attachments.py,sha256=qnt6o5lOjIer9gG84nieXFpr8YlZVGLOnlJtr__1y_8,9448
|
619
|
-
pulumi_oci/core/get_volume.py,sha256=
|
619
|
+
pulumi_oci/core/get_volume.py,sha256=JukGoAh5E3utaD9rxoXTWI_iG9GYLQ2Pmb3Mi9tKXTk,20774
|
620
620
|
pulumi_oci/core/get_volume_attachments.py,sha256=zqxpCkTUuWaC8Es8cBJ8mgcy62Eo912sZ6lV5PMts4w,9991
|
621
621
|
pulumi_oci/core/get_volume_backup_policies.py,sha256=0rQSn8QVikTOteHcpbppZz9azMd8WP9R4NX5XfFEbAI,6620
|
622
622
|
pulumi_oci/core/get_volume_backup_policy_assignments.py,sha256=wnmi6cLUtSrow_8AcRwNykVKP7HbOGayXnUrjh29nhs,6733
|
@@ -629,8 +629,8 @@ pulumi_oci/core/get_volumes.py,sha256=DU018vPWZ3WIwyJ4HvI7A48t8-hbyI_d9KC29X12OA
|
|
629
629
|
pulumi_oci/core/get_vtap.py,sha256=Pcu2_poWXROR-Fntgupmf4mOhOTrL8353Pack915Q6w,18538
|
630
630
|
pulumi_oci/core/get_vtaps.py,sha256=zRcMChna6V9FNaYo0F-A4dyiW1Ly4UHFw_j1PqWjy5M,13370
|
631
631
|
pulumi_oci/core/image.py,sha256=fKQlZiOShTBJ29A2t0kec7APEuBfG3pyXwLLqHDRxfQ,53758
|
632
|
-
pulumi_oci/core/instance.py,sha256=
|
633
|
-
pulumi_oci/core/instance_configuration.py,sha256=
|
632
|
+
pulumi_oci/core/instance.py,sha256=unCQ_o-8IIv-cym-1aXZ0a_LCm916iTSJ1jpW_21WFg,184909
|
633
|
+
pulumi_oci/core/instance_configuration.py,sha256=APLEHvgu0mJsfDDtnJw2bMJSfRuqmrpvkSsRLVW665Q,111158
|
634
634
|
pulumi_oci/core/instance_console_connection.py,sha256=Yj8LeeXlLJMnk6dWRuqYHv0vg3wHjDpxyr_D8bLMU6A,27969
|
635
635
|
pulumi_oci/core/instance_maintenance_event.py,sha256=jIyiIaO3oR1zca8pOgMFoq_7eTm_uNBQWQgofO1opWw,57966
|
636
636
|
pulumi_oci/core/instance_pool.py,sha256=QEna29CjnXg0f9eBCL-qheBpOwxiQx9V2E2Wu7_CCCg,54817
|
@@ -644,7 +644,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=p1V8uNamUxJa-UpKG4TzBGudP8NNB77l
|
|
644
644
|
pulumi_oci/core/nat_gateway.py,sha256=_I0Ls2WSv32m2-8_S9WYFjGvpt4biSLNvlY-fXMryDc,36333
|
645
645
|
pulumi_oci/core/network_security_group.py,sha256=GAbG1upv4B7ytveFpHLmy1w_N8dQFCaq_05OtFrxIyw,25742
|
646
646
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=h8JYABPvXFPfgCMRghsV0Is2KAYOxJS6x6uDeMmb0_8,54348
|
647
|
-
pulumi_oci/core/outputs.py,sha256=
|
647
|
+
pulumi_oci/core/outputs.py,sha256=6otg1KtCD6vrrG-vbWCmz2h7sga-DHuCKflBaY9s2KA,2487191
|
648
648
|
pulumi_oci/core/private_ip.py,sha256=RBV-K_PqhnfaLpAJOg9Y8gnMEpi85Flzi5hP6mwH5mE,42797
|
649
649
|
pulumi_oci/core/public_ip.py,sha256=L-WZ8RuDFtPmkZTxJFUggYipXEZFl6mSb1z2GJwdqx0,49195
|
650
650
|
pulumi_oci/core/public_ip_pool.py,sha256=SxGPeRtTauVvrVomIfsQIwZvIuh8oOwgJmNDGlHzBGQ,24119
|
@@ -657,26 +657,26 @@ pulumi_oci/core/service_gateway.py,sha256=4-FXuI1JYghUneXGafGHY5pAZBGRLgMoKuNvsT
|
|
657
657
|
pulumi_oci/core/shape_management.py,sha256=Qfj2MkR6ohkVexg8jqQ1dntbHLPkXpI8lNFf22pwPaQ,10658
|
658
658
|
pulumi_oci/core/subnet.py,sha256=dFj8_jBG78pQw1Oy8LIQajHEF_FCfNSrszsdwwJ3FtY,88952
|
659
659
|
pulumi_oci/core/vcn.py,sha256=8pWs4f6_lbRBgbVIK81ytDeey4-RNQ-2IAQMIIqe0c8,77375
|
660
|
-
pulumi_oci/core/virtual_circuit.py,sha256=
|
660
|
+
pulumi_oci/core/virtual_circuit.py,sha256=amxA8-KE1sryzYTpIrWykOXrSRH2InHBemxDm5c1RWs,93267
|
661
661
|
pulumi_oci/core/virtual_network.py,sha256=BVua1x3xo0YfdxOlXBa9UA11zIwUJqZzUP6M5vl9rhM,31353
|
662
662
|
pulumi_oci/core/vlan.py,sha256=Flflvtf8pzjWCM8EplSocwtAbfPNJIPyo1aPHd7wpVM,45335
|
663
663
|
pulumi_oci/core/vnic_attachment.py,sha256=USfB-8Kc8D_VmC1wHOfTwDs4JiHwe19EH5wzSkANdiw,33808
|
664
|
-
pulumi_oci/core/volume.py,sha256=
|
664
|
+
pulumi_oci/core/volume.py,sha256=s3RmLGffLCmYgIVKviuAywoGo_g7LBXZL89o9hMBlas,80336
|
665
665
|
pulumi_oci/core/volume_attachment.py,sha256=0RUr61AgvLrTPFawgMyzEv7BwjS3uzWSUjFuIkAmfSA,57680
|
666
666
|
pulumi_oci/core/volume_backup.py,sha256=0HLZN0rovdw0q7wmwfQ40yGtjOdIyOV8Hbe6G24mKKQ,49454
|
667
667
|
pulumi_oci/core/volume_backup_policy.py,sha256=Bs-lUM_-NrkneU5OtGpziIIvxLenahaextyDKEZfbF4,30143
|
668
|
-
pulumi_oci/core/volume_backup_policy_assignment.py,sha256=
|
669
|
-
pulumi_oci/core/volume_group.py,sha256=
|
668
|
+
pulumi_oci/core/volume_backup_policy_assignment.py,sha256=ttay56UlpUXuMqWaYgPnquJMv0ujtueUhGIGyCZG88Q,18467
|
669
|
+
pulumi_oci/core/volume_group.py,sha256=aS0UKsHbRlBWPy_5USzXAjZMs1Ms3ewjXYbnKcag_Kw,55133
|
670
670
|
pulumi_oci/core/volume_group_backup.py,sha256=gzCYyFdf1ozd1k9SdScXQ7rYLqqMBG5Dv_S1m8ZS7qk,44707
|
671
671
|
pulumi_oci/core/vtap.py,sha256=DPtuaAL94Be1JGuZdlxbnI82rF21PVhlOY5HqE_Cq8I,62801
|
672
672
|
pulumi_oci/database/__init__.py,sha256=TbvsgFRkvTw9PdDU7h0BQI888lpmOooIdL9UuMQ5waA,9241
|
673
|
-
pulumi_oci/database/_inputs.py,sha256=
|
673
|
+
pulumi_oci/database/_inputs.py,sha256=lW4JdbWq82gCjZgt8oz74G9kr1ACrBtoYIQZD6Z7WHI,1015966
|
674
674
|
pulumi_oci/database/application_vip.py,sha256=JDVVsM5IEweW_6ArMrPkNxc-ip4taGgoscVO448uUrE,29325
|
675
|
-
pulumi_oci/database/autonomous_container_database.py,sha256=
|
675
|
+
pulumi_oci/database/autonomous_container_database.py,sha256=1Jwu5GAWZnOUAS3j_OM8yqdfE85k8T_QV4N2OCJUGtg,162192
|
676
676
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=Vqr9H2dth2n-aRH0WozgJE33EijV3LzaQXyyfzla5uU,75512
|
677
677
|
pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=KdrGLo1fGVgJL4tpeiYMtjyAyIaWZ7oNCD_vKMof7A8,17941
|
678
678
|
pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=yML8BbuREYzHrq1dVIYwGlZ5bFpsBVGpT_Y9m-CI4V0,12423
|
679
|
-
pulumi_oci/database/autonomous_database.py,sha256=
|
679
|
+
pulumi_oci/database/autonomous_database.py,sha256=W_XSk--XwhkK-u0uZpvcHkHyBJOMtXroJzENM2zS-SU,479319
|
680
680
|
pulumi_oci/database/autonomous_database_backup.py,sha256=TMDev4UedzHcRjt5ZfjnoeC3-3OTA7rM4AaAtn_bvhA,43614
|
681
681
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=shw6-GEc4MzawcuhYyZCXXOTszzM-P1Of1wCDnjc8hc,18745
|
682
682
|
pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=hmbYSqFq3LOc5hXDXtp56_Z8zaCpP2O6celvTcyR8tQ,15757
|
@@ -726,14 +726,14 @@ pulumi_oci/database/external_pluggable_databases_stack_monitoring.py,sha256=v6DZ
|
|
726
726
|
pulumi_oci/database/get_application_vip.py,sha256=rguOkxRvBMCEVIuay8oBuO7wh-wHpqIN6wlhm6xi_HI,11910
|
727
727
|
pulumi_oci/database/get_application_vips.py,sha256=ugd-6WfpJuT6isjkiAD-QCj-ZT-2l91CCwrW2EVb1i8,8543
|
728
728
|
pulumi_oci/database/get_autonomous_character_sets.py,sha256=cwXfDh-uZhDwgbrqFHHyw5A1nc6SZHoMpPutNelfTIE,9143
|
729
|
-
pulumi_oci/database/get_autonomous_container_database.py,sha256=
|
729
|
+
pulumi_oci/database/get_autonomous_container_database.py,sha256=vcAH2KJlBDsHnOmE_39mkIP4bxK5aFmQV4h8vQZkdgA,53623
|
730
730
|
pulumi_oci/database/get_autonomous_container_database_dataguard_association.py,sha256=XVutJwsfajDnaAHP3g38_5vSAczfDsjTzNgGTpah4Po,27646
|
731
731
|
pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py,sha256=mRlW9mUbkVcard6SCpidXXmcz9OOsrvh8DczWt-X1pY,8628
|
732
732
|
pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=kCtUH51kUWIUcibbk4EPfhIrgUDN1bFpYb9J8TYAySY,14312
|
733
733
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=XEMaJu55rh2b4BUGIWGHwG9oGSGHCYvEZ3YlFIU9asY,8142
|
734
734
|
pulumi_oci/database/get_autonomous_container_databases.py,sha256=J-QU5Ke0b6hnPC9V2Nogh4dWlfygAmptgD9aja_4NTA,18862
|
735
735
|
pulumi_oci/database/get_autonomous_container_patches.py,sha256=jkjSmZRtZ7Eou-CjZa2dqHje_XTCeoWkFUtd-luh-AU,9329
|
736
|
-
pulumi_oci/database/get_autonomous_database.py,sha256=
|
736
|
+
pulumi_oci/database/get_autonomous_database.py,sha256=VETiHaA2anSR6JYsKeHLgzfUzRnCcwbKDpQ1V9WeJ0s,120899
|
737
737
|
pulumi_oci/database/get_autonomous_database_backup.py,sha256=LpCfBfUGCo1E23TDCcpQZcnjQxLHyz-k9DF6VlKFkkI,19964
|
738
738
|
pulumi_oci/database/get_autonomous_database_backups.py,sha256=jQp6P8e5c4GyZORbesOxSjrqbHx5jg8KXAXQxe4CHRE,11432
|
739
739
|
pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=xfwAUgWwjSBUCbU8L8FEcvAakmvBLCYC2M64BXI9Gnc,15239
|
@@ -745,7 +745,7 @@ pulumi_oci/database/get_autonomous_database_regional_wallet_management.py,sha256
|
|
745
745
|
pulumi_oci/database/get_autonomous_database_software_image.py,sha256=Kvfsu7AIOnWeI2WdH8IUSemAB7rGCjyOEhIOBAvB-Bg,13718
|
746
746
|
pulumi_oci/database/get_autonomous_database_software_images.py,sha256=Jb8wSDRHcDQ2Hbzc06YKpfYt_mKnhEwmcuYrcjEhahw,10903
|
747
747
|
pulumi_oci/database/get_autonomous_database_wallet.py,sha256=MVQkLYTyjiKaTX1y-CrRd4TX9OUJa31QnZYIRFRikjg,8825
|
748
|
-
pulumi_oci/database/get_autonomous_databases.py,sha256=
|
748
|
+
pulumi_oci/database/get_autonomous_databases.py,sha256=LIiSUEHLYjSAkNvBU62e68WThB7ElPW9hGYkoxcUYLk,24612
|
749
749
|
pulumi_oci/database/get_autonomous_databases_clones.py,sha256=U5-UTsbWAPGQGsC5slJRZUTQ6nnZh-3G6aRDAWP85KQ,11149
|
750
750
|
pulumi_oci/database/get_autonomous_db_preview_versions.py,sha256=72Z-73uO9t0QIOUJP4K5VobRXqfJnh2y6G_vb6u9TO0,6803
|
751
751
|
pulumi_oci/database/get_autonomous_db_versions.py,sha256=9YJrf1gNdJx0K8_IHx3pV8zBEF7fvaK58uy-tn5eZys,7564
|
@@ -860,7 +860,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=p_OPJhuvFLl4n7-T_3CAiSh9HkFQAz-kfn
|
|
860
860
|
pulumi_oci/database/key_store.py,sha256=utkO4jzVMM59m0NEZdhHdqnIdGpJiNjrW8mQjF9dT4o,27789
|
861
861
|
pulumi_oci/database/maintenance_run.py,sha256=8ARRL5E_sID9VZe3D3Szdq4rcRcRgNN2NU6udQdyhyo,62143
|
862
862
|
pulumi_oci/database/oneoff_patch.py,sha256=WmKZ_CNZ6Ns_0s5kRuvyXeT8KgNx24L7oiRQG5CRn-Q,38954
|
863
|
-
pulumi_oci/database/outputs.py,sha256=
|
863
|
+
pulumi_oci/database/outputs.py,sha256=vL7DrfoQNlizF7X4Lnd2c0SnQBh8LyYtjY_L_G8PKzk,2406953
|
864
864
|
pulumi_oci/database/pluggable_database.py,sha256=OYwfbMsBO58xQigObXCmC9Qez3JJnjaz2blE4tmRrOg,75593
|
865
865
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cmW6n0jUdviIoYQ5sHe_AwQWIEXpy8DS1W7fFnMJK2w,52897
|
866
866
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=S0EmRLhANos9tiM_yFrDENRZWjiROIr6MorLJlC0qFw,51106
|
@@ -1109,7 +1109,7 @@ pulumi_oci/datalabellingservice/get_annotation_formats.py,sha256=1_klZQ5d1KX38lX
|
|
1109
1109
|
pulumi_oci/datalabellingservice/get_dataset.py,sha256=gkGjEr4utZ53IimUY4UeDHsjTTX03mDCHZ96SBVLofM,17663
|
1110
1110
|
pulumi_oci/datalabellingservice/get_datasets.py,sha256=Tsbvve-S1MSLdKIGS87AAQp1NNI8XN4k7HzizLXAWW4,9720
|
1111
1111
|
pulumi_oci/datalabellingservice/outputs.py,sha256=r7HiUItducEEuol2RlCy_jnp2xOPDxY0VJ959qNHNyM,52916
|
1112
|
-
pulumi_oci/datasafe/__init__.py,sha256=
|
1112
|
+
pulumi_oci/datasafe/__init__.py,sha256=JqM5xIjZn_kz9OfrGLCo2mydDiRvPdvBRhF0n7U61xU,8303
|
1113
1113
|
pulumi_oci/datasafe/_inputs.py,sha256=rMJScIal49QlnmB5neeccqH6UddTGNLQ9REOzafay9E,419159
|
1114
1114
|
pulumi_oci/datasafe/add_sdm_columns.py,sha256=I0ZEIc33HdUAuVwulwtAKIv9jy5_boMj2bS6HfNkSmY,5588
|
1115
1115
|
pulumi_oci/datasafe/alert.py,sha256=ZwhlJjoPTYQj1cwXoBXEtTS1BTFWwYcrH8M_PV7Br34,44053
|
@@ -1132,6 +1132,7 @@ pulumi_oci/datasafe/database_security_config.py,sha256=6fMOrds4fJMw1NaPbgNat0cHB
|
|
1132
1132
|
pulumi_oci/datasafe/database_security_config_management.py,sha256=Fr7aBPA3tl1NLrrV9k7cwmeCgUIXSwDpDgI1uXhr1k8,39012
|
1133
1133
|
pulumi_oci/datasafe/discovery_jobs_result.py,sha256=vOICfpRc79y6cjmdQFiKeFCAZadTrEX54ppVA-HYLSs,43687
|
1134
1134
|
pulumi_oci/datasafe/discovery_mod.py,sha256=5JNV0UsJeMQq8b8VU-s-I7zhYMBKwIQXmusoA1qvFY4,77910
|
1135
|
+
pulumi_oci/datasafe/generate_on_prem_connector_configuration.py,sha256=q9e8TFpVdIoiMnzh7BtaV0DzVsnuoefYg98XObPvAp0,13164
|
1135
1136
|
pulumi_oci/datasafe/get_alert.py,sha256=ewL7351OoIMGWqmO1Y69nfYoWe5V0-pyJ60dEiclkJk,18081
|
1136
1137
|
pulumi_oci/datasafe/get_alert_analytic.py,sha256=3wQlEBhQDw1WzmFQzzNqREchauA0J1JJKUwNp5SBOEM,16615
|
1137
1138
|
pulumi_oci/datasafe/get_alert_policies.py,sha256=gEiudbpnz1r4UrzMe2c8tV_hj8ylIT6MmgFuCVb7TWY,18374
|
@@ -1294,21 +1295,21 @@ pulumi_oci/datasafe/unset_user_assessment_baseline.py,sha256=HBAS6RKPnM-XvQMu8GG
|
|
1294
1295
|
pulumi_oci/datasafe/unset_user_assessment_baseline_management.py,sha256=35cHHgSOwwXA7KzdBO0h_1q898gblxQZfz8icp2a8zU,12008
|
1295
1296
|
pulumi_oci/datasafe/user_assessment.py,sha256=zkPdEx1SRJAXFCPllotW0LV06l57leLb_z-73ElwKT4,58652
|
1296
1297
|
pulumi_oci/datascience/__init__.py,sha256=YUs9Sg1hYEkk_ORPN54BOFosvaeepgs8SelXVgSpgYc,1506
|
1297
|
-
pulumi_oci/datascience/_inputs.py,sha256=
|
1298
|
+
pulumi_oci/datascience/_inputs.py,sha256=PQwsKnJ6XlmhTdFZhPZUjitYz4JEW5mquWVyRKVceeA,296699
|
1298
1299
|
pulumi_oci/datascience/get_fast_launch_job_configs.py,sha256=g6ie0UMUodJ8e67WQnlk1QbOr4n1XUA4-f35a2EuvGc,6185
|
1299
1300
|
pulumi_oci/datascience/get_job.py,sha256=UryPIBBsQ3tLtUmucNYia1D_UG6A2xlWUutzuAycugs,19820
|
1300
1301
|
pulumi_oci/datascience/get_job_run.py,sha256=zjw1vXZ8acqUrq49fBTw2QizvxowyCLxxABfQ721cVM,19117
|
1301
1302
|
pulumi_oci/datascience/get_job_runs.py,sha256=DkLkwsFz-QS_ch2kp1dY5FoMfd5Ncwh4gShXwqH4cD8,10544
|
1302
1303
|
pulumi_oci/datascience/get_job_shapes.py,sha256=If-lm_pKpRPv3DdGQJyBKJs-4zwzgvqBwQBc5LdL1qQ,5511
|
1303
1304
|
pulumi_oci/datascience/get_jobs.py,sha256=94US990IX3CHR0AqwI_qeDql0sg9Dx7MB7Pc9DYAuQo,10494
|
1304
|
-
pulumi_oci/datascience/get_model.py,sha256=
|
1305
|
+
pulumi_oci/datascience/get_model.py,sha256=0f0GNJOElpuw3mhAwGFQpF7khAp3vUZO_nBf2w1wcz0,21014
|
1305
1306
|
pulumi_oci/datascience/get_model_deployment.py,sha256=1Z0d3QeI2RLDMtZTAg5-pfuAsaPe9bbL3rN_Z3sL9O8,15387
|
1306
1307
|
pulumi_oci/datascience/get_model_deployment_shapes.py,sha256=PJxM-nO2y_FqcPVLDOHzbvindsvWRYJB_HQeJBHhpy4,6156
|
1307
1308
|
pulumi_oci/datascience/get_model_deployments.py,sha256=ntrSCze6L5ycBUum_FOppTlQzAd46oHA9cowOiDJPlw,12086
|
1308
1309
|
pulumi_oci/datascience/get_model_provenance.py,sha256=KGswr996OpZBZ0uytn4Y2iz974jRaxpMlIc050te1WE,7912
|
1309
1310
|
pulumi_oci/datascience/get_model_version_set.py,sha256=lFd_tRXigp4zfMpGWEu52s_qf4XCXRTrwC9FZ5OLctI,11824
|
1310
1311
|
pulumi_oci/datascience/get_model_version_sets.py,sha256=pXV6txFktUu89UlFp3zOIF7dbm9-eG5WJRx6XsXNKFw,11375
|
1311
|
-
pulumi_oci/datascience/get_models.py,sha256=
|
1312
|
+
pulumi_oci/datascience/get_models.py,sha256=EvfXxGtEVzjdNTgsS_-ZVNAf1XbdOkMbXwJ8eMihLLc,12829
|
1312
1313
|
pulumi_oci/datascience/get_notebook_session.py,sha256=8ypXcKRZ5_DMJFll1nHfiZKytatsvY7RCPE3U1_qf4o,15943
|
1313
1314
|
pulumi_oci/datascience/get_notebook_session_shapes.py,sha256=ph9v7zO1QN3LK7IYTpkjs8Ycvzcws-VCbcsGrMbxD8s,6158
|
1314
1315
|
pulumi_oci/datascience/get_notebook_sessions.py,sha256=TSzYhIj_73Wb9eot8pwGIoxw623wEgdHaWyWC9apdx4,11608
|
@@ -1322,14 +1323,14 @@ pulumi_oci/datascience/get_project.py,sha256=-Uu8GHJQyXbVrK7SDrv9Celj4bbqLXMuJw-
|
|
1322
1323
|
pulumi_oci/datascience/get_projects.py,sha256=utHRQHy8PzNrjW2R2QhcxJybIavvD4mwSzCdEwWcUO4,9604
|
1323
1324
|
pulumi_oci/datascience/job.py,sha256=CKx-OCPc-mnwV3yya9_ODyadwXkIGLH7jJpx2yXPq88,66918
|
1324
1325
|
pulumi_oci/datascience/job_run.py,sha256=HaaerhcZjU_rxyCHnhCsooASF1nZY7S5vzqYPzDZWjM,58105
|
1325
|
-
pulumi_oci/datascience/model.py,sha256=
|
1326
|
+
pulumi_oci/datascience/model.py,sha256=KvzU6gnK2NafFNyMqViP7A1oS-3qaRPZGhTW3ZigW-c,62341
|
1326
1327
|
pulumi_oci/datascience/model_artifact_export.py,sha256=qpoGIPU6izNwENI_B95Hhfr_XxyyPgEtszWpUHPFjpQ,13053
|
1327
1328
|
pulumi_oci/datascience/model_artifact_import.py,sha256=MazxhVf2vz69NjG5YSr3NT5OQW_1h82t3ifPIF9Uuq8,13518
|
1328
1329
|
pulumi_oci/datascience/model_deployment.py,sha256=6ousrL2cgHh3VLmO_bY96N0TupE2tDTfg9SXg0zQ50E,59809
|
1329
1330
|
pulumi_oci/datascience/model_provenance.py,sha256=bs0nhQLjbJPq48vn2itr1OdNENIDFYEVqt6Hzl3wG6s,24769
|
1330
1331
|
pulumi_oci/datascience/model_version_set.py,sha256=_04yCq42KZfpmwCeHn_o893-wERWTLxUxldeAIS6khA,31984
|
1331
1332
|
pulumi_oci/datascience/notebook_session.py,sha256=HHk9TueUZl2db4m__DO2XRscYdz_PAE5fuB3MqkfKHw,53685
|
1332
|
-
pulumi_oci/datascience/outputs.py,sha256=
|
1333
|
+
pulumi_oci/datascience/outputs.py,sha256=wB42WpLl85S3i5SDn8vwWGtjfmw5TVAPjN9IruSFyjA,621537
|
1333
1334
|
pulumi_oci/datascience/pipeline.py,sha256=CrgPTTlGIbq7gtvodD6nyFUFkba6KiCiHmvoflIiG38,55482
|
1334
1335
|
pulumi_oci/datascience/pipeline_run.py,sha256=ZCDY9jWX4QmgD037t-gV6FYKx5SUd5HJBGiBg-S-8_M,61515
|
1335
1336
|
pulumi_oci/datascience/private_endpoint.py,sha256=qw8MZiEbX3YLcTEmWhx57sWNoVAI9BodwGXfu20lsto,41007
|
@@ -1359,15 +1360,15 @@ pulumi_oci/demandsignal/get_occ_demand_signals.py,sha256=dU8gcHnOgnK3Umxh0Wo_giE
|
|
1359
1360
|
pulumi_oci/demandsignal/occ_demand_signal.py,sha256=P8xq9JeRvo-otM3jaJBEyc6d68yF0g2GM-m4zQM_XUU,35511
|
1360
1361
|
pulumi_oci/demandsignal/outputs.py,sha256=rl3UrM8OOY2cRUO2O8mbXn1-PQQuKZeeJQ0gvgLT9BM,25185
|
1361
1362
|
pulumi_oci/desktops/__init__.py,sha256=q-fySpbcf34D1wTkjYoyTh5h88che9ptnOT3e4wUdF0,543
|
1362
|
-
pulumi_oci/desktops/_inputs.py,sha256=
|
1363
|
-
pulumi_oci/desktops/desktop_pool.py,sha256=
|
1363
|
+
pulumi_oci/desktops/_inputs.py,sha256=QeboTDw8M9l6qWnT_qkIECcYaUzOXfLaDpS-uTST9Bw,41195
|
1364
|
+
pulumi_oci/desktops/desktop_pool.py,sha256=F2b6QJ6c-JW8dx7pcF9njgvhID4_jUk-CAqs4mCD604,84113
|
1364
1365
|
pulumi_oci/desktops/get_desktop.py,sha256=W58WwR67Kz53j7dbhW6wfox4juJVpmT9BUfnboEWUuk,9666
|
1365
|
-
pulumi_oci/desktops/get_desktop_pool.py,sha256=
|
1366
|
+
pulumi_oci/desktops/get_desktop_pool.py,sha256=HXHJB6M_GGu7d6v8OIGkxXEBFN7rDE3bI_b9gxRuqfg,23619
|
1366
1367
|
pulumi_oci/desktops/get_desktop_pool_desktops.py,sha256=vSnm1Y78nccXm71iLczCA4lg3ohyu4rcW3qKgXPMeDw,11069
|
1367
1368
|
pulumi_oci/desktops/get_desktop_pool_volumes.py,sha256=bofTvCtytPl7XMgqheZTFAFvshjsslP34iFZkPRb8fE,11153
|
1368
1369
|
pulumi_oci/desktops/get_desktop_pools.py,sha256=onBsfT-VYM646i-beKNx6O_R2ACC4NaG8UlP2N1kP5U,9830
|
1369
1370
|
pulumi_oci/desktops/get_desktops.py,sha256=iEM3KBhqh9aLoLQkoa8kqiVvRMiz-2cqLk9HJutUPZs,10467
|
1370
|
-
pulumi_oci/desktops/outputs.py,sha256=
|
1371
|
+
pulumi_oci/desktops/outputs.py,sha256=dbKOKf1Cey4tO0sZ0N3NF1R9n1zp9ek10BszR-ljE7I,108342
|
1371
1372
|
pulumi_oci/devops/__init__.py,sha256=ogod3Nh4yEX5W_vhC8lVlVH9Tp8gPp6WkEFiEHRmndU,2458
|
1372
1373
|
pulumi_oci/devops/_inputs.py,sha256=NEDjMWesRDNDViNeLULunbKU5Q4pogcFPIN00DI4sL4,293496
|
1373
1374
|
pulumi_oci/devops/build_pipeline.py,sha256=KHilTVB9nFTdl_RPk-ekCG3yT0jJUXPHU8KQkkqkMrc,34139
|
@@ -1445,35 +1446,37 @@ pulumi_oci/disasterrecovery/get_dr_plans.py,sha256=Hu87hm5_oog2rKyqayAmAu2FkAnEr
|
|
1445
1446
|
pulumi_oci/disasterrecovery/get_dr_protection_group.py,sha256=E6CH8-MZH7TpUplTOc5Ti6MuGM0p_F_5DsWowQhAQ2A,15410
|
1446
1447
|
pulumi_oci/disasterrecovery/get_dr_protection_groups.py,sha256=O4J-wOQAE3wILTfqtV0qcfSxmdYZtbg0Bw8IUWoYJss,12218
|
1447
1448
|
pulumi_oci/disasterrecovery/outputs.py,sha256=kdgv7z9Kfl0Nedab_ShLnK7HYlDSwZDvbhFq2GHekHc,243779
|
1448
|
-
pulumi_oci/dns/__init__.py,sha256=
|
1449
|
-
pulumi_oci/dns/_inputs.py,sha256=
|
1450
|
-
pulumi_oci/dns/action_create_zone_from_zone_file.py,sha256=
|
1451
|
-
pulumi_oci/dns/get_records.py,sha256=
|
1452
|
-
pulumi_oci/dns/get_resolver.py,sha256=
|
1453
|
-
pulumi_oci/dns/get_resolver_endpoint.py,sha256=
|
1454
|
-
pulumi_oci/dns/get_resolver_endpoints.py,sha256=
|
1455
|
-
pulumi_oci/dns/get_resolvers.py,sha256=
|
1456
|
-
pulumi_oci/dns/get_rrset.py,sha256=
|
1457
|
-
pulumi_oci/dns/get_rrsets.py,sha256=
|
1449
|
+
pulumi_oci/dns/__init__.py,sha256=8nwbkg-1fxwoeYrAl3ruZqYBtc_dy5xkFcm5dglF1qo,1198
|
1450
|
+
pulumi_oci/dns/_inputs.py,sha256=w4F1h-C5mUC66RU4_WIEoWZd1fev7MZfxVQ9MWTmDgE,148914
|
1451
|
+
pulumi_oci/dns/action_create_zone_from_zone_file.py,sha256=9Y6pYq6JUBMsSszbY23MsykJB3pR7ndXxVg06OqD8NI,39915
|
1452
|
+
pulumi_oci/dns/get_records.py,sha256=dWWJZe5IzvpJzMT4ytuyColXxkoa1_qBuVqebrwKZlw,13499
|
1453
|
+
pulumi_oci/dns/get_resolver.py,sha256=KbKOuZe7v7E3bxCJThJfsqZVwdiFTG8f-a8y9tEQktQ,13757
|
1454
|
+
pulumi_oci/dns/get_resolver_endpoint.py,sha256=ICype6Rm6kdQI6h3SmrUPso3gn3WoAV-jGQ-hheW6iA,14683
|
1455
|
+
pulumi_oci/dns/get_resolver_endpoints.py,sha256=juF3FPIzi5YxZ1dAxrRmMWPywJlMC0JyzwI-pvkxHDM,8843
|
1456
|
+
pulumi_oci/dns/get_resolvers.py,sha256=fZ2eCjJgk30jDJiQvqb1tS-QkJys_UCKhMFbaojOSHQ,8927
|
1457
|
+
pulumi_oci/dns/get_rrset.py,sha256=aMJX79ooFlYnekFLZzRIiDfPLiYDfkyuFEo0ggSK6uY,10236
|
1458
|
+
pulumi_oci/dns/get_rrsets.py,sha256=15U73-H1la6GL_hABzncEMux1JIi-JSWoKVCNrgehBM,10664
|
1458
1459
|
pulumi_oci/dns/get_steering_policies.py,sha256=Bt2IqsRhNvMz_RIR0wrrLi_eVaGG_64mgzZaLd6cImY,15892
|
1459
1460
|
pulumi_oci/dns/get_steering_policy.py,sha256=WIiGJ7AclcIq6m5qbpaQTrduzng4oJ4_gbZKMuGpBrU,12091
|
1460
1461
|
pulumi_oci/dns/get_steering_policy_attachment.py,sha256=icIDCJMdp52CFmesLIyJOLcP9j-urPf_FKZ7SowBu-0,10127
|
1461
1462
|
pulumi_oci/dns/get_steering_policy_attachments.py,sha256=9zLqs5IFPQI2whf4KFEvQyoQD4vqwXNpvdj9Myg3fsw,16869
|
1462
1463
|
pulumi_oci/dns/get_tsig_key.py,sha256=Pfut8vxTWA3kJd1Cu2z3f49KAhU5R5fVvuMxa6ZKy1A,9951
|
1463
1464
|
pulumi_oci/dns/get_tsig_keys.py,sha256=Pix2ERaMasOkgg3qireuIVyGrCK8iIX83w8wheXtSGo,7264
|
1464
|
-
pulumi_oci/dns/get_view.py,sha256=
|
1465
|
-
pulumi_oci/dns/get_views.py,sha256=
|
1466
|
-
pulumi_oci/dns/get_zones.py,sha256=
|
1467
|
-
pulumi_oci/dns/outputs.py,sha256=
|
1468
|
-
pulumi_oci/dns/record.py,sha256=
|
1469
|
-
pulumi_oci/dns/resolver.py,sha256=
|
1470
|
-
pulumi_oci/dns/resolver_endpoint.py,sha256=
|
1471
|
-
pulumi_oci/dns/rrset.py,sha256=
|
1465
|
+
pulumi_oci/dns/get_view.py,sha256=kysX2qu8W3ofd39U6xMg1uL7kWHB2ExLvKiXKnbfNIQ,10330
|
1466
|
+
pulumi_oci/dns/get_views.py,sha256=YDeUtcVy4lszk0ZbzHyv-EjA_r73it5M9kAdqa1_niE,8637
|
1467
|
+
pulumi_oci/dns/get_zones.py,sha256=ataqCrmbWW40AekJLCPn64KUDX_3ejiv9fL2Dvm-TPU,18429
|
1468
|
+
pulumi_oci/dns/outputs.py,sha256=8qddBy5FeLa3zN54XV8rAVCXmm_TQHnmvgURg0HtWxI,247235
|
1469
|
+
pulumi_oci/dns/record.py,sha256=Alh0RQKhxHPZ9locEe0MoweOymnpPqB5YCtqspEfF44,29394
|
1470
|
+
pulumi_oci/dns/resolver.py,sha256=pqmW-YdfotYr_Mr5ywUFtE1SozLZpvRnudaayBCBXAk,38581
|
1471
|
+
pulumi_oci/dns/resolver_endpoint.py,sha256=MjTU1TnsdyB6_tt0EteATFAc3zGLArNl2WRAofn4EXs,38870
|
1472
|
+
pulumi_oci/dns/rrset.py,sha256=bMR1ByhFB7bHSYJea-oVKDl2apk_ncjCHW20TLHA_dI,23646
|
1472
1473
|
pulumi_oci/dns/steering_policy.py,sha256=8I7u-U9LxukuywSqCHgBENHv65Hinxv3ynBB1DHi0nI,58630
|
1473
1474
|
pulumi_oci/dns/steering_policy_attachment.py,sha256=_3Ms3WgKbeTsywFx-33aGpbpXJI_h0By9WKdR3KPtw0,23011
|
1474
1475
|
pulumi_oci/dns/tsig_key.py,sha256=jsci2MJZ0QuZ0yt4bf-1ScGqADfR2R2qe736IpyXVUk,29692
|
1475
1476
|
pulumi_oci/dns/view.py,sha256=R_AprjH9YkLJiiyMfwb-QoSVQGUVJuTu0dwViVdRjCg,26859
|
1476
|
-
pulumi_oci/dns/zone.py,sha256=
|
1477
|
+
pulumi_oci/dns/zone.py,sha256=ac78_BGoXE5XsrU79WWoOG9SRu-O5-JTefCHGZ-NLmQ,61073
|
1478
|
+
pulumi_oci/dns/zone_promote_dnssec_key_version.py,sha256=vMFfMJpRpD4gFi_dz6bPclPZeXoCPbgZc6qp7BgIqxM,14250
|
1479
|
+
pulumi_oci/dns/zone_stage_dnssec_key_version.py,sha256=BfnAAeki-oOTzZChZWt7xAWobMpFUBreePCA7rgKWtM,14312
|
1477
1480
|
pulumi_oci/email/__init__.py,sha256=CccmgPhQDCLi1x6p0ZDJLIe284HxWV19bUQhJgFcwwk,782
|
1478
1481
|
pulumi_oci/email/_inputs.py,sha256=90XHXXUXj1dQGvBGj9PevtqfSuzLC4ln_0e4sifSjlo,7933
|
1479
1482
|
pulumi_oci/email/dkim.py,sha256=8QzBfKIZFTzlSuMNcrN09-4gHgcxZYk7T9q5t9u4kM0,41343
|
@@ -1500,30 +1503,30 @@ pulumi_oci/events/get_rules.py,sha256=Lq2AvPoZte5sqzqGAmnV_OoX6dPUikhuMS1YqjqIcw
|
|
1500
1503
|
pulumi_oci/events/outputs.py,sha256=1tJA_GwFrGsAb5HVG_xvuxNrQVKXnywiXnmq8lKLa4c,26538
|
1501
1504
|
pulumi_oci/events/rule.py,sha256=jbsjvp_CeUtd1yuHNgJPB1hEcSlkAgp_K9wato2L_wc,44326
|
1502
1505
|
pulumi_oci/filestorage/__init__.py,sha256=o1dtIje7kjVGLuJ8Fz6XqRSncO0ExtsSfiREeMn8uaU,1035
|
1503
|
-
pulumi_oci/filestorage/_inputs.py,sha256=
|
1504
|
-
pulumi_oci/filestorage/export.py,sha256=
|
1506
|
+
pulumi_oci/filestorage/_inputs.py,sha256=GmPVLvf7o8Rz-KndDEb7l1jtI0L6yWCoL1OS_le42_8,75979
|
1507
|
+
pulumi_oci/filestorage/export.py,sha256=WVSWhClrEKdqv2OU1XBSzB_U_P8yC1g_2dsaDLqc3p8,39224
|
1505
1508
|
pulumi_oci/filestorage/export_set.py,sha256=jbrq_UHhaP4wrQw-82xEiNSQHCLoCdslZ1RneLh_QH0,28821
|
1506
|
-
pulumi_oci/filestorage/file_system.py,sha256=
|
1507
|
-
pulumi_oci/filestorage/filesystem_snapshot_policy.py,sha256=
|
1509
|
+
pulumi_oci/filestorage/file_system.py,sha256=Q1ZNb57yzYrj9rDZtVLHNcUVOPRq6IUQZRCuvz68vsg,66678
|
1510
|
+
pulumi_oci/filestorage/filesystem_snapshot_policy.py,sha256=2F3yCHyWc_oLc_GflvJcoKTB7VECjYg5P5DMVxPo0aU,41966
|
1508
1511
|
pulumi_oci/filestorage/get_export_sets.py,sha256=q6cyT8L1nyd2M4MbmbYxjNYSP-a6PSBxYSXkGbe-mz4,9926
|
1509
1512
|
pulumi_oci/filestorage/get_exports.py,sha256=ecozET1h27VVhZlirZTAA7DyP8OrFY_QQs1SX5WA8_o,9686
|
1510
1513
|
pulumi_oci/filestorage/get_file_systems.py,sha256=y4PjGJjrHJZtNuDNnlOvbBy4qgo2ybqfqORNTDtdIS4,15846
|
1511
1514
|
pulumi_oci/filestorage/get_filesystem_snapshot_policies.py,sha256=LWTaLh2vkSGwKGjWaDAqsfgduHnYBoVbmsOZp8rZTrc,11185
|
1512
|
-
pulumi_oci/filestorage/get_filesystem_snapshot_policy.py,sha256=
|
1515
|
+
pulumi_oci/filestorage/get_filesystem_snapshot_policy.py,sha256=TovImswor9TzWLn79ccqEmfFfzpFhsyPHuO7PI3O17c,12657
|
1513
1516
|
pulumi_oci/filestorage/get_mount_targets.py,sha256=YZNSwwUX4_DkOcuKxJfzgAgqHPwZbDuUQs03Wax26L8,11483
|
1514
|
-
pulumi_oci/filestorage/get_outbound_connector.py,sha256=
|
1517
|
+
pulumi_oci/filestorage/get_outbound_connector.py,sha256=16n3liSTk4I8I7t-Fa70gXNHM21v2eY5q-7hNuojwss,14358
|
1515
1518
|
pulumi_oci/filestorage/get_outbound_connectors.py,sha256=d4Kdn8hVsgYJ1yAIE78cZUOEepAu3IkoODYpkdhQ2q8,10543
|
1516
|
-
pulumi_oci/filestorage/get_replication.py,sha256=
|
1519
|
+
pulumi_oci/filestorage/get_replication.py,sha256=fnOnBS7PNvCoDXlmkfNQM6sKXsD_RHd1ZF6ce0Ar2o4,16999
|
1517
1520
|
pulumi_oci/filestorage/get_replication_target.py,sha256=7j-sylljFHp7X0Q-4oLN8jtoXFYhQFldC97jOwKHRIc,15148
|
1518
1521
|
pulumi_oci/filestorage/get_replication_targets.py,sha256=yyPxVabwQRUINkH_PTdq8a8Un78e-X3hCSPLlfz7Wy8,10533
|
1519
1522
|
pulumi_oci/filestorage/get_replications.py,sha256=CL3GKozRkrS-HMxLAfr1CmZ7g2L5Fq_9OsC8xlNrsDg,11347
|
1520
|
-
pulumi_oci/filestorage/get_snapshot.py,sha256=
|
1523
|
+
pulumi_oci/filestorage/get_snapshot.py,sha256=Q4Wdy-69hQzaib86oMmZOJC-Kk0nDXYwFa1erCv--co,14774
|
1521
1524
|
pulumi_oci/filestorage/get_snapshots.py,sha256=jm7F5Mh53cE9yCbXVIiOjpcrbaYHnRaVSir9un3BsSs,11037
|
1522
|
-
pulumi_oci/filestorage/mount_target.py,sha256=
|
1523
|
-
pulumi_oci/filestorage/outbound_connector.py,sha256=
|
1524
|
-
pulumi_oci/filestorage/outputs.py,sha256=
|
1525
|
-
pulumi_oci/filestorage/replication.py,sha256=
|
1526
|
-
pulumi_oci/filestorage/snapshot.py,sha256=
|
1525
|
+
pulumi_oci/filestorage/mount_target.py,sha256=N7wPftWZc-O5iper8HkxaZs8SpwJVEsMfCqIO0YBSoo,80833
|
1526
|
+
pulumi_oci/filestorage/outbound_connector.py,sha256=gLfBwDsSjEuxjzW8cAB5ap1mvNvy9ayNhuzFMqFOQ8w,47046
|
1527
|
+
pulumi_oci/filestorage/outputs.py,sha256=8ORi38ykgGRxe-XJbf2Wd9RZNLwSYZm3gHHZtJw9wFo,192076
|
1528
|
+
pulumi_oci/filestorage/replication.py,sha256=_X1rgxGjutgnQ8OY5_nEQYo2wgV9cYOFV8Egh9wrWgA,51036
|
1529
|
+
pulumi_oci/filestorage/snapshot.py,sha256=ga_xBbnabrKx4P4pzJc04zNvcjbvtRzxeIC7QXOTK_Q,41106
|
1527
1530
|
pulumi_oci/fleetappsmanagement/__init__.py,sha256=Jog5NRf4m2CKeEpWmSUNxRYcmWnrhCiB7UILtXBqR2g,1453
|
1528
1531
|
pulumi_oci/fleetappsmanagement/_inputs.py,sha256=0UNwvrCwGo0bZGMgDXqLRmEa8X4Pa9WfIFonwFfVd0Q,68423
|
1529
1532
|
pulumi_oci/fleetappsmanagement/fleet.py,sha256=A6dqa-VoJ72QTQd4nTtOrU-aFEchi_90TAoLQNLfw6o,47759
|
@@ -1629,21 +1632,12 @@ pulumi_oci/genericartifactscontent/__init__.py,sha256=hgIxlRzoszlQaqeflk8QurTNj8
|
|
1629
1632
|
pulumi_oci/genericartifactscontent/artifact_by_path.py,sha256=4HVZMU4EHAXvvDnApcAqd6n2t3zWoaSdRKDOL-NzErs,31961
|
1630
1633
|
pulumi_oci/genericartifactscontent/get_artifact_by_path.py,sha256=iKOhgb-_Y9_jxriAedycXJPn4q2BwaGn2fOIdtCP4lo,11494
|
1631
1634
|
pulumi_oci/genericartifactscontent/get_generic_artifacts_content.py,sha256=mJDrf1BtPZHsMWc1P3gz9CzqoAg9t82YjyVlfnBeoCs,4550
|
1632
|
-
pulumi_oci/
|
1633
|
-
pulumi_oci/
|
1634
|
-
pulumi_oci/
|
1635
|
-
pulumi_oci/globallydistributeddatabase/get_private_endpoints.py,sha256=hs4k-L27l5DgHoHWGYQEsOMq3ySnmkRpvVig0xnNkmA,8240
|
1636
|
-
pulumi_oci/globallydistributeddatabase/get_sharded_database.py,sha256=_1Yb7GZTOejK8-xzkxe1tTHm7HrbTBUtyxusA4JQK8c,33100
|
1637
|
-
pulumi_oci/globallydistributeddatabase/get_sharded_databases.py,sha256=tqKaB5Crj_5EZ3yhyRU_xJ2sDp2lSy02Nkpm1KBuEYE,8253
|
1638
|
-
pulumi_oci/globallydistributeddatabase/outputs.py,sha256=7ZllR3U_Fzfd_selxKNi80n_6rJBkDzIFMPf-YoADwA,94387
|
1639
|
-
pulumi_oci/globallydistributeddatabase/private_endpoint.py,sha256=Qt-Pzj4OeQ9-_Ry63zwZ5YtoYsix1JpzelufBbyoZVU,34622
|
1640
|
-
pulumi_oci/globallydistributeddatabase/sharded_database.py,sha256=gYnkkNX5O9O3SDBklqq0KGCn60DnZZJMhpbBFA7GlqA,103084
|
1641
|
-
pulumi_oci/goldengate/__init__.py,sha256=bUksfKTH9LM_422k-tu1EXIuPrRbsGUVQVmdQ9Y4ogM,1331
|
1642
|
-
pulumi_oci/goldengate/_inputs.py,sha256=YBdAq7JSECIdRXj-lcPq-pTCUmnG_RwzuW6-2hr2gYE,61909
|
1643
|
-
pulumi_oci/goldengate/connection.py,sha256=KHnL3J7FRVb0rcv0NCocYtUOVaJ2wUN_1DkFhBJXnfM,243217
|
1635
|
+
pulumi_oci/goldengate/__init__.py,sha256=kO2QNJJrjzwTVZ-embsBBEp0opCxB2QdHLcz_M6790E,1374
|
1636
|
+
pulumi_oci/goldengate/_inputs.py,sha256=MVjcViZUXX2Y0oBLqJRNrX8BL9H7w5RlQqZDylsSuTQ,72569
|
1637
|
+
pulumi_oci/goldengate/connection.py,sha256=qxPa4EctcSgqmpUF4vekGHX1lmBY7cChh_u-MU4SY1U,243666
|
1644
1638
|
pulumi_oci/goldengate/connection_assignment.py,sha256=XNtTILpAQjfNSYn6csr98gQIDCUXMyyv4kf72q_D7ck,20881
|
1645
|
-
pulumi_oci/goldengate/database_registration.py,sha256=
|
1646
|
-
pulumi_oci/goldengate/deployment.py,sha256=
|
1639
|
+
pulumi_oci/goldengate/database_registration.py,sha256=3yI6iEmAO6H-kkjqutqxizE79f6cEvdSpl1MiTYP1Fc,69571
|
1640
|
+
pulumi_oci/goldengate/deployment.py,sha256=6v315qLRX93wuXQH0NoYWsdiSeqjd5njaZ5LRF3e1Y4,99929
|
1647
1641
|
pulumi_oci/goldengate/deployment_backup.py,sha256=5QcVJnRawGsecPF2hfwkXWxbXV2t5TFsHtQy8Y1DcOw,48841
|
1648
1642
|
pulumi_oci/goldengate/deployment_certificate.py,sha256=BdJUzPc09T0OLb6KtJEqhtqzaIXFejWueRXkzlQShw4,35680
|
1649
1643
|
pulumi_oci/goldengate/get_connection.py,sha256=EWKprZyo5SiokkQCOJm032jqLURiUepL4PsK5j_TD3I,60175
|
@@ -1652,11 +1646,12 @@ pulumi_oci/goldengate/get_connection_assignments.py,sha256=1U9449ttTqL_3RiL90_wp
|
|
1652
1646
|
pulumi_oci/goldengate/get_connections.py,sha256=oTKqTVeP7CWdDjCVgmmdPjBYB5vGPLWIp_2q3Rr90OY,14962
|
1653
1647
|
pulumi_oci/goldengate/get_database_registration.py,sha256=ZpKpTqJfuKsTsw-lYn8eOeGYTHtY8e_grbF93tCQfyU,21488
|
1654
1648
|
pulumi_oci/goldengate/get_database_registrations.py,sha256=xw37kO8DcEqWI3obcoxNIjtdeCzncq44ogaiDD8XMI4,9177
|
1655
|
-
pulumi_oci/goldengate/get_deployment.py,sha256=
|
1649
|
+
pulumi_oci/goldengate/get_deployment.py,sha256=cGI54Smi5uwZ2qOb0x98pTDjKYx0ngDOoqW9ZpaBIJ4,36227
|
1656
1650
|
pulumi_oci/goldengate/get_deployment_backup.py,sha256=EocqIqpzfkNl-h8otE2v3as0uf6N7r1rIS4CMiUbbZM,18679
|
1657
1651
|
pulumi_oci/goldengate/get_deployment_backups.py,sha256=d1cuiQ2jiE8tz3sb3CebYhQElKBI6qoMLMP29-I89h8,10152
|
1658
1652
|
pulumi_oci/goldengate/get_deployment_certificate.py,sha256=YqAbDz_HQokZ7REE-2i7b5CLFBoumbtk73jWlaZOtfw,17022
|
1659
1653
|
pulumi_oci/goldengate/get_deployment_certificates.py,sha256=UMC7bvoB16d0Xbfe3dT7mjLwkFZb581L6G2MzjFMCkg,7102
|
1654
|
+
pulumi_oci/goldengate/get_deployment_environments.py,sha256=oYEeP8wVMQCDO7JhVLh-4xHrzAjTY8hbEJU6Kmcyl1I,6825
|
1660
1655
|
pulumi_oci/goldengate/get_deployment_type.py,sha256=ImrnZH94uLa0klcYTBHZ2C2Fc3_a3R8ValW5ZoUSuBk,5902
|
1661
1656
|
pulumi_oci/goldengate/get_deployment_types.py,sha256=S-tjJhhOV0oVR5AZusXEPum4YhScl4cnjTMvdid3-9w,10152
|
1662
1657
|
pulumi_oci/goldengate/get_deployment_upgrade.py,sha256=zKK1wHbfkj-x124ulW5ZUKLv8cM-RKk2roRDKYz2Lko,24398
|
@@ -1669,7 +1664,7 @@ pulumi_oci/goldengate/get_trail_file.py,sha256=MdgF6u4zu3w5AJWwQj2nlrQecCGvnQlAb
|
|
1669
1664
|
pulumi_oci/goldengate/get_trail_files.py,sha256=rmCUVoxZ6Zj9hK0oxvV_IUXQQfEfelwxvOqiTsi9u80,7906
|
1670
1665
|
pulumi_oci/goldengate/get_trail_sequence.py,sha256=SWod0DdvXpv4mIzKYtlvkAByLWuLjVkxucAPZ13nooA,8556
|
1671
1666
|
pulumi_oci/goldengate/get_trail_sequences.py,sha256=fCzy7BV16EASa9CgbMh0Nu7lbp_5NCaZN_k4Zt7WI3U,9206
|
1672
|
-
pulumi_oci/goldengate/outputs.py,sha256=
|
1667
|
+
pulumi_oci/goldengate/outputs.py,sha256=1fUyE7UGmq3XpcbuRLsaXSaAeRAnYh7gGHJfBU-yB7Q,283351
|
1673
1668
|
pulumi_oci/healthchecks/__init__.py,sha256=PJnzYouMBWUvQ3Du18Ga3ztCAO2ekzXs2E8fPG4C0XU,662
|
1674
1669
|
pulumi_oci/healthchecks/_inputs.py,sha256=ak61T7VVp0CrgPcfw-62NcEb54Orb3-QC68cVDQkbew,7330
|
1675
1670
|
pulumi_oci/healthchecks/get_http_monitor.py,sha256=BIa6H-w7MxuxkoMh-53MhwSKkE_5tbetIt9Q9rr8lMw,14419
|
@@ -2284,15 +2279,15 @@ pulumi_oci/networkloadbalancer/get_backend_sets.py,sha256=rTruJedS89J_6WW9Vmk2kZ
|
|
2284
2279
|
pulumi_oci/networkloadbalancer/get_backends.py,sha256=7v06KSkau1wq_DU4TBig2BDGesHo3dYKQXeaM3yGsVk,7149
|
2285
2280
|
pulumi_oci/networkloadbalancer/get_listener.py,sha256=bTQ9-TFMp0J8VxpuhBIG4Cco00ysNVaSyAt7ztD7u4I,10751
|
2286
2281
|
pulumi_oci/networkloadbalancer/get_listeners.py,sha256=ok6hiwM7h2tpwmSsxAg4iELWeoqB_o9Vq1GnqfG_0QA,6008
|
2287
|
-
pulumi_oci/networkloadbalancer/get_network_load_balancer.py,sha256=
|
2282
|
+
pulumi_oci/networkloadbalancer/get_network_load_balancer.py,sha256=Ksreta79Sp338boRukOJc5rlIkdsPSpKOnEEbAu1XcM,19952
|
2288
2283
|
pulumi_oci/networkloadbalancer/get_network_load_balancer_health.py,sha256=DLizuWrvbuKMQKczZxk-xiY_KCALjsK_MrOJKnZntpw,10438
|
2289
2284
|
pulumi_oci/networkloadbalancer/get_network_load_balancers.py,sha256=PrqOvViDkH3b0ttdw-3vf4mz10pqWkeCU6Fdq3El13Q,8781
|
2290
2285
|
pulumi_oci/networkloadbalancer/get_network_load_balancers_policies.py,sha256=WD97aYxncg_izq9On7bfWGLYEhnOnsjTcRJCNa9S3Ys,5594
|
2291
2286
|
pulumi_oci/networkloadbalancer/get_network_load_balancers_protocols.py,sha256=JQJrconaHUYDvbwPeSf_sReV-1rdAhyr9j8A8wpFBIk,5821
|
2292
2287
|
pulumi_oci/networkloadbalancer/listener.py,sha256=kR8QGtBnpbR-TLmob9b3LNk4AK02IxMi3ixN3MgFfMk,30813
|
2293
|
-
pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=
|
2288
|
+
pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=mWbBHZF__VfTAGZmB_7S09WnEwS9eMhu-PZY5cO187I,71680
|
2294
2289
|
pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py,sha256=8SE8Y-GLKdZGMc2u-2p4UzGXXy5WV2JytK0OrNrOVGI,42342
|
2295
|
-
pulumi_oci/networkloadbalancer/outputs.py,sha256=
|
2290
|
+
pulumi_oci/networkloadbalancer/outputs.py,sha256=SaEh94UGHrOOyTjiyalvVAhiBuxDDLhp77gRnxBcYqQ,118724
|
2296
2291
|
pulumi_oci/nosql/__init__.py,sha256=-ek2jAAWYNxuP3L92fUIFWteYxUOBDcs1fLMbUC_Eug,488
|
2297
2292
|
pulumi_oci/nosql/_inputs.py,sha256=-jvjEKo8xj0pzp-41iLvxDbXk9fSoTyVeT-Hmvfa8xQ,27237
|
2298
2293
|
pulumi_oci/nosql/get_index.py,sha256=GnX7NGmuDoZ-xbnXgrocnKYgOc1btunzRt3FOdMnhME,9678
|
@@ -2914,7 +2909,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=1QNe4eQ6jyzlwdY9dAhwUIRcRat1B1PDVV1Ier
|
|
2914
2909
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=8T-CGxDxYn1TmAQRwv2mcJpw4kGQmL8pGyUaHfmeAe4,11424
|
2915
2910
|
pulumi_oci/zpr/outputs.py,sha256=bLQC7_On52bzTOlKVC9oF2CSxcSo7CiwTmOkBNy7MD4,8943
|
2916
2911
|
pulumi_oci/zpr/zpr_policy.py,sha256=kRQiN_Fg_m8N1oVD93ktqQhhXv8z8y08nBKuypB_t3k,32563
|
2917
|
-
pulumi_oci-2.
|
2918
|
-
pulumi_oci-2.
|
2919
|
-
pulumi_oci-2.
|
2920
|
-
pulumi_oci-2.
|
2912
|
+
pulumi_oci-2.14.0.dist-info/METADATA,sha256=QY0KHq91TrCVFWvTbJ3VRoiQQ0T7dr1i04kdncqhJ_0,3959
|
2913
|
+
pulumi_oci-2.14.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
2914
|
+
pulumi_oci-2.14.0.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2915
|
+
pulumi_oci-2.14.0.dist-info/RECORD,,
|
@@ -1,15 +0,0 @@
|
|
1
|
-
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
-
|
5
|
-
from .. import _utilities
|
6
|
-
import typing
|
7
|
-
# Export this package's modules as members:
|
8
|
-
from .get_private_endpoint import *
|
9
|
-
from .get_private_endpoints import *
|
10
|
-
from .get_sharded_database import *
|
11
|
-
from .get_sharded_databases import *
|
12
|
-
from .private_endpoint import *
|
13
|
-
from .sharded_database import *
|
14
|
-
from ._inputs import *
|
15
|
-
from . import outputs
|