pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.26.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.
Files changed (218) hide show
  1. pulumi_oci/__init__.py +102 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +74 -35
  5. pulumi_oci/containerengine/cluster.py +4 -0
  6. pulumi_oci/containerengine/container_instance.py +2 -4
  7. pulumi_oci/containerengine/outputs.py +180 -21
  8. pulumi_oci/containerinstances/outputs.py +0 -14
  9. pulumi_oci/core/_inputs.py +21 -33
  10. pulumi_oci/core/outputs.py +13 -21
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +1246 -57
  13. pulumi_oci/database/application_vip.py +59 -10
  14. pulumi_oci/database/autonomous_container_database.py +92 -0
  15. pulumi_oci/database/autonomous_database.py +90 -22
  16. pulumi_oci/database/backup.py +153 -5
  17. pulumi_oci/database/backup_destination.py +84 -0
  18. pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
  19. pulumi_oci/database/cloud_vm_cluster.py +163 -30
  20. pulumi_oci/database/data_guard_association.py +49 -0
  21. pulumi_oci/database/db_node.py +64 -8
  22. pulumi_oci/database/db_system.py +111 -8
  23. pulumi_oci/database/exadata_infrastructure.py +157 -3
  24. pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
  25. pulumi_oci/database/exadb_vm_cluster.py +84 -7
  26. pulumi_oci/database/exascale_db_storage_vault.py +147 -0
  27. pulumi_oci/database/external_container_database.py +4 -4
  28. pulumi_oci/database/external_non_container_database.py +4 -4
  29. pulumi_oci/database/external_pluggable_database.py +4 -4
  30. pulumi_oci/database/get_application_vip.py +16 -2
  31. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  32. pulumi_oci/database/get_autonomous_database.py +29 -1
  33. pulumi_oci/database/get_autonomous_databases.py +0 -26
  34. pulumi_oci/database/get_backup_destination.py +43 -1
  35. pulumi_oci/database/get_backups.py +136 -10
  36. pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
  37. pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
  38. pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
  39. pulumi_oci/database/get_data_guard_association.py +12 -1
  40. pulumi_oci/database/get_database_software_images.py +20 -1
  41. pulumi_oci/database/get_db_node.py +31 -4
  42. pulumi_oci/database/get_db_server.py +15 -1
  43. pulumi_oci/database/get_exadata_infrastructure.py +57 -1
  44. pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
  45. pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
  48. pulumi_oci/database/get_external_container_database.py +1 -1
  49. pulumi_oci/database/get_external_non_container_database.py +1 -1
  50. pulumi_oci/database/get_external_pluggable_database.py +1 -1
  51. pulumi_oci/database/get_flex_components.py +28 -6
  52. pulumi_oci/database/get_maintenance_runs.py +20 -1
  53. pulumi_oci/database/get_vm_cluster.py +60 -4
  54. pulumi_oci/database/get_vm_clusters.py +25 -3
  55. pulumi_oci/database/outputs.py +2260 -87
  56. pulumi_oci/database/pluggable_database.py +13 -13
  57. pulumi_oci/database/vm_cluster.py +172 -18
  58. pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
  59. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
  60. pulumi_oci/datasafe/__init__.py +7 -0
  61. pulumi_oci/datasafe/_inputs.py +301 -0
  62. pulumi_oci/datasafe/discovery_mod.py +49 -0
  63. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  64. pulumi_oci/datasafe/get_masking_report.py +46 -4
  65. pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
  66. pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
  67. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
  68. pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
  69. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  70. pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
  71. pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
  72. pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
  73. pulumi_oci/datasafe/outputs.py +676 -3
  74. pulumi_oci/datasafe/sensitive_data_model.py +49 -0
  75. pulumi_oci/datasafe/sensitive_type_group.py +563 -0
  76. pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
  77. pulumi_oci/datascience/__init__.py +4 -0
  78. pulumi_oci/datascience/_inputs.py +1160 -41
  79. pulumi_oci/datascience/get_model.py +29 -1
  80. pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
  81. pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
  82. pulumi_oci/datascience/get_model_version_set.py +15 -1
  83. pulumi_oci/datascience/get_model_version_sets.py +25 -3
  84. pulumi_oci/datascience/get_models.py +25 -3
  85. pulumi_oci/datascience/get_pipeline.py +15 -1
  86. pulumi_oci/datascience/model.py +64 -0
  87. pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
  88. pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
  89. pulumi_oci/datascience/model_version_set.py +28 -0
  90. pulumi_oci/datascience/outputs.py +4343 -2164
  91. pulumi_oci/datascience/pipeline.py +48 -141
  92. pulumi_oci/datascience/pipeline_run.py +32 -0
  93. pulumi_oci/dblm/__init__.py +17 -0
  94. pulumi_oci/dblm/_inputs.py +275 -0
  95. pulumi_oci/dblm/get_vulnerability.py +242 -0
  96. pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
  97. pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
  98. pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
  99. pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
  100. pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
  101. pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
  102. pulumi_oci/dblm/outputs.py +1294 -0
  103. pulumi_oci/dblm/vulnerability_scan.py +521 -0
  104. pulumi_oci/email/dkim.py +120 -20
  105. pulumi_oci/email/get_dkim.py +40 -1
  106. pulumi_oci/email/outputs.py +29 -0
  107. pulumi_oci/filestorage/__init__.py +3 -0
  108. pulumi_oci/filestorage/_inputs.py +49 -0
  109. pulumi_oci/filestorage/file_system.py +133 -0
  110. pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
  111. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  112. pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
  113. pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
  114. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  115. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  116. pulumi_oci/filestorage/get_replication.py +15 -1
  117. pulumi_oci/filestorage/get_replication_target.py +15 -1
  118. pulumi_oci/filestorage/get_snapshot.py +15 -1
  119. pulumi_oci/filestorage/mount_target.py +28 -0
  120. pulumi_oci/filestorage/outbound_connector.py +28 -0
  121. pulumi_oci/filestorage/outputs.py +263 -0
  122. pulumi_oci/filestorage/replication.py +28 -0
  123. pulumi_oci/filestorage/snapshot.py +28 -0
  124. pulumi_oci/goldengate/connection.py +561 -162
  125. pulumi_oci/goldengate/database_registration.py +14 -14
  126. pulumi_oci/goldengate/get_connection.py +117 -6
  127. pulumi_oci/goldengate/outputs.py +96 -10
  128. pulumi_oci/jms/__init__.py +4 -0
  129. pulumi_oci/jms/_inputs.py +196 -0
  130. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  131. pulumi_oci/jms/get_fleet_errors.py +264 -0
  132. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  133. pulumi_oci/jms/get_jms_plugins.py +23 -1
  134. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  135. pulumi_oci/jms/get_plugin_errors.py +264 -0
  136. pulumi_oci/jms/outputs.py +566 -6
  137. pulumi_oci/mysql/_inputs.py +1239 -10
  138. pulumi_oci/mysql/channel.py +28 -0
  139. pulumi_oci/mysql/get_channel.py +15 -1
  140. pulumi_oci/mysql/get_mysql_backup.py +15 -1
  141. pulumi_oci/mysql/get_mysql_configuration.py +15 -1
  142. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  143. pulumi_oci/mysql/mysql_backup.py +28 -0
  144. pulumi_oci/mysql/mysql_configuration.py +106 -0
  145. pulumi_oci/mysql/mysql_db_system.py +36 -0
  146. pulumi_oci/mysql/outputs.py +2008 -35
  147. pulumi_oci/opensearch/__init__.py +3 -0
  148. pulumi_oci/opensearch/_inputs.py +101 -0
  149. pulumi_oci/opensearch/cluster.py +76 -29
  150. pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
  151. pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
  152. pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
  153. pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
  154. pulumi_oci/opensearch/outputs.py +425 -0
  155. pulumi_oci/provider.py +20 -0
  156. pulumi_oci/psql/_inputs.py +258 -0
  157. pulumi_oci/psql/backup.py +129 -28
  158. pulumi_oci/psql/db_system.py +10 -0
  159. pulumi_oci/psql/get_backup.py +47 -2
  160. pulumi_oci/psql/get_backups.py +3 -0
  161. pulumi_oci/psql/get_configurations.py +23 -1
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_db_systems.py +1 -1
  164. pulumi_oci/psql/outputs.py +541 -5
  165. pulumi_oci/pulumi-plugin.json +1 -1
  166. pulumi_oci/redis/redis_cluster.py +7 -7
  167. pulumi_oci/stackmonitoring/__init__.py +8 -0
  168. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  169. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  170. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  171. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  172. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  173. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  174. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  175. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  176. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  177. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  178. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  179. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  180. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  181. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  182. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  183. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  184. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  185. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  186. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  187. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  188. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  189. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  190. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  191. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  192. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  193. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  194. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  195. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  196. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  197. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  198. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  199. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  200. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  201. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  202. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  203. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  204. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  205. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  206. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  207. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  208. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  209. pulumi_oci/vault/__init__.py +1 -1
  210. pulumi_oci/vault/_inputs.py +92 -0
  211. pulumi_oci/vault/get_secret.py +40 -1
  212. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  213. pulumi_oci/vault/outputs.py +210 -0
  214. pulumi_oci/vault/secret.py +122 -0
  215. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/METADATA +1 -1
  216. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/RECORD +218 -150
  217. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/WHEEL +1 -1
  218. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/top_level.txt +0 -0
