pulumi-oci 1.17.0a1702406535__py3-none-any.whl → 1.18.0a1702447417__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.
Files changed (82) hide show
  1. pulumi_oci/__init__.py +48 -0
  2. pulumi_oci/core/instance.py +7 -7
  3. pulumi_oci/database/__init__.py +1 -0
  4. pulumi_oci/database/autonomous_database.py +20 -1
  5. pulumi_oci/database/autonomous_database_saas_admin_user.py +479 -0
  6. pulumi_oci/datacatalog/_inputs.py +216 -0
  7. pulumi_oci/datacatalog/catalog.py +58 -0
  8. pulumi_oci/datacatalog/catalog_private_endpoint.py +58 -0
  9. pulumi_oci/datacatalog/get_catalog.py +28 -1
  10. pulumi_oci/datacatalog/get_catalog_private_endpoint.py +28 -1
  11. pulumi_oci/datacatalog/get_metastore.py +28 -1
  12. pulumi_oci/datacatalog/metastore.py +58 -0
  13. pulumi_oci/datacatalog/outputs.py +603 -0
  14. pulumi_oci/datasafe/_inputs.py +32 -0
  15. pulumi_oci/datasafe/database_security_config.py +7 -7
  16. pulumi_oci/datasafe/get_audit_events.py +1 -1
  17. pulumi_oci/datasafe/get_discovery_analytics.py +38 -1
  18. pulumi_oci/datasafe/get_report.py +1 -1
  19. pulumi_oci/datasafe/get_report_content.py +2 -2
  20. pulumi_oci/datasafe/get_report_definition.py +4 -4
  21. pulumi_oci/datasafe/get_sdm_masking_policy_difference.py +2 -2
  22. pulumi_oci/datasafe/get_sdm_masking_policy_differences.py +1 -1
  23. pulumi_oci/datasafe/get_security_assessment_findings.py +1 -1
  24. pulumi_oci/datasafe/get_sensitive_type.py +14 -1
  25. pulumi_oci/datasafe/get_sensitive_types.py +21 -1
  26. pulumi_oci/datasafe/get_user_assessment_profile_analytics.py +2 -2
  27. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
  28. pulumi_oci/datasafe/masking_policies_masking_column.py +2 -0
  29. pulumi_oci/datasafe/outputs.py +114 -24
  30. pulumi_oci/datasafe/report_definition.py +16 -16
  31. pulumi_oci/datasafe/sensitive_type.py +28 -0
  32. pulumi_oci/datasafe/sql_firewall_policy.py +103 -103
  33. pulumi_oci/goldengate/_inputs.py +28 -2
  34. pulumi_oci/goldengate/connection.py +77 -21
  35. pulumi_oci/goldengate/database_registration.py +7 -7
  36. pulumi_oci/goldengate/deployment.py +110 -7
  37. pulumi_oci/goldengate/get_connection.py +16 -2
  38. pulumi_oci/goldengate/get_database_registration.py +1 -1
  39. pulumi_oci/goldengate/get_deployment.py +41 -2
  40. pulumi_oci/goldengate/outputs.py +138 -11
  41. pulumi_oci/identity/__init__.py +3 -0
  42. pulumi_oci/identity/_inputs.py +862 -6
  43. pulumi_oci/identity/domains_identity_propagation_trust.py +3489 -0
  44. pulumi_oci/identity/domains_user.py +40 -41
  45. pulumi_oci/identity/get_domains_identity_propagation_trust.py +581 -0
  46. pulumi_oci/identity/get_domains_identity_propagation_trusts.py +310 -0
  47. pulumi_oci/identity/outputs.py +2625 -821
  48. pulumi_oci/logging/_inputs.py +17 -1
  49. pulumi_oci/logging/log.py +2 -0
  50. pulumi_oci/logging/outputs.py +35 -1
  51. pulumi_oci/meteringcomputation/__init__.py +7 -0
  52. pulumi_oci/meteringcomputation/_inputs.py +787 -0
  53. pulumi_oci/meteringcomputation/get_average_carbon_emission.py +121 -0
  54. pulumi_oci/meteringcomputation/get_clean_energy_usage.py +116 -0
  55. pulumi_oci/meteringcomputation/get_schedule.py +2 -2
  56. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_config.py +119 -0
  57. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_queries.py +136 -0
  58. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_query.py +132 -0
  59. pulumi_oci/meteringcomputation/outputs.py +2410 -1149
  60. pulumi_oci/meteringcomputation/schedule.py +14 -14
  61. pulumi_oci/meteringcomputation/usage_carbon_emission.py +597 -0
  62. pulumi_oci/meteringcomputation/usage_carbon_emissions_query.py +282 -0
  63. pulumi_oci/opsi/__init__.py +4 -0
  64. pulumi_oci/opsi/_inputs.py +46 -0
  65. pulumi_oci/opsi/awr_hub.py +49 -22
  66. pulumi_oci/opsi/awr_hub_source.py +957 -0
  67. pulumi_oci/opsi/awr_hub_source_awrhubsources_management.py +248 -0
  68. pulumi_oci/opsi/get_awr_hub.py +14 -1
  69. pulumi_oci/opsi/get_awr_hub_source.py +391 -0
  70. pulumi_oci/opsi/get_awr_hub_sources.py +250 -0
  71. pulumi_oci/opsi/operations_insights_warehouse.py +7 -7
  72. pulumi_oci/opsi/outputs.py +319 -0
  73. pulumi_oci/optimizer/get_histories.py +18 -1
  74. pulumi_oci/optimizer/get_profile.py +11 -1
  75. pulumi_oci/optimizer/get_resource_action.py +22 -5
  76. pulumi_oci/optimizer/get_resource_actions.py +18 -1
  77. pulumi_oci/optimizer/outputs.py +7 -0
  78. pulumi_oci/optimizer/profile.py +20 -0
  79. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/METADATA +1 -1
  80. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/RECORD +82 -67
  81. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/WHEEL +0 -0
  82. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/top_level.txt +0 -0
