pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.4.0a1755922408__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 (198) hide show
  1. pulumi_oci/__init__.py +168 -43
  2. pulumi_oci/aidocument/__init__.py +1 -0
  3. pulumi_oci/aidocument/_inputs.py +476 -6
  4. pulumi_oci/aidocument/get_model.py +63 -2
  5. pulumi_oci/aidocument/get_model_type.py +179 -0
  6. pulumi_oci/aidocument/get_models.py +1 -1
  7. pulumi_oci/aidocument/get_project.py +17 -2
  8. pulumi_oci/aidocument/get_projects.py +1 -1
  9. pulumi_oci/aidocument/model.py +188 -0
  10. pulumi_oci/aidocument/outputs.py +883 -8
  11. pulumi_oci/aidocument/processor_job.py +22 -4
  12. pulumi_oci/aidocument/project.py +50 -1
  13. pulumi_oci/apigateway/_inputs.py +608 -12
  14. pulumi_oci/apigateway/api.py +127 -38
  15. pulumi_oci/apigateway/certificate.py +122 -3
  16. pulumi_oci/apigateway/deployment.py +120 -3
  17. pulumi_oci/apigateway/gateway.py +124 -7
  18. pulumi_oci/apigateway/get_api.py +40 -1
  19. pulumi_oci/apigateway/get_certificate.py +41 -1
  20. pulumi_oci/apigateway/get_deployment.py +40 -1
  21. pulumi_oci/apigateway/get_gateway.py +40 -1
  22. pulumi_oci/apigateway/get_subscriber.py +40 -1
  23. pulumi_oci/apigateway/get_usage_plan.py +40 -1
  24. pulumi_oci/apigateway/outputs.py +1413 -39
  25. pulumi_oci/apigateway/subscriber.py +120 -3
  26. pulumi_oci/apigateway/usage_plan.py +127 -38
  27. pulumi_oci/apmconfig/_inputs.py +199 -15
  28. pulumi_oci/apmconfig/config.py +535 -17
  29. pulumi_oci/apmconfig/get_config.py +141 -1
  30. pulumi_oci/apmconfig/get_configs.py +2 -2
  31. pulumi_oci/apmconfig/outputs.py +509 -13
  32. pulumi_oci/apmtraces/__init__.py +5 -0
  33. pulumi_oci/apmtraces/_inputs.py +413 -0
  34. pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
  35. pulumi_oci/apmtraces/get_log.py +356 -0
  36. pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
  37. pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
  38. pulumi_oci/apmtraces/get_trace.py +4 -4
  39. pulumi_oci/apmtraces/outputs.py +971 -0
  40. pulumi_oci/apmtraces/scheduled_query.py +925 -0
  41. pulumi_oci/autoscaling/_inputs.py +177 -13
  42. pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
  43. pulumi_oci/autoscaling/outputs.py +269 -23
  44. pulumi_oci/core/_inputs.py +184 -0
  45. pulumi_oci/core/get_ipv6.py +15 -1
  46. pulumi_oci/core/ipv6.py +49 -0
  47. pulumi_oci/core/outputs.py +365 -0
  48. pulumi_oci/database/__init__.py +3 -0
  49. pulumi_oci/database/_inputs.py +139 -7
  50. pulumi_oci/database/autonomous_container_database.py +94 -0
  51. pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
  52. pulumi_oci/database/autonomous_database.py +578 -568
  53. pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
  54. pulumi_oci/database/get_autonomous_container_database.py +29 -1
  55. pulumi_oci/database/get_autonomous_database.py +65 -1
  56. pulumi_oci/database/get_autonomous_databases.py +6 -1
  57. pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
  58. pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
  59. pulumi_oci/database/outputs.py +470 -75
  60. pulumi_oci/database/pluggable_database.py +0 -14
  61. pulumi_oci/database/pluggable_database_snapshot.py +539 -0
  62. pulumi_oci/databasemanagement/__init__.py +37 -0
  63. pulumi_oci/databasemanagement/_inputs.py +9516 -3414
  64. pulumi_oci/databasemanagement/cloud_asm.py +791 -0
  65. pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
  66. pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
  67. pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
  68. pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
  69. pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
  70. pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
  71. pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
  72. pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
  73. pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
  74. pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
  75. pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
  76. pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
  77. pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
  78. pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
  79. pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
  80. pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
  81. pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
  82. pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
  83. pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
  84. pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
  85. pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
  86. pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
  87. pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
  88. pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
  89. pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
  90. pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
  91. pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
  92. pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
  93. pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
  94. pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
  95. pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
  96. pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
  97. pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
  98. pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
  99. pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
  100. pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
  101. pulumi_oci/databasemanagement/get_managed_database.py +2 -2
  102. pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
  105. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
  106. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
  107. pulumi_oci/databasemanagement/outputs.py +18049 -4222
  108. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
  109. pulumi_oci/datasafe/get_security_assessment_findings.py +2 -2
  110. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  111. pulumi_oci/datasafe/outputs.py +192 -2
  112. pulumi_oci/datascience/__init__.py +10 -0
  113. pulumi_oci/datascience/_inputs.py +6760 -2206
  114. pulumi_oci/datascience/get_job.py +15 -1
  115. pulumi_oci/datascience/get_job_run.py +44 -2
  116. pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
  117. pulumi_oci/datascience/get_model_group.py +405 -0
  118. pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
  119. pulumi_oci/datascience/get_model_group_models.py +240 -0
  120. pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
  121. pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
  122. pulumi_oci/datascience/get_model_groups.py +265 -0
  123. pulumi_oci/datascience/get_pipeline_run.py +15 -1
  124. pulumi_oci/datascience/job.py +81 -154
  125. pulumi_oci/datascience/job_run.py +250 -4
  126. pulumi_oci/datascience/model_group.py +1111 -0
  127. pulumi_oci/datascience/model_group_artifact.py +369 -0
  128. pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
  129. pulumi_oci/datascience/notebook_session.py +4 -0
  130. pulumi_oci/datascience/outputs.py +17168 -8021
  131. pulumi_oci/datascience/pipeline_run.py +87 -0
  132. pulumi_oci/goldengate/_inputs.py +3 -3
  133. pulumi_oci/goldengate/connection.py +175 -56
  134. pulumi_oci/goldengate/get_connection.py +20 -4
  135. pulumi_oci/goldengate/outputs.py +27 -8
  136. pulumi_oci/managementagent/__init__.py +4 -0
  137. pulumi_oci/managementagent/_inputs.py +129 -0
  138. pulumi_oci/managementagent/get_management_agent.py +26 -1
  139. pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
  140. pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
  141. pulumi_oci/managementagent/get_named_credential.py +268 -0
  142. pulumi_oci/managementagent/get_named_credentials.py +221 -0
  143. pulumi_oci/managementagent/management_agent.py +48 -0
  144. pulumi_oci/managementagent/management_agent_install_key.py +84 -0
  145. pulumi_oci/managementagent/named_credential.py +706 -0
  146. pulumi_oci/managementagent/outputs.py +515 -0
  147. pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
  148. pulumi_oci/oci/__init__.py +3 -0
  149. pulumi_oci/oci/_inputs.py +146 -0
  150. pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
  151. pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
  152. pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
  153. pulumi_oci/oci/outputs.py +367 -0
  154. pulumi_oci/opsi/_inputs.py +1001 -149
  155. pulumi_oci/opsi/database_insight.py +22 -3
  156. pulumi_oci/opsi/exadata_insight.py +86 -6
  157. pulumi_oci/opsi/outputs.py +1438 -178
  158. pulumi_oci/psql/configuration.py +109 -19
  159. pulumi_oci/psql/db_system.py +7 -7
  160. pulumi_oci/psql/get_configuration.py +30 -2
  161. pulumi_oci/psql/get_configurations.py +49 -5
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_default_configuration.py +30 -4
  164. pulumi_oci/psql/get_default_configurations.py +49 -5
  165. pulumi_oci/psql/outputs.py +47 -14
  166. pulumi_oci/pulumi-plugin.json +1 -1
  167. pulumi_oci/redis/__init__.py +6 -0
  168. pulumi_oci/redis/_inputs.py +217 -0
  169. pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
  170. pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
  171. pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
  172. pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
  173. pulumi_oci/redis/get_redis_cluster.py +15 -1
  174. pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
  175. pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
  176. pulumi_oci/redis/outputs.py +713 -0
  177. pulumi_oci/redis/redis_cluster.py +49 -0
  178. pulumi_oci/vault/_inputs.py +198 -0
  179. pulumi_oci/vault/get_secret.py +43 -1
  180. pulumi_oci/vault/outputs.py +434 -0
  181. pulumi_oci/vault/secret.py +103 -0
  182. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/RECORD +185 -134
  184. pulumi_oci/aianomalydetection/__init__.py +0 -25
  185. pulumi_oci/aianomalydetection/_inputs.py +0 -1742
  186. pulumi_oci/aianomalydetection/ai_private_endpoint.py +0 -643
  187. pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
  188. pulumi_oci/aianomalydetection/get_ai_private_endpoint.py +0 -281
  189. pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
  190. pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
  191. pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
  192. pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
  193. pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
  194. pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
  195. pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
  196. pulumi_oci/aianomalydetection/outputs.py +0 -3699
  197. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/top_level.txt +0 -0