@@ -1709,6 +1709,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1709
1709
  service_account_key_file_secret_id: str,
1710
1710
  session_mode: str,
1711
1711
  should_use_jndi: bool,
1712
+ should_use_resource_principal: bool,
1712
1713
  should_validate_server_certificate: bool,
1713
1714
  ssl_ca: str,
1714
1715
  ssl_cert: str,
@@ -1724,13 +1725,20 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1724
1725
  ssl_mode: str,
1725
1726
  ssl_server_certificate: str,
1726
1727
  state: str,
1728
+ storage_credential_name: str,
1727
1729
  stream_pool_id: str,
1728
1730
  subnet_id: str,
1729
1731
  system_tags: Mapping[str, str],
1730
1732
  technology_type: str,
1731
1733
  tenancy_id: str,
1734
+ tenant_id: str,
1732
1735
  time_created: str,
1733
1736
  time_updated: str,
1737
+ tls_ca_file: str,
1738
+ tls_certificate_key_file: str,
1739
+ tls_certificate_key_file_password: str,
1740
+ tls_certificate_key_file_password_secret_id: str,
1741
+ tls_certificate_key_file_secret_id: str,
1734
1742
  trigger_refresh: bool,
1735
1743
  trust_store: str,
1736
1744
  trust_store_password: str,