@@ -73,18 +73,22 @@ class LogConfigurationSourceArgs:
73
73
  category: pulumi.Input[str],
74
74
  resource: pulumi.Input[str],
75
75
  service: pulumi.Input[str],
76
- source_type: pulumi.Input[str]):
76
+ source_type: pulumi.Input[str],
77
+ parameters: Optional[pulumi.Input[Mapping[str, Any]]] = None):
77
78
  """
78
79
  :param pulumi.Input[str] category: Log object category.
79
80
  :param pulumi.Input[str] resource: The unique identifier of the resource emitting the log.
80
81
  :param pulumi.Input[str] service: Service generating log.
81
82
  :param pulumi.Input[str] source_type: The log source.
82
83
  * **OCISERVICE:** Oracle Service.
84
+ :param pulumi.Input[Mapping[str, Any]] parameters: (Updatable) Log category parameters are stored here.
83
85
  """
84
86
  pulumi.set(__self__, "category", category)
85
87
  pulumi.set(__self__, "resource", resource)
86
88
  pulumi.set(__self__, "service", service)
87
89
  pulumi.set(__self__, "source_type", source_type)
90
+ if parameters is not None:
91
+ pulumi.set(__self__, "parameters", parameters)
88
92
 
89
93
  @property
90
94
  @pulumi.getter
@@ -135,6 +139,18 @@ class LogConfigurationSourceArgs:
135
139
  def source_type(self, value: pulumi.Input[str]):
136
140
  pulumi.set(self, "source_type", value)
137
141
 
142
+ @property
143
+ @pulumi.getter
144
+ def parameters(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
145
+ """
146
+ (Updatable) Log category parameters are stored here.
147
+ """
148
+ return pulumi.get(self, "parameters")
149
+
150
+ @parameters.setter
151
+ def parameters(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
152
+ pulumi.set(self, "parameters", value)
153
+
138
154
 
139
155
  @pulumi.input_type
140
156
  class UnifiedAgentConfigurationGroupAssociationArgs:
pulumi_oci/logging/log.py CHANGED
@@ -414,6 +414,7 @@ class Log(pulumi.CustomResource):
414
414
  resource=var["log_configuration_source_resource"],
415
415
  service=var["log_configuration_source_service"],
416
416
  source_type=var["log_configuration_source_source_type"],
417
+ parameters=var["log_configuration_source_parameters"],
417
418
  ),
418
419
  compartment_id=var["compartment_id"],
419
420
  ),
@@ -478,6 +479,7 @@ class Log(pulumi.CustomResource):
478
479
  resource=var["log_configuration_source_resource"],
479
480
  service=var["log_configuration_source_service"],
480
481
  source_type=var["log_configuration_source_source_type"],
482
+ parameters=var["log_configuration_source_parameters"],
481
483
  ),
482
484
  compartment_id=var["compartment_id"],
483
485
  ),
@@ -121,18 +121,22 @@ class LogConfigurationSource(dict):
121
121
  category: str,
122
122
  resource: str,
123
123
  service: str,
124
- source_type: str):
124
+ source_type: str,
125
+ parameters: Optional[Mapping[str, Any]] = None):
125
126
  """
126
127
  :param str category: Log object category.
127
128
  :param str resource: The unique identifier of the resource emitting the log.
128
129
  :param str service: Service generating log.
129
130
  :param str source_type: The log source.
130
131
  * **OCISERVICE:** Oracle Service.
132
+ :param Mapping[str, Any] parameters: (Updatable) Log category parameters are stored here.
131
133
  """
132
134
  pulumi.set(__self__, "category", category)
133
135
  pulumi.set(__self__, "resource", resource)
134
136
  pulumi.set(__self__, "service", service)
135
137
  pulumi.set(__self__, "source_type", source_type)
138
+ if parameters is not None:
139
+ pulumi.set(__self__, "parameters", parameters)
136
140
 