@@ -15,12 +15,20 @@ else:
15
15
  from .. import _utilities
16
16
 
17
17
  __all__ = [
18
+ 'ConfigConfigArgs',
19
+ 'ConfigConfigArgsDict',
20
+ 'ConfigConfigConfigMapArgs',
21
+ 'ConfigConfigConfigMapArgsDict',
18
22
  'ConfigDimensionArgs',
19
23
  'ConfigDimensionArgsDict',
20
24
  'ConfigInUseByArgs',
21
25
  'ConfigInUseByArgsDict',
22
26
  'ConfigMetricArgs',
23
27
  'ConfigMetricArgsDict',
28
+ 'ConfigOverridesArgs',
29
+ 'ConfigOverridesArgsDict',
30
+ 'ConfigOverridesOverrideListArgs',
31
+ 'ConfigOverridesOverrideListArgsDict',
24
32
  'ConfigRuleArgs',
25
33
  'ConfigRuleArgsDict',
26
34
  'GetConfigsFilterArgs',
@@ -29,6 +37,110 @@ __all__ = [
29
37
 
30
38
  MYPY = False
31
39
 
40
+ if not MYPY:
41
+ class ConfigConfigArgsDict(TypedDict):
42
+ config_maps: NotRequired[pulumi.Input[Sequence[pulumi.Input['ConfigConfigConfigMapArgsDict']]]]
43
+ """
44
+ (Updatable) Map of an agent configuration file.
45
+ """
46
+ elif False:
47
+ ConfigConfigArgsDict: TypeAlias = Mapping[str, Any]
48
+
49
+ @pulumi.input_type
50
+ class ConfigConfigArgs:
51
+ def __init__(__self__, *,
52
+ config_maps: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigConfigConfigMapArgs']]]] = None):
53
+ """
54
+ :param pulumi.Input[Sequence[pulumi.Input['ConfigConfigConfigMapArgs']]] config_maps: (Updatable) Map of an agent configuration file.
55
+ """
56
+ if config_maps is not None:
57
+ pulumi.set(__self__, "config_maps", config_maps)
58
+
59
+ @_builtins.property
60
+ @pulumi.getter(name="configMaps")
61
+ def config_maps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConfigConfigConfigMapArgs']]]]:
62
+ """
63
+ (Updatable) Map of an agent configuration file.
64
+ """
65
+ return pulumi.get(self, "config_maps")
66
+
67
+ @config_maps.setter
68
+ def config_maps(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigConfigConfigMapArgs']]]]):
69
+ pulumi.set(self, "config_maps", value)
70
+
71
+
72
+ if not MYPY:
73
+ class ConfigConfigConfigMapArgsDict(TypedDict):
74
+ body: NotRequired[pulumi.Input[_builtins.str]]
75
+ """
76
+ The Base64 encoded agent configuration file.
77
+ """
78
+ content_type: NotRequired[pulumi.Input[_builtins.str]]
79
+ """
80
+ (Updatable) The MIME Content-Type that describes the content of the body field, for example, text/yaml or text/yaml; charset=utf-8
81
+ """
82
+ file_name: NotRequired[pulumi.Input[_builtins.str]]
83
+ """
84
+ (Updatable) An agent configuration file name.
85
+ """
86
+ elif False:
87
+ ConfigConfigConfigMapArgsDict: TypeAlias = Mapping[str, Any]
88
+
89
+ @pulumi.input_type
90
+ class ConfigConfigConfigMapArgs:
91
+ def __init__(__self__, *,
92
+ body: Optional[pulumi.Input[_builtins.str]] = None,
93
+ content_type: Optional[pulumi.Input[_builtins.str]] = None,
94
+ file_name: Optional[pulumi.Input[_builtins.str]] = None):
95
+ """
96
+ :param pulumi.Input[_builtins.str] body: The Base64 encoded agent configuration file.
97
+ :param pulumi.Input[_builtins.str] content_type: (Updatable) The MIME Content-Type that describes the content of the body field, for example, text/yaml or text/yaml; charset=utf-8
98
+ :param pulumi.Input[_builtins.str] file_name: (Updatable) An agent configuration file name.
99
+ """
100
+ if body is not None:
101
+ pulumi.set(__self__, "body", body)
102
+ if content_type is not None:
103
+ pulumi.set(__self__, "content_type", content_type)
104
+ if file_name is not None:
105
+ pulumi.set(__self__, "file_name", file_name)
106
+
107
+ @_builtins.property
108
+ @pulumi.getter
109
+ def body(self) -> Optional[pulumi.Input[_builtins.str]]:
110
+ """
111
+ The Base64 encoded agent configuration file.
112
+ """
113
+ return pulumi.get(self, "body")
114
+
115
+ @body.setter
116
+ def body(self, value: Optional[pulumi.Input[_builtins.str]]):
117
+ pulumi.set(self, "body", value)
118
+
119
+ @_builtins.property
120
+ @pulumi.getter(name="contentType")
121
+ def content_type(self) -> Optional[pulumi.Input[_builtins.str]]:
122
+ """
123
+ (Updatable) The MIME Content-Type that describes the content of the body field, for example, text/yaml or text/yaml; charset=utf-8
124
+ """
125
+ return pulumi.get(self, "content_type")
126
+
127
+ @content_type.setter
128
+ def content_type(self, value: Optional[pulumi.Input[_builtins.str]]):
129
+ pulumi.set(self, "content_type", value)
130
+
131
+ @_builtins.property
132
+ @pulumi.getter(name="fileName")
133
+ def file_name(self) -> Optional[pulumi.Input[_builtins.str]]:
134
+ """
135
+ (Updatable) An agent configuration file name.
136
+ """
137
+ return pulumi.get(self, "file_name")
138
+
139
+ @file_name.setter
140
+ def file_name(self, value: Optional[pulumi.Input[_builtins.str]]):
141
+ pulumi.set(self, "file_name", value)
142
+
143
+
32
144
  if not MYPY:
33
145
  class ConfigDimensionArgsDict(TypedDict):
34
146
  name: NotRequired[pulumi.Input[_builtins.str]]
@@ -265,6 +377,90 @@ class ConfigMetricArgs:
265
377
  pulumi.set(self, "value_source", value)
266
378
 
267
379
 
380
+ if not MYPY:
381
+ class ConfigOverridesArgsDict(TypedDict):
382
+ override_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input['ConfigOverridesOverrideListArgsDict']]]]
383
+ """
384
+ (Updatable)
385
+ """
386
+ elif False:
387
+ ConfigOverridesArgsDict: TypeAlias = Mapping[str, Any]
388
+
389
+ @pulumi.input_type
390
+ class ConfigOverridesArgs:
391
+ def __init__(__self__, *,
392
+ override_lists: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigOverridesOverrideListArgs']]]] = None):
393
+ """
394
+ :param pulumi.Input[Sequence[pulumi.Input['ConfigOverridesOverrideListArgs']]] override_lists: (Updatable)
395
+ """
396
+ if override_lists is not None:
397
+ pulumi.set(__self__, "override_lists", override_lists)
398
+
399
+ @_builtins.property
400
+ @pulumi.getter(name="overrideLists")
401
+ def override_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConfigOverridesOverrideListArgs']]]]:
402
+ """
403
+ (Updatable)
404
+ """
405
+ return pulumi.get(self, "override_lists")
406
+
407
+ @override_lists.setter
408
+ def override_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigOverridesOverrideListArgs']]]]):
409
+ pulumi.set(self, "override_lists", value)
410
+
411
+
412
+ if not MYPY:
413
+ class ConfigOverridesOverrideListArgsDict(TypedDict):
414
+ agent_filter: NotRequired[pulumi.Input[_builtins.str]]
415
+ """
416
+ (Updatable) The string that defines the Agent Filter expression.
417
+ """
418
+ override_map: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]
419
+ """
420
+ (Updatable) A map whose key is a substitution variable specified within the configuration's body. For example, if below was specified in the configuration's body {{ isJfrEnabled | default false }} Then a valid map key would be "isJfrEnabled". The value is typically different than the default specified in the configuration's body. Thus, in this example, the map entry could be "isJfrEnabled": true
421
+ """
422
+ elif False:
423
+ ConfigOverridesOverrideListArgsDict: TypeAlias = Mapping[str, Any]
424
+
425
+ @pulumi.input_type
426
+ class ConfigOverridesOverrideListArgs:
427
+ def __init__(__self__, *,
428
+ agent_filter: Optional[pulumi.Input[_builtins.str]] = None,
429
+ override_map: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
430
+ """
431
+ :param pulumi.Input[_builtins.str] agent_filter: (Updatable) The string that defines the Agent Filter expression.
432
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] override_map: (Updatable) A map whose key is a substitution variable specified within the configuration's body. For example, if below was specified in the configuration's body {{ isJfrEnabled | default false }} Then a valid map key would be "isJfrEnabled". The value is typically different than the default specified in the configuration's body. Thus, in this example, the map entry could be "isJfrEnabled": true
433
+ """
434
+ if agent_filter is not None:
435
+ pulumi.set(__self__, "agent_filter", agent_filter)
436
+ if override_map is not None:
437
+ pulumi.set(__self__, "override_map", override_map)
438
+
439
+ @_builtins.property
440
+ @pulumi.getter(name="agentFilter")
441
+ def agent_filter(self) -> Optional[pulumi.Input[_builtins.str]]:
442
+ """
443
+ (Updatable) The string that defines the Agent Filter expression.
444
+ """
445
+ return pulumi.get(self, "agent_filter")
446
+
447
+ @agent_filter.setter
448
+ def agent_filter(self, value: Optional[pulumi.Input[_builtins.str]]):
449
+ pulumi.set(self, "agent_filter", value)
450
+
451
+ @_builtins.property
452
+ @pulumi.getter(name="overrideMap")
453
+ def override_map(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
454
+ """
455
+ (Updatable) A map whose key is a substitution variable specified within the configuration's body. For example, if below was specified in the configuration's body {{ isJfrEnabled | default false }} Then a valid map key would be "isJfrEnabled". The value is typically different than the default specified in the configuration's body. Thus, in this example, the map entry could be "isJfrEnabled": true
456
+ """
457
+ return pulumi.get(self, "override_map")
458
+
459
+ @override_map.setter
460
+ def override_map(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
461
+ pulumi.set(self, "override_map", value)
462
+
463
+
268
464
  if not MYPY:
269
465
  class ConfigRuleArgsDict(TypedDict):
270
466
  display_name: NotRequired[pulumi.Input[_builtins.str]]
@@ -293,11 +489,7 @@ if not MYPY:
293
489
  """
294
490
  tolerating_response_time: NotRequired[pulumi.Input[_builtins.int]]
295
491
  """
296
- (Updatable) The maximum response time in milliseconds that is considered "tolerable" for the end user. A response time beyond this threshold is considered "frustrating". This value cannot be lower than "satisfiedResponseTime".
297
-
298
-
299
- ** IMPORTANT **
300
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
492
+ (Updatable) The maximum response time in milliseconds that is considered "tolerable" for the end user. A response time beyond this threshold is considered "frustrating". This value cannot be lower than "satisfiedResponseTime".
301
493
  """
302
494
  elif False:
303
495
  ConfigRuleArgsDict: TypeAlias = Mapping[str, Any]
@@ -319,11 +511,7 @@ class ConfigRuleArgs:
319
511
  :param pulumi.Input[_builtins.bool] is_enabled: (Updatable) Specifies whether the Apdex score should be computed for spans matching the rule. This can be used to disable Apdex score for spans that do not need or require it. The default is "true".
320
512
  :param pulumi.Input[_builtins.int] priority: (Updatable) The priority controls the order in which multiple rules in a rule set are applied. Lower values indicate higher priorities. Rules with higher priority are applied first, and once a match is found, the rest of the rules are ignored. Rules within the same rule set cannot have the same priority.
321
513
  :param pulumi.Input[_builtins.int] satisfied_response_time: (Updatable) The maximum response time in milliseconds that is considered "satisfactory" for the end user.
322
- :param pulumi.Input[_builtins.int] tolerating_response_time: (Updatable) The maximum response time in milliseconds that is considered "tolerable" for the end user. A response time beyond this threshold is considered "frustrating". This value cannot be lower than "satisfiedResponseTime".
323
-
324
-
325
- ** IMPORTANT **
326
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
514
+ :param pulumi.Input[_builtins.int] tolerating_response_time: (Updatable) The maximum response time in milliseconds that is considered "tolerable" for the end user. A response time beyond this threshold is considered "frustrating". This value cannot be lower than "satisfiedResponseTime".
327
515
  """
328
516
  if display_name is not None:
329
517
  pulumi.set(__self__, "display_name", display_name)
@@ -416,11 +604,7 @@ class ConfigRuleArgs:
416
604
  @pulumi.getter(name="toleratingResponseTime")
417
605
  def tolerating_response_time(self) -> Optional[pulumi.Input[_builtins.int]]:
418
606
  """
419
- (Updatable) The maximum response time in milliseconds that is considered "tolerable" for the end user. A response time beyond this threshold is considered "frustrating". This value cannot be lower than "satisfiedResponseTime".
420
-
421
-
422
- ** IMPORTANT **
423
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
607
+ (Updatable) The maximum response time in milliseconds that is considered "tolerable" for the end user. A response time beyond this threshold is considered "frustrating". This value cannot be lower than "satisfiedResponseTime".
424
608
  """
425
609
  return pulumi.get(self, "tolerating_response_time")
426
610