@@ -1751,6 +1759,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1751
1759
  :param str authentication_type: Used authentication mechanism to be provided for the following connection types:
1752
1760
  * SNOWFLAKE, AZURE_DATA_LAKE_STORAGE, ELASTICSEARCH, KAFKA_SCHEMA_REGISTRY, REDIS
1753
1761
  * JAVA_MESSAGE_SERVICE - If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
1762
+ * DATABRICKS - Required fields by authentication types:
1763
+ * PERSONAL_ACCESS_TOKEN: username is always 'token', user must enter password
1764
+ * OAUTH_M2M: user must enter clientId and clientSecret
1754
1765
  :param str azure_tenant_id: Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
1755
1766
  :param Sequence['GetConnectionsConnectionCollectionItemBootstrapServerArgs'] bootstrap_servers: Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `"server1.example.com:9092,server2.example.com:9092"`
1756
1767
  :param str client_id: Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d
@@ -1764,6 +1775,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1764
1775
  :param str connection_url: * JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676'
1765
1776
  * SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=<warehouse-name>&db=<db-name>'
1766
1777
  * AMAZON_REDSHIFT: Connection URL. e.g.: 'jdbc:redshift://aws-redshift-instance.aaaaaaaaaaaa.us-east-2.redshift.amazonaws.com:5439/mydb'
1778
+ * DATABRICKS: Connection URL. e.g.: 'jdbc:databricks://adb-33934.4.azuredatabricks.net:443/default;transportMode=http;ssl=1;httpPath=sql/protocolv1/o/3393########44/0##3-7-hlrb'
1767
1779
  :param str consumer_properties: The base64 encoded content of the consumer.properties file.
1768
1780
  :param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database being referenced.
1769
1781
  :param str database_name: The name of the database.
@@ -1773,7 +1785,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1773
1785
  :param str description: Metadata about this specific object.
1774
1786
  :param str display_name: A filter to return only the resources that match the entire 'displayName' given.
1775
1787
  :param bool does_use_secret_ids: Indicates that sensitive attributes are provided via Secrets.
1776
- :param str endpoint: Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
1788
+ :param str endpoint: Service endpoint. e.g for Azure Storage service: https://test.blob.core.windows.net. Optional for Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
1777
1789
  :param Mapping[str, str] freeform_tags: A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1778
1790
  :param str host: The name or address of a host.
1779
1791
  In case of Generic connection type it represents the Host and port separated by colon. Example: `"server.example.com:1234"`
@@ -1799,7 +1811,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1799
1811
  :param str private_key_passphrase_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password for the private key file. Note: When provided, 'privateKeyPassphrase' field must not be provided.
1800
1812
  :param str producer_properties: The base64 encoded content of the producer.properties file.
1801
1813
  :param str redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Redis cluster.
1802
- :param str region: The name of the region. e.g.: us-ashburn-1
1814
+ :param str region: The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
1803
1815
  :param str routing_method: Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.
1804
1816
  :param str sas_token_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the sas token is stored. Note: When provided, 'sasToken' field must not be provided.
