pulumi-oci 2.2.0a1720767463__py3-none-any.whl → 2.3.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 +0 -11
- pulumi_oci/_utilities.py +3 -4
- pulumi_oci/cloudmigrations/_inputs.py +8 -0
- pulumi_oci/cloudmigrations/outputs.py +8 -0
- pulumi_oci/core/_inputs.py +4 -0
- pulumi_oci/core/outputs.py +4 -0
- pulumi_oci/database/_inputs.py +26 -0
- pulumi_oci/database/outputs.py +26 -0
- pulumi_oci/databasemigration/_inputs.py +56 -0
- pulumi_oci/databasemigration/get_migration.py +14 -1
- pulumi_oci/databasemigration/get_migrations.py +14 -1
- pulumi_oci/databasemigration/migration.py +57 -0
- pulumi_oci/databasemigration/outputs.py +143 -0
- pulumi_oci/dataintegration/_inputs.py +4 -0
- pulumi_oci/dataintegration/outputs.py +4 -0
- pulumi_oci/managementagent/_inputs.py +44 -0
- pulumi_oci/managementagent/outputs.py +44 -0
- pulumi_oci/meteringcomputation/_inputs.py +32 -0
- pulumi_oci/meteringcomputation/outputs.py +29 -1
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/RECORD +24 -33
- {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/WHEEL +1 -1
- pulumi_oci/emwarehouse/__init__.py +0 -15
- pulumi_oci/emwarehouse/_inputs.py +0 -94
- pulumi_oci/emwarehouse/em_warehouse.py +0 -721
- pulumi_oci/emwarehouse/get_em_warehouse.py +0 -300
- pulumi_oci/emwarehouse/get_em_warehouses.py +0 -203
- pulumi_oci/emwarehouse/get_etl_run.py +0 -159
- pulumi_oci/emwarehouse/get_etl_runs.py +0 -173
- pulumi_oci/emwarehouse/get_resource_usage.py +0 -171
- pulumi_oci/emwarehouse/outputs.py +0 -616
- {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/top_level.txt +0 -0
@@ -1792,6 +1792,8 @@ class UsageGroupByTagArgs:
|
|
1792
1792
|
class UsageItemArgs:
|
1793
1793
|
def __init__(__self__, *,
|
1794
1794
|
ad: Optional[pulumi.Input[str]] = None,
|
1795
|
+
attributed_cost: Optional[pulumi.Input[str]] = None,
|
1796
|
+
attributed_usage: Optional[pulumi.Input[str]] = None,
|
1795
1797
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1796
1798
|
compartment_name: Optional[pulumi.Input[str]] = None,
|
1797
1799
|
compartment_path: Optional[pulumi.Input[str]] = None,
|
@@ -1822,6 +1824,8 @@ class UsageItemArgs:
|
|
1822
1824
|
weight: Optional[pulumi.Input[float]] = None):
|
1823
1825
|
"""
|
1824
1826
|
:param pulumi.Input[str] ad: The availability domain of the usage.
|
1827
|
+
:param pulumi.Input[str] attributed_cost: The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1828
|
+
:param pulumi.Input[str] attributed_usage: The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1825
1829
|
:param pulumi.Input[str] compartment_id: The compartment OCID.
|
1826
1830
|
:param pulumi.Input[str] compartment_name: The compartment name.
|
1827
1831
|
:param pulumi.Input[str] compartment_path: The compartment path, starting from root.
|
@@ -1857,6 +1861,10 @@ class UsageItemArgs:
|
|
1857
1861
|
"""
|
1858
1862
|
if ad is not None:
|
1859
1863
|
pulumi.set(__self__, "ad", ad)
|
1864
|
+
if attributed_cost is not None:
|
1865
|
+
pulumi.set(__self__, "attributed_cost", attributed_cost)
|
1866
|
+
if attributed_usage is not None:
|
1867
|
+
pulumi.set(__self__, "attributed_usage", attributed_usage)
|
1860
1868
|
if compartment_id is not None:
|
1861
1869
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
1862
1870
|
if compartment_name is not None:
|
@@ -1926,6 +1934,30 @@ class UsageItemArgs:
|
|
1926
1934
|
def ad(self, value: Optional[pulumi.Input[str]]):
|
1927
1935
|
pulumi.set(self, "ad", value)
|
1928
1936
|
|
1937
|
+
@property
|
1938
|
+
@pulumi.getter(name="attributedCost")
|
1939
|
+
def attributed_cost(self) -> Optional[pulumi.Input[str]]:
|
1940
|
+
"""
|
1941
|
+
The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1942
|
+
"""
|
1943
|
+
return pulumi.get(self, "attributed_cost")
|
1944
|
+
|
1945
|
+
@attributed_cost.setter
|
1946
|
+
def attributed_cost(self, value: Optional[pulumi.Input[str]]):
|
1947
|
+
pulumi.set(self, "attributed_cost", value)
|
1948
|
+
|
1949
|
+
@property
|
1950
|
+
@pulumi.getter(name="attributedUsage")
|
1951
|
+
def attributed_usage(self) -> Optional[pulumi.Input[str]]:
|
1952
|
+
"""
|
1953
|
+
The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1954
|
+
"""
|
1955
|
+
return pulumi.get(self, "attributed_usage")
|
1956
|
+
|
1957
|
+
@attributed_usage.setter
|
1958
|
+
def attributed_usage(self, value: Optional[pulumi.Input[str]]):
|
1959
|
+
pulumi.set(self, "attributed_usage", value)
|
1960
|
+
|
1929
1961
|
@property
|
1930
1962
|
@pulumi.getter(name="compartmentId")
|
1931
1963
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -1755,7 +1755,11 @@ class UsageItem(dict):
|
|
1755
1755
|
@staticmethod
|
1756
1756
|
def __key_warning(key: str):
|
1757
1757
|
suggest = None
|
1758
|
-
if key == "
|
1758
|
+
if key == "attributedCost":
|
1759
|
+
suggest = "attributed_cost"
|
1760
|
+
elif key == "attributedUsage":
|
1761
|
+
suggest = "attributed_usage"
|
1762
|
+
elif key == "compartmentId":
|
1759
1763
|
suggest = "compartment_id"
|
1760
1764
|
elif key == "compartmentName":
|
1761
1765
|
suggest = "compartment_name"
|
@@ -1805,6 +1809,8 @@ class UsageItem(dict):
|
|
1805
1809
|
|
1806
1810
|
def __init__(__self__, *,
|
1807
1811
|
ad: Optional[str] = None,
|
1812
|
+
attributed_cost: Optional[str] = None,
|
1813
|
+
attributed_usage: Optional[str] = None,
|
1808
1814
|
compartment_id: Optional[str] = None,
|
1809
1815
|
compartment_name: Optional[str] = None,
|
1810
1816
|
compartment_path: Optional[str] = None,
|
@@ -1835,6 +1841,8 @@ class UsageItem(dict):
|
|
1835
1841
|
weight: Optional[float] = None):
|
1836
1842
|
"""
|
1837
1843
|
:param str ad: The availability domain of the usage.
|
1844
|
+
:param str attributed_cost: The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1845
|
+
:param str attributed_usage: The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1838
1846
|
:param str compartment_id: The compartment OCID.
|
1839
1847
|
:param str compartment_name: The compartment name.
|
1840
1848
|
:param str compartment_path: The compartment path, starting from root.
|
@@ -1870,6 +1878,10 @@ class UsageItem(dict):
|
|
1870
1878
|
"""
|
1871
1879
|
if ad is not None:
|
1872
1880
|
pulumi.set(__self__, "ad", ad)
|
1881
|
+
if attributed_cost is not None:
|
1882
|
+
pulumi.set(__self__, "attributed_cost", attributed_cost)
|
1883
|
+
if attributed_usage is not None:
|
1884
|
+
pulumi.set(__self__, "attributed_usage", attributed_usage)
|
1873
1885
|
if compartment_id is not None:
|
1874
1886
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
1875
1887
|
if compartment_name is not None:
|
@@ -1935,6 +1947,22 @@ class UsageItem(dict):
|
|
1935
1947
|
"""
|
1936
1948
|
return pulumi.get(self, "ad")
|
1937
1949
|
|
1950
|
+
@property
|
1951
|
+
@pulumi.getter(name="attributedCost")
|
1952
|
+
def attributed_cost(self) -> Optional[str]:
|
1953
|
+
"""
|
1954
|
+
The attributed cost with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1955
|
+
"""
|
1956
|
+
return pulumi.get(self, "attributed_cost")
|
1957
|
+
|
1958
|
+
@property
|
1959
|
+
@pulumi.getter(name="attributedUsage")
|
1960
|
+
def attributed_usage(self) -> Optional[str]:
|
1961
|
+
"""
|
1962
|
+
The attributed usage with a max value of 9999999999.999999999999 and a minimum value of 0.
|
1963
|
+
"""
|
1964
|
+
return pulumi.get(self, "attributed_usage")
|
1965
|
+
|
1938
1966
|
@property
|
1939
1967
|
@pulumi.getter(name="compartmentId")
|
1940
1968
|
def compartment_id(self) -> Optional[str]:
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
2
|
-
pulumi_oci/_utilities.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=Iz4TZqVXakM5vs-y3FGAgsweLChYwDEuSem2oXYLVrk,159870
|
2
|
+
pulumi_oci/_utilities.py,sha256=ebJyWyMCMYLpnVkJVRkMiyEceWyxZ09ZYhxd1W7MWxs,10446
|
3
3
|
pulumi_oci/provider.py,sha256=9MXW-Zeh5jJ_T7w9PgSlFcu0s4_tylBZIVYdFLmo_fU,23922
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=Q3ZJXocVRi3sG4_vfaos6phx6pbtUMX3Eb1GQ78i3xQ,62
|
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
|
@@ -352,7 +352,7 @@ pulumi_oci/cloudguard/security_zone.py,sha256=2zsTsrhPlaNXDNUHnXYg4tALTGsqNkATho
|
|
352
352
|
pulumi_oci/cloudguard/target.py,sha256=8EXZFmyiiYiMGPiDgKlP5sdY1pll3PM02epdaGC_JF8,46206
|
353
353
|
pulumi_oci/cloudguard/wlp_agent.py,sha256=w6iD6q5aMxBhQRz48X7E4hkQnaoZh3fNRbxjMWFHN_k,31203
|
354
354
|
pulumi_oci/cloudmigrations/__init__.py,sha256=VtJaXOMY-724krUfRmk89RwqOH0Gra5Roukj0tD0R2U,910
|
355
|
-
pulumi_oci/cloudmigrations/_inputs.py,sha256=
|
355
|
+
pulumi_oci/cloudmigrations/_inputs.py,sha256=IBroraDp9q4kHIvi4_3BRD9BkSzGJgsEKSISAPDhKPE,239921
|
356
356
|
pulumi_oci/cloudmigrations/get_migration.py,sha256=TLnaqEerG1v5Ad1MldLijNAirypYyaoado6gfuXxlK0,9750
|
357
357
|
pulumi_oci/cloudmigrations/get_migration_asset.py,sha256=8L2LbCcOoeg6hAomTxkl37npO00ku2x-ShIcN35An_Q,15155
|
358
358
|
pulumi_oci/cloudmigrations/get_migration_assets.py,sha256=RAueKu9_kKqLwAZ7Zte50BZJJwxlnLDfsYfhRRYKi7w,7951
|
@@ -368,7 +368,7 @@ pulumi_oci/cloudmigrations/get_target_assets.py,sha256=akFS6kK-KFXHQDA7acCLTLUia
|
|
368
368
|
pulumi_oci/cloudmigrations/migration.py,sha256=GMdV9bFkSJSmfYtzSvHHOlECYJWCLuSlCsApmAL5bDg,27897
|
369
369
|
pulumi_oci/cloudmigrations/migration_asset.py,sha256=aOu--wZx7xAJThGtxC_8TpDl9TWfGPCJldYVV7beEsA,38878
|
370
370
|
pulumi_oci/cloudmigrations/migration_plan.py,sha256=Ar2cIZVdJ5aX9hjf5PlJQvmgHX30hPpaYkeCdJayvCM,35733
|
371
|
-
pulumi_oci/cloudmigrations/outputs.py,sha256=
|
371
|
+
pulumi_oci/cloudmigrations/outputs.py,sha256=lxE-fJGrx4f1YP5tlMnS1CZiDCoVfZzsJwIXVZBQRAU,590070
|
372
372
|
pulumi_oci/cloudmigrations/replication_schedule.py,sha256=yu5o0xSvu3u58Fy3Rfs_DPguBQtPMIFSAw70dcT7St8,27578
|
373
373
|
pulumi_oci/cloudmigrations/target_asset.py,sha256=C5thrxVCht1swtldA5AlyHxqdst4HbpCoxIQG18YUh8,49832
|
374
374
|
pulumi_oci/clusterplacementgroups/__init__.py,sha256=b_2kfthDePE5hJoeZ8QIfutFKk9ClL5W4RFf3kOztFs,440
|
@@ -433,7 +433,7 @@ pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=RWotHRCbVW
|
|
433
433
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=2pS0FViyGoOrqVg-foeYDm4C7lX7WhqlMaUeeGtRlL4,8619
|
434
434
|
pulumi_oci/containerinstances/outputs.py,sha256=K1Kf3-8xpQM9OcZOnQQG972UwHvbtboWNqYnib8J0hw,99442
|
435
435
|
pulumi_oci/core/__init__.py,sha256=TH2tLXoqxil4LmAM1OAg7Z4M4Tvrv9GsG-UG3h3UTbw,8591
|
436
|
-
pulumi_oci/core/_inputs.py,sha256=
|
436
|
+
pulumi_oci/core/_inputs.py,sha256=vk6L9HBVssgRTmK4exBPVWGoaezMp8-S3D1KbR_Z39U,865054
|
437
437
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=kd8-X0DLdG80KR4Re1Bzs3YzRfhRCraKfwNBJy6KJss,14448
|
438
438
|
pulumi_oci/core/app_catalog_subscription.py,sha256=0p4-GPnr_1F2G_si0_4tQMpEpmWadv-zhAoUKEVPdPw,29086
|
439
439
|
pulumi_oci/core/boot_volume.py,sha256=EFyQnerU3N19HSvC6uqFBjpRPWFQw7H4VIpdxhBnV28,64633
|
@@ -628,7 +628,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=kSPyvBRh4rgkugRBDTSuv5jTCmdgG7dF
|
|
628
628
|
pulumi_oci/core/nat_gateway.py,sha256=7FIymW5Rq6w7C0T74OLWb9D4KqP_vzwXnEIbNWGdsGI,35795
|
629
629
|
pulumi_oci/core/network_security_group.py,sha256=a21EveqIOiR-5WtrggBFPmYa8eBTqRGnvJs3IWm4q3g,25204
|
630
630
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=f9Y8fQDwI7BBMu9oOzm2uQyPWb0jI2u_dqZJZwcLy8Y,54224
|
631
|
-
pulumi_oci/core/outputs.py,sha256=
|
631
|
+
pulumi_oci/core/outputs.py,sha256=LPMb6-JFcihLBYoIJc3vOoe3BhcI71t2Y1ZcAHCDleg,2382963
|
632
632
|
pulumi_oci/core/private_ip.py,sha256=jZNtIz8hDmlMu93cmBLs8Qu4HzbzDAoPKvlT3Z0TKI0,42259
|
633
633
|
pulumi_oci/core/public_ip.py,sha256=0zoJbHGH5idavrf1l47kpdE9GM45asIVRo1e60HC1BI,48657
|
634
634
|
pulumi_oci/core/public_ip_pool.py,sha256=LIVV7ooE-khuPJOWOCL6v1_o7zj94Evgze3tt2Qs8ao,23581
|
@@ -654,7 +654,7 @@ pulumi_oci/core/volume_group.py,sha256=RCXp6lwfCcQMZTAnXA5UM1km9IAaO7xms0GjBaaWQ
|
|
654
654
|
pulumi_oci/core/volume_group_backup.py,sha256=TaESViXt6JzduODOxkqrAV7h1lFo9udAkM26QIECb6c,44014
|
655
655
|
pulumi_oci/core/vtap.py,sha256=NmBB3HrIWcnFfGOf9FeWtIU1fEWpgM5I4S4pTOxVz54,62263
|
656
656
|
pulumi_oci/database/__init__.py,sha256=TbvsgFRkvTw9PdDU7h0BQI888lpmOooIdL9UuMQ5waA,9241
|
657
|
-
pulumi_oci/database/_inputs.py,sha256=
|
657
|
+
pulumi_oci/database/_inputs.py,sha256=na8pX_ekw2QKKSQGGmvbxbnWrzpuPVOy9pGtYXz6h8Q,698331
|
658
658
|
pulumi_oci/database/application_vip.py,sha256=wFPa33DBZ-_ZzawwFeIyt4o47oh67WRJEYBbvRF0CCg,28983
|
659
659
|
pulumi_oci/database/autonomous_container_database.py,sha256=8KBRkXFQ3H2jSqiNl8bFB4SKp4qakiaiU5hXtylcGq8,161652
|
660
660
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=HHFxeeHKgSEMhCYdk_Pj7f1yf-o2QUTp4lmjFHCTGpY,75309
|
@@ -844,7 +844,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=aRT1n3DsQbZP6zUflQUu_U0ozwdVN5o6Mj
|
|
844
844
|
pulumi_oci/database/key_store.py,sha256=oN3pJ2ttFWOBm3nOciCLPV6PsyhMVcdY4DbvDvwV8iE,25402
|
845
845
|
pulumi_oci/database/maintenance_run.py,sha256=cyDRkOk_5KcUT3DoGuNxz1Ca0cJbdzrFNNhxfRatP_8,58494
|
846
846
|
pulumi_oci/database/oneoff_patch.py,sha256=vI2EkITWfZEhCTvYQSUJgswX6f9ZdA3sgC59ZGYwRhc,38416
|
847
|
-
pulumi_oci/database/outputs.py,sha256=
|
847
|
+
pulumi_oci/database/outputs.py,sha256=RyC1nwUPDIkzYOVGdkE7mCL6koUWzP6_68xkGad6l0Y,2232731
|
848
848
|
pulumi_oci/database/pluggable_database.py,sha256=9i6bFxXmdrlho26xBkBhznyyefvO9xwMhq_naWDd1_Q,72949
|
849
849
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cYRG-2zkTBknBJjEjC97B8_XhM2C63jZL92QUS9U6m8,52153
|
850
850
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=0NGYmSvbHSKW9TwDrNeOCOGH91SU7Ji5PDf-c70IBsQ,50354
|
@@ -985,18 +985,18 @@ pulumi_oci/databasemanagement/named_credential.py,sha256=gwcKUxJKii9k9FXBEjYYFij
|
|
985
985
|
pulumi_oci/databasemanagement/outputs.py,sha256=RV57VBzIpOOIqy6JWsAn7KVkqwCESvA_ue2Uct7NFY4,1233256
|
986
986
|
pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py,sha256=IhQRhNbKNM4U9s4Z1PiJUKQ8qvJCa_87UxbUfMEWu44,16232
|
987
987
|
pulumi_oci/databasemigration/__init__.py,sha256=wq-hZhb2rxiz9X5A9L-7N8RfkwhB3NXCbKKHsqsNolI,614
|
988
|
-
pulumi_oci/databasemigration/_inputs.py,sha256=
|
988
|
+
pulumi_oci/databasemigration/_inputs.py,sha256=kgH7_XKWaFye0wGcSBP0Jyba5gJ2Zc4JZoYbYuGnVbs,85556
|
989
989
|
pulumi_oci/databasemigration/connection.py,sha256=z_qzQo_Agw0SITrKWruojfazhGsm9AIDcC5p17Nk0V4,96527
|
990
990
|
pulumi_oci/databasemigration/get_connection.py,sha256=3Dab9CK1itygEcQNw_lNcnWyRh0_68cvTGV29fxbnr4,25076
|
991
991
|
pulumi_oci/databasemigration/get_connections.py,sha256=WKkR2lATNrJNUQCLb046UcacKWHLbsCcjt0RPMzCj_M,9789
|
992
992
|
pulumi_oci/databasemigration/get_job_advisor_report.py,sha256=_VDOC8ADJZtRQFincioA_Qw-vRIdoZ3EKv5WfJI4ViY,6805
|
993
993
|
pulumi_oci/databasemigration/get_job_output.py,sha256=TMABuPbwUJXWgNGhRdA_J-jnD_bh0tlzQ05Btrcuufc,3556
|
994
|
-
pulumi_oci/databasemigration/get_migration.py,sha256=
|
994
|
+
pulumi_oci/databasemigration/get_migration.py,sha256=mxKrgJU9ftSiG5AhBpqQAoWaNsRHjwn20pYRaBlgogU,20184
|
995
995
|
pulumi_oci/databasemigration/get_migration_object_types.py,sha256=rVI702t2HggOvedZA2d99whjW1yNLSB4DGJoT5Ohp4M,5116
|
996
|
-
pulumi_oci/databasemigration/get_migrations.py,sha256=
|
996
|
+
pulumi_oci/databasemigration/get_migrations.py,sha256=rsORFiv7eRt1P_giOFATPeXZctLWQBTwTCbNE1wqwgI,19566
|
997
997
|
pulumi_oci/databasemigration/job.py,sha256=bQsNorR7wHa99o4hj_5mEuTVnOuaqfJBZcxun4Ojp0U,26577
|
998
|
-
pulumi_oci/databasemigration/migration.py,sha256=
|
999
|
-
pulumi_oci/databasemigration/outputs.py,sha256=
|
998
|
+
pulumi_oci/databasemigration/migration.py,sha256=GyW7WWe6xcrRO2MCTy3gTqVw-h1hnI2qEZU_DEMeytE,88139
|
999
|
+
pulumi_oci/databasemigration/outputs.py,sha256=paNa9oye4wxOeajMrSbkqNSdkXt3s_qHtF4m5xB22Dk,193048
|
1000
1000
|
pulumi_oci/databasetools/__init__.py,sha256=E0X8vTRKspPI8060q1z3elp-zq_y06OAs_0Td99nZrU,699
|
1001
1001
|
pulumi_oci/databasetools/_inputs.py,sha256=ZchmnhSk0wvOdkNdFQ995zdnOSwwaOIv8P_OjU6GB2A,25587
|
1002
1002
|
pulumi_oci/databasetools/database_tools_connection.py,sha256=loLbmJWw94XpYD7u28CPe73c3FY4ajfrZkxR0nML8hM,53940
|
@@ -1052,7 +1052,7 @@ pulumi_oci/dataflow/private_endpoint.py,sha256=9vkBMocvIS8HBvsQlVoYVcBhOK7c_qZUL
|
|
1052
1052
|
pulumi_oci/dataflow/run_statement.py,sha256=2V-3LYZ42IYBVPsjxNgISjyM9rv_rXXOVmGTDD0IKzA,16386
|
1053
1053
|
pulumi_oci/dataflow/sql_endpoint.py,sha256=Zp8UIlX2E6GVQp8wRCnwGH4bFhxD00v3w4ekebWe4ho,59793
|
1054
1054
|
pulumi_oci/dataintegration/__init__.py,sha256=2H-D_UY8QH4dHOjznmx3CPkiTg4aqtJKeuaKcN7Ypu8,1536
|
1055
|
-
pulumi_oci/dataintegration/_inputs.py,sha256=
|
1055
|
+
pulumi_oci/dataintegration/_inputs.py,sha256=Dpe5IUXeSKBzhAikF0VxBdY-UpR_LsmEx5ejhdt569U,419358
|
1056
1056
|
pulumi_oci/dataintegration/get_workspace.py,sha256=uYr4xlwUqJnc2AyJDzmpDWA73cNORu4-pYYAaqIrTM0,16949
|
1057
1057
|
pulumi_oci/dataintegration/get_workspace_application.py,sha256=RS6UF7uec1y7nZhnUK_INTyT4cZ9mPXgu43BUtoUFvg,19135
|
1058
1058
|
pulumi_oci/dataintegration/get_workspace_application_patch.py,sha256=khRpP3eyL2sEAmySwZP0bvDumm2-_DkcyPIezQCM86Y,16870
|
@@ -1073,7 +1073,7 @@ pulumi_oci/dataintegration/get_workspace_projects.py,sha256=qOMBnYNiR8RiKj621ziP
|
|
1073
1073
|
pulumi_oci/dataintegration/get_workspace_task.py,sha256=8ExB_MqcqYvLvrAAa-5LtDQ3OazOE1guGqn1rLNU6kY,20265
|
1074
1074
|
pulumi_oci/dataintegration/get_workspace_tasks.py,sha256=HbrGDQYnQRuzQqzUiaHIwjLBEh-aU_mYFUfwXQ5VpJw,11130
|
1075
1075
|
pulumi_oci/dataintegration/get_workspaces.py,sha256=pKPVrjpDIaEvdC2EFEuvEOycxu5RVe3XMKKAdfiq9Wc,7366
|
1076
|
-
pulumi_oci/dataintegration/outputs.py,sha256=
|
1076
|
+
pulumi_oci/dataintegration/outputs.py,sha256=z2TG26R8uvoPudVOFh0WKPrwZ6FqgYbFDLLckaPZqXQ,1047021
|
1077
1077
|
pulumi_oci/dataintegration/workspace.py,sha256=T7HtXfqFj8OmAUpyX80JiifXvJuNCftJhG6w15XV4DM,58022
|
1078
1078
|
pulumi_oci/dataintegration/workspace_application.py,sha256=yGzubNHR4iK1XqwIF8fMTjw4pURTFpx7edd_8xQctT8,61707
|
1079
1079
|
pulumi_oci/dataintegration/workspace_application_patch.py,sha256=ErH6171o1AmHsgh2sjHPWNRnxGtVtJS3b4qj073BwYA,49201
|
@@ -1423,15 +1423,6 @@ pulumi_oci/email/get_suppressions.py,sha256=RxgPtx58BlaO-v2iWZE8JMYwmowRrZ9_lptR
|
|
1423
1423
|
pulumi_oci/email/outputs.py,sha256=PzZdrnzt5kQ0128jXxW6taZa_P-JqvCFLrAIujkeWy8,42324
|
1424
1424
|
pulumi_oci/email/sender.py,sha256=eaPmXIuS_HrpmIopu1NB2bc1LjPSrWrAp9oFC_9fFHY,25236
|
1425
1425
|
pulumi_oci/email/suppression.py,sha256=OvK4mvuIbEfB4ZtB66eD0LkVy4ANjH2MOOWFz6qbllw,22146
|
1426
|
-
pulumi_oci/emwarehouse/__init__.py,sha256=bMIo2Xeb_bFH4EH3MQjDXjtK9RVjUmkp8pXJamFthwY,496
|
1427
|
-
pulumi_oci/emwarehouse/_inputs.py,sha256=JBNTCaZqdxb-XqHbQhkhNEVBIkJTUox3_gNKXe6N_NA,2414
|
1428
|
-
pulumi_oci/emwarehouse/em_warehouse.py,sha256=IfU7P_WlR_NDrAekH8PxSLOAFv7vCtr47EVYAu4twc4,32743
|
1429
|
-
pulumi_oci/emwarehouse/get_em_warehouse.py,sha256=8EiDzB4neUvWkWwpAUq3Ufpxsy_RmmEufla6N2rW4yA,12383
|
1430
|
-
pulumi_oci/emwarehouse/get_em_warehouses.py,sha256=3F2zGp59YMLpWOF5nS76p1QgkqQjtGRhhCJq0o2x-YU,8565
|
1431
|
-
pulumi_oci/emwarehouse/get_etl_run.py,sha256=rtDH2EK9w5QQNKKayv7gn3ITsbQDd66ENTGV9NpHYnk,5795
|
1432
|
-
pulumi_oci/emwarehouse/get_etl_runs.py,sha256=6LZihTlIXFohir510LgvYxUNFOQAOyU8OZiYF_pxKD0,6712
|
1433
|
-
pulumi_oci/emwarehouse/get_resource_usage.py,sha256=AGaN35j8yQ9SLAlvRNIzXY7kwfrbmYKsYWNJI2J9t-w,6437
|
1434
|
-
pulumi_oci/emwarehouse/outputs.py,sha256=WBYQfLow1m4n5HF-HrnSXFFw4LUU5wvtIYNDmlQI-9I,22403
|
1435
1426
|
pulumi_oci/events/__init__.py,sha256=s5WifgDAfiU0eAvulJ-z_3vdbDeRHphEqpEnfC6mvhQ,383
|
1436
1427
|
pulumi_oci/events/_inputs.py,sha256=Ah4nwf3HfBHuaocZ6_-QSIvISt45VSPfVfCYK4Gw1U8,9139
|
1437
1428
|
pulumi_oci/events/get_rule.py,sha256=O1dfRkJK_FUKembRNlKQXYgq9YH19xBobpSFc6hChQE,10101
|
@@ -1977,7 +1968,7 @@ pulumi_oci/logging/log_saved_search.py,sha256=hEIxiSTAwU1Qvd_-Ax0fLsd_zrUx9dWWIN
|
|
1977
1968
|
pulumi_oci/logging/outputs.py,sha256=z5Ui3s7yFCqqoOSfRR5twMbrxrlCLwvjmjRj9QN8Hb4,282600
|
1978
1969
|
pulumi_oci/logging/unified_agent_configuration.py,sha256=clUdesJWYIDzKuaj4qkS11HzoJ9fZVRvgQJVv0aKA6E,32138
|
1979
1970
|
pulumi_oci/managementagent/__init__.py,sha256=bpFmeztqSBwuPQZDXXW0deLSXXdocRC6M6YH1JRvpc4,998
|
1980
|
-
pulumi_oci/managementagent/_inputs.py,sha256=
|
1971
|
+
pulumi_oci/managementagent/_inputs.py,sha256=R_Cn-8iZEiOLgWsRsbvVruixtD7yMRMGX9EWrKpeghk,28494
|
1981
1972
|
pulumi_oci/managementagent/get_management_agent.py,sha256=BaYqb1C9hhXH8PnAlWNRO-88lq614zrBrullMcnSitc,20507
|
1982
1973
|
pulumi_oci/managementagent/get_management_agent_available_histories.py,sha256=1mBfTXC1ssZdGlnkvNCg75q7MSUK-kU5IOQHA28v1iI,9952
|
1983
1974
|
pulumi_oci/managementagent/get_management_agent_count.py,sha256=bJSN983dE6VIYAr8frD7YLudHHa-U9GHCsYyzoXaQy0,7991
|
@@ -1993,7 +1984,7 @@ pulumi_oci/managementagent/get_management_agents.py,sha256=AyzuJUXjh0kDUZdJbqD9H
|
|
1993
1984
|
pulumi_oci/managementagent/management_agent.py,sha256=VHj1lqvHnIIgn0DS2qGe_2dcBdvnfybro_JBDM0TVKQ,46694
|
1994
1985
|
pulumi_oci/managementagent/management_agent_data_source.py,sha256=aLa2rDA0MGYQAzrtaUs5GCKkFwGldw8-MO5uHI9ZqLE,49967
|
1995
1986
|
pulumi_oci/managementagent/management_agent_install_key.py,sha256=UHjbja03w0OXt-NTM1MWzFEW5y_Cf2Q9Zm222xz6R38,26818
|
1996
|
-
pulumi_oci/managementagent/outputs.py,sha256=
|
1987
|
+
pulumi_oci/managementagent/outputs.py,sha256=LrTCE0wYFcraGh4Qd9ed7iDDtYHIvlm2bdysVfNBf8E,91851
|
1997
1988
|
pulumi_oci/managementdashboard/__init__.py,sha256=Ohu8GPc8iwS8GcB2YP3XDMI1V5g1yxIDlCOFPh7rZqg,361
|
1998
1989
|
pulumi_oci/managementdashboard/get_management_dashboards_export.py,sha256=fYnQDHOoPr13DkwvqgMuAuOOUnv0eATQ1S5Kt_5XZI4,5938
|
1999
1990
|
pulumi_oci/managementdashboard/management_dashboards_import.py,sha256=-3XTlN_3E6OME2Fr4ocuB9R9P9HukMD_N2XLY6aGLM0,12455
|
@@ -2047,7 +2038,7 @@ pulumi_oci/mediaservices/stream_cdn_config.py,sha256=t62-fjr1xOqL5xCxgRNirrvLeaB
|
|
2047
2038
|
pulumi_oci/mediaservices/stream_distribution_channel.py,sha256=bLz3SR6XIYW8WGSI4icAWxj4V1BaSrVCdizr8bB45Kg,27392
|
2048
2039
|
pulumi_oci/mediaservices/stream_packaging_config.py,sha256=Q_1UayrOgBNV_D0KDA5NgOjqePC1ccTdlXTK222wf1k,37393
|
2049
2040
|
pulumi_oci/meteringcomputation/__init__.py,sha256=5NXcizl3_GVPujB3HrJ6JuJMgUev8xZ6w7N2bTyUSLw,1162
|
2050
|
-
pulumi_oci/meteringcomputation/_inputs.py,sha256=
|
2041
|
+
pulumi_oci/meteringcomputation/_inputs.py,sha256=4CX9JA9BFBaNVdO7g9AtYbMC6Z85Usjs5lwHvazE8BM,103049
|
2051
2042
|
pulumi_oci/meteringcomputation/custom_table.py,sha256=eFovNKI8ZTJ-ZGG-7dDRZ6t0x73huxsJWd6Lmp0h01E,14977
|
2052
2043
|
pulumi_oci/meteringcomputation/get_average_carbon_emission.py,sha256=pYvgpT7BTKZ-Omyw8Nj3Z2nn9eyzsKVUi17jUa2UVpo,4452
|
2053
2044
|
pulumi_oci/meteringcomputation/get_clean_energy_usage.py,sha256=rdlMtqsOt9JZ_p7hNT-l48fiejSnKuDuJRFT4zo4tzk,3779
|
@@ -2065,7 +2056,7 @@ pulumi_oci/meteringcomputation/get_usage_carbon_emissions_queries.py,sha256=Nkkv
|
|
2065
2056
|
pulumi_oci/meteringcomputation/get_usage_carbon_emissions_query.py,sha256=D9i76eIBfFTPDWXXjc6cwfCYu8Ogvjn4IuZqYyz2Glo,5444
|
2066
2057
|
pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_group.py,sha256=eDYnNPTP-Zj-vUzvf8xp0BApP4SX8MrxWUQSBdfXEuM,7399
|
2067
2058
|
pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_groups.py,sha256=JAv260EmNO7S_b3OM9XpldVb9C_RdL2fY_ARCibwW44,6896
|
2068
|
-
pulumi_oci/meteringcomputation/outputs.py,sha256=
|
2059
|
+
pulumi_oci/meteringcomputation/outputs.py,sha256=OuHsL6f5LH7OiQWbsINAR3hu3XbONFgv9pQy2YLQiz8,189929
|
2069
2060
|
pulumi_oci/meteringcomputation/query.py,sha256=DDg_F_ojrOU71-HeqQHMZgaoSTV8qznO3wnHDEuwTy0,13733
|
2070
2061
|
pulumi_oci/meteringcomputation/schedule.py,sha256=0GvL7tu85WO9RW7Ph3olbDa50aO_4z3kEaqdsX5d_6w,44736
|
2071
2062
|
pulumi_oci/meteringcomputation/usage.py,sha256=WEOadAzDcNVuHnirdYAV2cLlMe3h7Y8sXrvOVOgm21g,36833
|
@@ -2761,7 +2752,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=2EXX-nZiSRnou_ywPuVnvH9CT
|
|
2761
2752
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=iXFu2wfolxLPGoRpC9PvrbsMvIURoaPHkg6WVLdoEd8,14234
|
2762
2753
|
pulumi_oci/waf/network_address_list.py,sha256=Burm-luOi53fUUOZVqwfKueKEDWQw8789Ir0mUblOiE,33054
|
2763
2754
|
pulumi_oci/waf/outputs.py,sha256=IibDb-778q6fJDgC9y7kgFTv6CEz8lMNaSd1c3Su9uc,227138
|
2764
|
-
pulumi_oci-2.
|
2765
|
-
pulumi_oci-2.
|
2766
|
-
pulumi_oci-2.
|
2767
|
-
pulumi_oci-2.
|
2755
|
+
pulumi_oci-2.3.0.dist-info/METADATA,sha256=7RI6OacsQI0YYgEMNru2R-EFxYpC2eU4VmvEjKnLchc,3890
|
2756
|
+
pulumi_oci-2.3.0.dist-info/WHEEL,sha256=pd56usn78UTvq1xeX_ZwFhoK6jE5u5wzu4TTBIG5cQ0,91
|
2757
|
+
pulumi_oci-2.3.0.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2758
|
+
pulumi_oci-2.3.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 .em_warehouse import *
|
9
|
-
from .get_em_warehouse import *
|
10
|
-
from .get_em_warehouses import *
|
11
|
-
from .get_etl_run import *
|
12
|
-
from .get_etl_runs import *
|
13
|
-
from .get_resource_usage import *
|
14
|
-
from ._inputs import *
|
15
|
-
from . import outputs
|
@@ -1,94 +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
|
-
import copy
|
6
|
-
import warnings
|
7
|
-
import pulumi
|
8
|
-
import pulumi.runtime
|
9
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
-
from .. import _utilities
|
11
|
-
|
12
|
-
__all__ = [
|
13
|
-
'GetEmWarehousesFilterArgs',
|
14
|
-
'GetEtlRunsFilterArgs',
|
15
|
-
]
|
16
|
-
|
17
|
-
@pulumi.input_type
|
18
|
-
class GetEmWarehousesFilterArgs:
|
19
|
-
def __init__(__self__, *,
|
20
|
-
name: str,
|
21
|
-
values: Sequence[str],
|
22
|
-
regex: Optional[bool] = None):
|
23
|
-
pulumi.set(__self__, "name", name)
|
24
|
-
pulumi.set(__self__, "values", values)
|
25
|
-
if regex is not None:
|
26
|
-
pulumi.set(__self__, "regex", regex)
|
27
|
-
|
28
|
-
@property
|
29
|
-
@pulumi.getter
|
30
|
-
def name(self) -> str:
|
31
|
-
return pulumi.get(self, "name")
|
32
|
-
|
33
|
-
@name.setter
|
34
|
-
def name(self, value: str):
|
35
|
-
pulumi.set(self, "name", value)
|
36
|
-
|
37
|
-
@property
|
38
|
-
@pulumi.getter
|
39
|
-
def values(self) -> Sequence[str]:
|
40
|
-
return pulumi.get(self, "values")
|
41
|
-
|
42
|
-
@values.setter
|
43
|
-
def values(self, value: Sequence[str]):
|
44
|
-
pulumi.set(self, "values", value)
|
45
|
-
|
46
|
-
@property
|
47
|
-
@pulumi.getter
|
48
|
-
def regex(self) -> Optional[bool]:
|
49
|
-
return pulumi.get(self, "regex")
|
50
|
-
|
51
|
-
@regex.setter
|
52
|
-
def regex(self, value: Optional[bool]):
|
53
|
-
pulumi.set(self, "regex", value)
|
54
|
-
|
55
|
-
|
56
|
-
@pulumi.input_type
|
57
|
-
class GetEtlRunsFilterArgs:
|
58
|
-
def __init__(__self__, *,
|
59
|
-
name: str,
|
60
|
-
values: Sequence[str],
|
61
|
-
regex: Optional[bool] = None):
|
62
|
-
pulumi.set(__self__, "name", name)
|
63
|
-
pulumi.set(__self__, "values", values)
|
64
|
-
if regex is not None:
|
65
|
-
pulumi.set(__self__, "regex", regex)
|
66
|
-
|
67
|
-
@property
|
68
|
-
@pulumi.getter
|
69
|
-
def name(self) -> str:
|
70
|
-
return pulumi.get(self, "name")
|
71
|
-
|
72
|
-
@name.setter
|
73
|
-
def name(self, value: str):
|
74
|
-
pulumi.set(self, "name", value)
|
75
|
-
|
76
|
-
@property
|
77
|
-
@pulumi.getter
|
78
|
-
def values(self) -> Sequence[str]:
|
79
|
-
return pulumi.get(self, "values")
|
80
|
-
|
81
|
-
@values.setter
|
82
|
-
def values(self, value: Sequence[str]):
|
83
|
-
pulumi.set(self, "values", value)
|
84
|
-
|
85
|
-
@property
|
86
|
-
@pulumi.getter
|
87
|
-
def regex(self) -> Optional[bool]:
|
88
|
-
return pulumi.get(self, "regex")
|
89
|
-
|
90
|
-
@regex.setter
|
91
|
-
def regex(self, value: Optional[bool]):
|
92
|
-
pulumi.set(self, "regex", value)
|
93
|
-
|
94
|
-
|