137
141
  @property
138
142
  @pulumi.getter
@@ -167,6 +171,14 @@ class LogConfigurationSource(dict):
167
171
  """
168
172
  return pulumi.get(self, "source_type")
169
173
 
174
+ @property
175
+ @pulumi.getter
176
+ def parameters(self) -> Optional[Mapping[str, Any]]:
177
+ """
178
+ (Updatable) Log category parameters are stored here.
179
+ """
180
+ return pulumi.get(self, "parameters")
181
+
170
182
 
171
183
  @pulumi.output_type
172
184
  class UnifiedAgentConfigurationGroupAssociation(dict):
@@ -1168,17 +1180,20 @@ class GetLogConfigurationResult(dict):
1168
1180
  class GetLogConfigurationSourceResult(dict):
1169
1181
  def __init__(__self__, *,
1170
1182
  category: str,
1183
+ parameters: Mapping[str, Any],
1171
1184
  resource: str,
1172
1185
  service: str,
1173
1186
  source_type: str):
1174
1187
  """
1175
1188
  :param str category: Log object category.
1189
+ :param Mapping[str, Any] parameters: Log category parameters are stored here.
1176
1190
  :param str resource: The unique identifier of the resource emitting the log.
1177
1191
  :param str service: Service generating log.
1178
1192
  :param str source_type: The log source.
1179
1193
  * **OCISERVICE:** Oracle Service.
1180
1194
  """
1181
1195
  pulumi.set(__self__, "category", category)
1196
+ pulumi.set(__self__, "parameters", parameters)
1182
1197
  pulumi.set(__self__, "resource", resource)
1183
1198
  pulumi.set(__self__, "service", service)
1184
1199
  pulumi.set(__self__, "source_type", source_type)
@@ -1191,6 +1206,14 @@ class GetLogConfigurationSourceResult(dict):
1191
1206
  """
1192
1207
  return pulumi.get(self, "category")
1193
1208
 
1209
+ @property
1210
+ @pulumi.getter
1211
+ def parameters(self) -> Mapping[str, Any]:
1212
+ """
1213
+ Log category parameters are stored here.
1214
+ """
1215
+ return pulumi.get(self, "parameters")
1216
+
1194
1217
  @property
1195
1218
  @pulumi.getter
1196
1219
  def resource(self) -> str:
@@ -1733,17 +1756,20 @@ class GetLogsLogConfigurationResult(dict):
1733
1756
  class GetLogsLogConfigurationSourceResult(dict):
1734
1757
  def __init__(__self__, *,
1735
1758
  category: str,
1759
+ parameters: Mapping[str, Any],
1736
1760
  resource: str,
1737
1761
  service: str,
1738
1762
  source_type: str):
1739
1763
  """
1740
1764
  :param str category: Log object category.
1765
+ :param Mapping[str, Any] parameters: Log category parameters are stored here.
1741
1766
  :param str resource: The unique identifier of the resource emitting the log.
1742
1767
  :param str service: Service generating log.
1743
1768
  :param str source_type: The log source.
1744
1769
  * **OCISERVICE:** Oracle Service.
1745
1770
  """
1746
1771
  pulumi.set(__self__, "category", category)
1772
+ pulumi.set(__self__, "parameters", parameters)
1747
1773
  pulumi.set(__self__, "resource", resource)
1748
1774
  pulumi.set(__self__, "service", service)
1749
1775
  pulumi.set(__self__, "source_type", source_type)
@@ -1756,6 +1782,14 @@ class GetLogsLogConfigurationSourceResult(dict):
1756
1782
  """
1757
1783
  return pulumi.get(self, "category")
1758
1784
 
1785
+ @property
1786
+ @pulumi.getter
1787
+ def parameters(self) -> Mapping[str, Any]:
1788
+ """
1789
+ Log category parameters are stored here.
1790
+ """
1791
+ return pulumi.get(self, "parameters")
1792
+
1759
1793
  @property
1760
1794
  @pulumi.getter
1761
1795
  def resource(self) -> str:
@@ -6,6 +6,8 @@ from .. import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
8
  from .custom_table import *
9
+ from .get_average_carbon_emission import *
10
+ from .get_clean_energy_usage import *
9
11
  from .get_configuration import *
10
12
  from .get_custom_table import *
11
13
  from .get_custom_tables import *
@@ -15,8 +17,13 @@ from .get_schedule import *
15
17
  from .get_scheduled_run import *
16
18
  from .get_scheduled_runs import *
17
19
  from .get_schedules import *
20
+ from .get_usage_carbon_emissions_config import *
21
+ from .get_usage_carbon_emissions_queries import *
22
+ from .get_usage_carbon_emissions_query import *
18
23
  from .query import *
19
24
  from .schedule import *
20
25
  from .usage import *
26
+ from .usage_carbon_emission import *
27
+ from .usage_carbon_emissions_query import *
21
28
  from ._inputs import *
22
29
  from . import outputs