1805
1817
  :param str secret_access_key_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the secret access key is stored. Note: When provided, 'secretAccessKey' field must not be provided.
@@ -1811,8 +1823,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1811
1823
  :param str service_account_key_file_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the service account key file is stored, which containing the credentials required to use Google Cloud Storage. Note: When provided, 'serviceAccountKeyFile' field must not be provided.
1812
1824
  :param str session_mode: The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
1813
1825
  :param bool should_use_jndi: If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
1826
+ :param bool should_use_resource_principal: Indicates that the user intents to connect to the instance through resource principal.
1814
1827
  :param bool should_validate_server_certificate: If set to true, the driver validates the certificate that is sent by the database server.
1815
- :param str ssl_ca: Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
1828
+ :param str ssl_ca: Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL).
1816
1829
  :param str ssl_client_keystash_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
1817
1830
  :param str ssl_client_keystoredb_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
1818
1831
  :param str ssl_key_password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided.
@@ -1820,18 +1833,23 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1820
1833
  * The content of a .pem or .crt file containing the client private key (for 2-way SSL). Note: When provided, 'sslKey' field must not be provided.
1821
1834
  :param str ssl_mode: SSL mode to be provided for the following connection types: MYSQL, POSTGRESQL.
1822
1835
  :param str state: A filter to return only connections having the 'lifecycleState' given.
1836
+ :param str storage_credential_name: Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
1823
1837
  :param str stream_pool_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream pool being referenced.
1824
1838
  :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
1825
1839
  :param Mapping[str, str] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
1826
1840
  :param str technology_type: The array of technology types.
1827
1841
  :param str tenancy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Oracle Cloud Infrastructure tenancy.
1842
+ :param str tenant_id: Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
1828
1843
  :param str time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
1829
1844
  :param str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
1845
+ :param str tls_certificate_key_file_password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password of the tls certificate key file. Note: When provided, 'tlsCertificateKeyFilePassword' field must not be provided.
1846
+ :param str tls_certificate_key_file_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the certificate key file of the mtls connection.
1847
+ * The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
1830
1848
  :param str trust_store_password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the kafka Ssl TrustStore password is stored. Note: When provided, 'trustStorePassword' field must not be provided.
1831
1849
  :param str trust_store_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the TrustStore file is stored. Note: When provided, 'trustStore' field must not be provided.
1832
1850
  :param str url: Kafka Schema Registry URL. e.g.: 'https://server1.us.oracle.com:8081'
1833
- :param str user_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/Object Storage. The user must have write access to the table they want to connect to.
1834
- :param str username: The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivity requirements defined in it.
1851
+ :param str user_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database. The user must have write access to the table they want to connect to. If the user is not provided, backend will default to the user who is calling the API endpoint.
1852
+ :param str username: The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
1835
1853
  :param str vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
1836
1854
  :param str wallet_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the wallet file is stored. The wallet contents Oracle GoldenGate uses to make connections to a database. Note: When provided, 'wallet' field must not be provided.
1837
1855
  """
@@ -1906,6 +1924,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1906
1924
  pulumi.set(__self__, "service_account_key_file_secret_id", service_account_key_file_secret_id)
1907
1925
  pulumi.set(__self__, "session_mode", session_mode)
1908
1926
  pulumi.set(__self__, "should_use_jndi", should_use_jndi)
1927
+ pulumi.set(__self__, "should_use_resource_principal", should_use_resource_principal)
1909
1928
  pulumi.set(__self__, "should_validate_server_certificate", should_validate_server_certificate)
1910
1929
  pulumi.set(__self__, "ssl_ca", ssl_ca)
1911
1930
  pulumi.set(__self__, "ssl_cert", ssl_cert)
@@ -1921,13 +1940,20 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1921
1940
  pulumi.set(__self__, "ssl_mode", ssl_mode)
1922
1941
  pulumi.set(__self__, "ssl_server_certificate", ssl_server_certificate)
1923
1942
  pulumi.set(__self__, "state", state)
1943
+ pulumi.set(__self__, "storage_credential_name", storage_credential_name)
1924
1944
  pulumi.set(__self__, "stream_pool_id", stream_pool_id)
1925
1945
  pulumi.set(__self__, "subnet_id", subnet_id)
1926
1946
  pulumi.set(__self__, "system_tags", system_tags)
1927
1947
  pulumi.set(__self__, "technology_type", technology_type)
1928
1948
  pulumi.set(__self__, "tenancy_id", tenancy_id)
1949
+ pulumi.set(__self__, "tenant_id", tenant_id)
1929
1950
  pulumi.set(__self__, "time_created", time_created)
1930
1951
  pulumi.set(__self__, "time_updated", time_updated)
1952
+ pulumi.set(__self__, "tls_ca_file", tls_ca_file)
1953
+ pulumi.set(__self__, "tls_certificate_key_file", tls_certificate_key_file)
1954
+ pulumi.set(__self__, "tls_certificate_key_file_password", tls_certificate_key_file_password)
1955
+ pulumi.set(__self__, "tls_certificate_key_file_password_secret_id", tls_certificate_key_file_password_secret_id)
1956
+ pulumi.set(__self__, "tls_certificate_key_file_secret_id", tls_certificate_key_file_secret_id)
1931
1957
  pulumi.set(__self__, "trigger_refresh", trigger_refresh)
1932
1958
  pulumi.set(__self__, "trust_store", trust_store)
1933
1959
  pulumi.set(__self__, "trust_store_password", trust_store_password)
@@ -1992,6 +2018,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
1992
2018
  Used authentication mechanism to be provided for the following connection types:
1993
2019
  * SNOWFLAKE, AZURE_DATA_LAKE_STORAGE, ELASTICSEARCH, KAFKA_SCHEMA_REGISTRY, REDIS
1994
2020
  * JAVA_MESSAGE_SERVICE - If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required.
2021
+ * DATABRICKS - Required fields by authentication types:
2022
+ * PERSONAL_ACCESS_TOKEN: username is always 'token', user must enter password
2023
+ * OAUTH_M2M: user must enter clientId and clientSecret
1995
2024
  """
1996
2025
  return pulumi.get(self, "authentication_type")
1997
2026
 
@@ -2073,6 +2102,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
2073
2102
  * JAVA_MESSAGE_SERVICE: Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676'
2074
2103
  * SNOWFLAKE: JDBC connection URL. e.g.: 'jdbc:snowflake://<account_name>.snowflakecomputing.com/?warehouse=<warehouse-name>&db=<db-name>'
2075
2104
  * AMAZON_REDSHIFT: Connection URL. e.g.: 'jdbc:redshift://aws-redshift-instance.aaaaaaaaaaaa.us-east-2.redshift.amazonaws.com:5439/mydb'
2105
+ * DATABRICKS: Connection URL. e.g.: 'jdbc:databricks://adb-33934.4.azuredatabricks.net:443/default;transportMode=http;ssl=1;httpPath=sql/protocolv1/o/3393########44/0##3-7-hlrb'
2076
2106
  """
2077
2107
  return pulumi.get(self, "connection_url")
2078
2108
 
@@ -2157,7 +2187,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
2157
2187
  @pulumi.getter
2158
2188
  def endpoint(self) -> str:
2159
2189
  """
2160
- Azure Storage service endpoint. e.g: https://test.blob.core.windows.net
2190
+ Service endpoint. e.g for Azure Storage service: https://test.blob.core.windows.net. Optional for Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com
2161
2191
  """
2162
2192
  return pulumi.get(self, "endpoint")
2163
2193
 
@@ -2389,7 +2419,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
2389
2419
  @pulumi.getter
2390
2420
  def region(self) -> str:
2391
2421
  """
2392
- The name of the region. e.g.: us-ashburn-1
2422
+ The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
2393
2423
  """
2394
2424
  return pulumi.get(self, "region")
2395
2425
 
@@ -2475,6 +2505,14 @@ class GetConnectionsConnectionCollectionItemResult(dict):
2475
2505
  """
2476
2506
  return pulumi.get(self, "should_use_jndi")
2477
2507
 
2508
+ @property
2509
+ @pulumi.getter(name="shouldUseResourcePrincipal")
2510
+ def should_use_resource_principal(self) -> bool:
2511
+ """
2512
+ Indicates that the user intents to connect to the instance through resource principal.
2513
+ """
2514
+ return pulumi.get(self, "should_use_resource_principal")
2515
+
2478
2516
  @property
2479
2517
  @pulumi.getter(name="shouldValidateServerCertificate")
2480
2518
  def should_validate_server_certificate(self) -> bool:
@@ -2487,7 +2525,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
2487
2525
  @pulumi.getter(name="sslCa")
2488
2526
  def ssl_ca(self) -> str:
2489
2527
  """
2490
- Database Certificate - The base64 encoded content of pem file containing the server public key (for 1-way SSL).
2528
+ Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL).
2491
2529
  """
2492
2530
  return pulumi.get(self, "ssl_ca")
2493
2531
 
@@ -2575,6 +2613,14 @@ class GetConnectionsConnectionCollectionItemResult(dict):
2575
2613
  """
2576
2614
  return pulumi.get(self, "state")
2577
2615
 
2616
+ @property
2617
+ @pulumi.getter(name="storageCredentialName")
2618
+ def storage_credential_name(self) -> str:
2619
+ """
2620
+ Optional. External storage credential name to access files on object storage such as ADLS Gen2, S3 or GCS.
2621
+ """
2622
+ return pulumi.get(self, "storage_credential_name")
2623
+
2578
2624
  @property
2579
2625
  @pulumi.getter(name="streamPoolId")
2580
2626
  def stream_pool_id(self) -> str:
@@ -2615,6 +2661,14 @@ class GetConnectionsConnectionCollectionItemResult(dict):
2615
2661
  """
2616
2662
  return pulumi.get(self, "tenancy_id")
2617
2663
 
2664
+ @property
2665
+ @pulumi.getter(name="tenantId")
2666
+ def tenant_id(self) -> str:
2667
+ """
2668
+ Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
2669
+ """
2670
+ return pulumi.get(self, "tenant_id")
2671
+
2618
2672
  @property
2619
2673
  @pulumi.getter(name="timeCreated")
2620
2674
  def time_created(self) -> str:
@@ -2631,6 +2685,38 @@ class GetConnectionsConnectionCollectionItemResult(dict):
2631
2685
  """
2632
2686
  return pulumi.get(self, "time_updated")
2633
2687
 
2688
+ @property
2689
+ @pulumi.getter(name="tlsCaFile")
2690
+ def tls_ca_file(self) -> str:
2691
+ return pulumi.get(self, "tls_ca_file")
2692
+
2693
+ @property
2694
+ @pulumi.getter(name="tlsCertificateKeyFile")
2695
+ def tls_certificate_key_file(self) -> str:
2696
+ return pulumi.get(self, "tls_certificate_key_file")
2697
+
2698
+ @property
2699
+ @pulumi.getter(name="tlsCertificateKeyFilePassword")
2700
+ def tls_certificate_key_file_password(self) -> str:
2701
+ return pulumi.get(self, "tls_certificate_key_file_password")
2702
+
2703
+ @property
2704
+ @pulumi.getter(name="tlsCertificateKeyFilePasswordSecretId")
2705
+ def tls_certificate_key_file_password_secret_id(self) -> str:
2706
+ """
2707
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the password of the tls certificate key file. Note: When provided, 'tlsCertificateKeyFilePassword' field must not be provided.
2708
+ """
2709
+ return pulumi.get(self, "tls_certificate_key_file_password_secret_id")
2710
+
2711
+ @property
2712
+ @pulumi.getter(name="tlsCertificateKeyFileSecretId")
2713
+ def tls_certificate_key_file_secret_id(self) -> str:
2714
+ """
2715
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret that stores the certificate key file of the mtls connection.
2716
+ * The content of a .pem file containing the client private key (for 2-way SSL). Note: When provided, 'tlsCertificateKeyFile' field must not be provided.
2717
+ """
2718
+ return pulumi.get(self, "tls_certificate_key_file_secret_id")
2719
+
2634
2720
  @property
2635
2721
  @pulumi.getter(name="triggerRefresh")
2636
2722
  def trigger_refresh(self) -> bool:
@@ -2674,7 +2760,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
2674
2760
  @pulumi.getter(name="userId")
2675
2761
  def user_id(self) -> str:
2676
2762
  """
2677
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database/Object Storage. The user must have write access to the table they want to connect to.
2763
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure user who will access the Oracle NoSQL database. The user must have write access to the table they want to connect to. If the user is not provided, backend will default to the user who is calling the API endpoint.
2678
2764
  """
2679
2765
  return pulumi.get(self, "user_id")
2680
2766
 
@@ -2682,7 +2768,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
2682
2768
  @pulumi.getter
2683
2769
  def username(self) -> str:
2684
2770
  """
2685
- The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivity requirements defined in it.
2771
+ The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
2686
2772
  """
2687
2773
  return pulumi.get(self, "username")
2688
2774
 
@@ -17,6 +17,8 @@ from .get_fleet_crypto_analysis_results import *
17
17
  from .get_fleet_diagnoses import *
18
18
  from .get_fleet_drs_file import *
19
19
  from .get_fleet_drs_files import *
20
+ from .get_fleet_error_analytics import *
21
+ from .get_fleet_errors import *
20
22
  from .get_fleet_export_setting import *
21
23
  from .get_fleet_export_status import *
22
24
  from .get_fleet_java_migration_analysis_result import *
@@ -43,6 +45,8 @@ from .get_java_releases import *
43
45
  from .get_jms_plugin import *
44
46
  from .get_jms_plugins import *
45
47
  from .get_list_jre_usage import *
48
+ from .get_plugin_error_analytics import *
49
+ from .get_plugin_errors import *
46
50
  from .get_summarize_resource_inventory import *
47
51
  from .java_downloads_java_download_report import *
48
52
  from .java_downloads_java_download_token import *
pulumi_oci/jms/_inputs.py CHANGED
@@ -67,6 +67,10 @@ __all__ = [
67
67
  'GetFleetDiagnosesFilterArgsDict',
68
68
  'GetFleetDrsFilesFilterArgs',
69
69
  'GetFleetDrsFilesFilterArgsDict',
70
+ 'GetFleetErrorAnalyticsFilterArgs',
71
+ 'GetFleetErrorAnalyticsFilterArgsDict',
72
+ 'GetFleetErrorsFilterArgs',
73
+ 'GetFleetErrorsFilterArgsDict',
70
74
  'GetFleetJavaMigrationAnalysisResultsFilterArgs',
71
75
  'GetFleetJavaMigrationAnalysisResultsFilterArgsDict',
72
76
  'GetFleetPerformanceTuningAnalysisResultsFilterArgs',
@@ -91,6 +95,10 @@ __all__ = [
91
95
  'GetJavaReleasesFilterArgsDict',
92
96
  'GetJmsPluginsFilterArgs',
93
97
  'GetJmsPluginsFilterArgsDict',
98
+ 'GetPluginErrorAnalyticsFilterArgs',
99
+ 'GetPluginErrorAnalyticsFilterArgsDict',
100
+ 'GetPluginErrorsFilterArgs',
101
+ 'GetPluginErrorsFilterArgsDict',
94
102
  ]
95
103
 
96
104
  MYPY = False
@@ -1722,6 +1730,100 @@ class GetFleetDrsFilesFilterArgs:
1722
1730
  pulumi.set(self, "regex", value)
1723
1731
 
1724
1732
 
1733
+ if not MYPY:
1734
+ class GetFleetErrorAnalyticsFilterArgsDict(TypedDict):
1735
+ name: str
1736
+ values: Sequence[str]
1737
+ regex: NotRequired[bool]
1738
+ elif False:
1739
+ GetFleetErrorAnalyticsFilterArgsDict: TypeAlias = Mapping[str, Any]
1740
+
1741
+ @pulumi.input_type
1742
+ class GetFleetErrorAnalyticsFilterArgs:
1743
+ def __init__(__self__, *,
1744
+ name: str,
1745
+ values: Sequence[str],
1746
+ regex: Optional[bool] = None):
1747
+ pulumi.set(__self__, "name", name)
1748
+ pulumi.set(__self__, "values", values)
1749
+ if regex is not None:
1750
+ pulumi.set(__self__, "regex", regex)
1751
+
1752
+ @property
1753
+ @pulumi.getter
1754
+ def name(self) -> str:
1755
+ return pulumi.get(self, "name")
1756
+
1757
+ @name.setter
1758
+ def name(self, value: str):
1759
+ pulumi.set(self, "name", value)
1760
+
1761
+ @property
1762
+ @pulumi.getter
1763
+ def values(self) -> Sequence[str]:
1764
+ return pulumi.get(self, "values")
1765
+
1766
+ @values.setter
1767
+ def values(self, value: Sequence[str]):
1768
+ pulumi.set(self, "values", value)
1769
+
1770
+ @property
1771
+ @pulumi.getter
1772
+ def regex(self) -> Optional[bool]:
1773
+ return pulumi.get(self, "regex")
1774
+
1775
+ @regex.setter
1776
+ def regex(self, value: Optional[bool]):
1777
+ pulumi.set(self, "regex", value)
1778
+
1779
+
1780
+ if not MYPY:
1781
+ class GetFleetErrorsFilterArgsDict(TypedDict):
1782
+ name: str
1783
+ values: Sequence[str]
1784
+ regex: NotRequired[bool]
1785
+ elif False:
1786
+ GetFleetErrorsFilterArgsDict: TypeAlias = Mapping[str, Any]
1787
+
1788
+ @pulumi.input_type
1789
+ class GetFleetErrorsFilterArgs:
1790
+ def __init__(__self__, *,
1791
+ name: str,
1792
+ values: Sequence[str],
1793
+ regex: Optional[bool] = None):
1794
+ pulumi.set(__self__, "name", name)
1795
+ pulumi.set(__self__, "values", values)
1796
+ if regex is not None:
1797
+ pulumi.set(__self__, "regex", regex)
1798
+
1799
+ @property
1800
+ @pulumi.getter
1801
+ def name(self) -> str:
1802
+ return pulumi.get(self, "name")
1803
+
1804
+ @name.setter
1805
+ def name(self, value: str):
1806
+ pulumi.set(self, "name", value)
1807
+
1808
+ @property
1809
+ @pulumi.getter
1810
+ def values(self) -> Sequence[str]:
1811
+ return pulumi.get(self, "values")
1812
+
1813
+ @values.setter
1814
+ def values(self, value: Sequence[str]):
1815
+ pulumi.set(self, "values", value)
1816
+
1817
+ @property
1818
+ @pulumi.getter
1819
+ def regex(self) -> Optional[bool]:
1820
+ return pulumi.get(self, "regex")
1821
+
1822
+ @regex.setter
1823
+ def regex(self, value: Optional[bool]):
1824
+ pulumi.set(self, "regex", value)
1825
+
1826
+
1725
1827
  if not MYPY:
1726
1828
  class GetFleetJavaMigrationAnalysisResultsFilterArgsDict(TypedDict):
1727
1829
  name: str
@@ -2295,3 +2397,97 @@ class GetJmsPluginsFilterArgs:
2295
2397
  pulumi.set(self, "regex", value)
2296
2398
 
2297
2399
 
2400
+ if not MYPY:
2401
+ class GetPluginErrorAnalyticsFilterArgsDict(TypedDict):
2402
+ name: str
2403
+ values: Sequence[str]
2404
+ regex: NotRequired[bool]
2405
+ elif False:
2406
+ GetPluginErrorAnalyticsFilterArgsDict: TypeAlias = Mapping[str, Any]
2407
+
2408
+ @pulumi.input_type
2409
+ class GetPluginErrorAnalyticsFilterArgs:
2410
+ def __init__(__self__, *,
2411
+ name: str,
2412
+ values: Sequence[str],
2413
+ regex: Optional[bool] = None):
2414
+ pulumi.set(__self__, "name", name)
2415
+ pulumi.set(__self__, "values", values)
2416
+ if regex is not None:
2417
+ pulumi.set(__self__, "regex", regex)
2418
+
2419
+ @property
2420
+ @pulumi.getter
2421
+ def name(self) -> str:
2422
+ return pulumi.get(self, "name")
2423
+
2424
+ @name.setter
2425
+ def name(self, value: str):
2426
+ pulumi.set(self, "name", value)
2427
+
2428
+ @property
2429
+ @pulumi.getter
2430
+ def values(self) -> Sequence[str]:
2431
+ return pulumi.get(self, "values")
2432
+
2433
+ @values.setter
2434
+ def values(self, value: Sequence[str]):
2435
+ pulumi.set(self, "values", value)
2436
+
2437
+ @property
2438
+ @pulumi.getter
2439
+ def regex(self) -> Optional[bool]:
2440
+ return pulumi.get(self, "regex")
2441
+
2442
+ @regex.setter
2443
+ def regex(self, value: Optional[bool]):
2444
+ pulumi.set(self, "regex", value)
2445
+
2446
+
2447
+ if not MYPY:
2448
+ class GetPluginErrorsFilterArgsDict(TypedDict):
2449
+ name: str
2450
+ values: Sequence[str]
2451
+ regex: NotRequired[bool]
2452
+ elif False:
2453
+ GetPluginErrorsFilterArgsDict: TypeAlias = Mapping[str, Any]
2454
+
2455
+ @pulumi.input_type
2456
+ class GetPluginErrorsFilterArgs:
2457
+ def __init__(__self__, *,
2458
+ name: str,
2459
+ values: Sequence[str],
2460
+ regex: Optional[bool] = None):
2461
+ pulumi.set(__self__, "name", name)
2462
+ pulumi.set(__self__, "values", values)
2463
+ if regex is not None:
2464
+ pulumi.set(__self__, "regex", regex)
2465
+
2466
+ @property
2467
+ @pulumi.getter
2468
+ def name(self) -> str:
2469
+ return pulumi.get(self, "name")
2470
+
2471
+ @name.setter
2472
+ def name(self, value: str):
2473
+ pulumi.set(self, "name", value)
2474
+
2475
+ @property
2476
+ @pulumi.getter
2477
+ def values(self) -> Sequence[str]:
2478
+ return pulumi.get(self, "values")
2479
+
2480
+ @values.setter
2481
+ def values(self, value: Sequence[str]):
2482
+ pulumi.set(self, "values", value)
2483
+
2484
+ @property
2485
+ @pulumi.getter
2486
+ def regex(self) -> Optional[bool]:
2487
+ return pulumi.get(self, "regex")
2488
+
2489
+ @regex.setter
2490
+ def regex(self, value: Optional[bool]):
2491
+ pulumi.set(self, "regex", value)
2492
+
2493
+