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
@@ -16,23 +16,133 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'ConfigConfig',
20
+ 'ConfigConfigConfigMap',
19
21
  'ConfigDimension',
20
22
  'ConfigInUseBy',
21
23
  'ConfigMetric',
24
+ 'ConfigOverrides',
25
+ 'ConfigOverridesOverrideList',
22
26
  'ConfigRule',
27
+ 'GetConfigConfigResult',
28
+ 'GetConfigConfigConfigMapResult',
23
29
  'GetConfigDimensionResult',
24
30
  'GetConfigInUseByResult',
25
31
  'GetConfigMetricResult',
32
+ 'GetConfigOverrideResult',
33
+ 'GetConfigOverrideOverrideListResult',
26
34
  'GetConfigRuleResult',
27
35
  'GetConfigsConfigCollectionResult',
28
36
  'GetConfigsConfigCollectionItemResult',
37
+ 'GetConfigsConfigCollectionItemConfigResult',
38
+ 'GetConfigsConfigCollectionItemConfigConfigMapResult',
29
39
  'GetConfigsConfigCollectionItemDimensionResult',
30
40
  'GetConfigsConfigCollectionItemInUseByResult',
31
41
  'GetConfigsConfigCollectionItemMetricResult',
42
+ 'GetConfigsConfigCollectionItemOverrideResult',
43
+ 'GetConfigsConfigCollectionItemOverrideOverrideListResult',
32
44
  'GetConfigsConfigCollectionItemRuleResult',
33
45
  'GetConfigsFilterResult',
34
46
  ]
35
47
 
48
+ @pulumi.output_type
49
+ class ConfigConfig(dict):
50
+ @staticmethod
51
+ def __key_warning(key: str):
52
+ suggest = None
53
+ if key == "configMaps":
54
+ suggest = "config_maps"
55
+
56
+ if suggest:
57
+ pulumi.log.warn(f"Key '{key}' not found in ConfigConfig. Access the value via the '{suggest}' property getter instead.")
58
+
59
+ def __getitem__(self, key: str) -> Any:
60
+ ConfigConfig.__key_warning(key)
61
+ return super().__getitem__(key)
62
+
63
+ def get(self, key: str, default = None) -> Any:
64
+ ConfigConfig.__key_warning(key)
65
+ return super().get(key, default)
66
+
67
+ def __init__(__self__, *,
68
+ config_maps: Optional[Sequence['outputs.ConfigConfigConfigMap']] = None):
69
+ """
70
+ :param Sequence['ConfigConfigConfigMapArgs'] config_maps: (Updatable) Map of an agent configuration file.
71
+ """
72
+ if config_maps is not None:
73
+ pulumi.set(__self__, "config_maps", config_maps)
74
+
75
+ @_builtins.property
76
+ @pulumi.getter(name="configMaps")
77
+ def config_maps(self) -> Optional[Sequence['outputs.ConfigConfigConfigMap']]:
78
+ """
79
+ (Updatable) Map of an agent configuration file.
80
+ """
81
+ return pulumi.get(self, "config_maps")
82
+
83
+
84
+ @pulumi.output_type
85
+ class ConfigConfigConfigMap(dict):
86
+ @staticmethod
87
+ def __key_warning(key: str):
88
+ suggest = None
89
+ if key == "contentType":
90
+ suggest = "content_type"
91
+ elif key == "fileName":
92
+ suggest = "file_name"
93
+
94
+ if suggest:
95
+ pulumi.log.warn(f"Key '{key}' not found in ConfigConfigConfigMap. Access the value via the '{suggest}' property getter instead.")
96
+
97
+ def __getitem__(self, key: str) -> Any:
98
+ ConfigConfigConfigMap.__key_warning(key)
99
+ return super().__getitem__(key)
100
+
101
+ def get(self, key: str, default = None) -> Any:
102
+ ConfigConfigConfigMap.__key_warning(key)
103
+ return super().get(key, default)
104
+
105
+ def __init__(__self__, *,
106
+ body: Optional[_builtins.str] = None,
107
+ content_type: Optional[_builtins.str] = None,
108
+ file_name: Optional[_builtins.str] = None):
109
+ """
110
+ :param _builtins.str body: The Base64 encoded agent configuration file.
111
+ :param _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
112
+ :param _builtins.str file_name: (Updatable) An agent configuration file name.
113
+ """
114
+ if body is not None:
115
+ pulumi.set(__self__, "body", body)
116
+ if content_type is not None:
117
+ pulumi.set(__self__, "content_type", content_type)
118
+ if file_name is not None:
119
+ pulumi.set(__self__, "file_name", file_name)
120
+
121
+ @_builtins.property
122
+ @pulumi.getter
123
+ def body(self) -> Optional[_builtins.str]:
124
+ """
125
+ The Base64 encoded agent configuration file.
126
+ """
127
+ return pulumi.get(self, "body")
128
+
129
+ @_builtins.property
130
+ @pulumi.getter(name="contentType")
131
+ def content_type(self) -> Optional[_builtins.str]:
132
+ """
133
+ (Updatable) The MIME Content-Type that describes the content of the body field, for example, text/yaml or text/yaml; charset=utf-8
134
+ """
135
+ return pulumi.get(self, "content_type")
136
+
137
+ @_builtins.property
138
+ @pulumi.getter(name="fileName")
139
+ def file_name(self) -> Optional[_builtins.str]:
140
+ """
141
+ (Updatable) An agent configuration file name.
142
+ """
143
+ return pulumi.get(self, "file_name")
144
+
145
+
36
146
  @pulumi.output_type
37
147
  class ConfigDimension(dict):
38
148
  @staticmethod
@@ -229,6 +339,92 @@ class ConfigMetric(dict):
229
339
  return pulumi.get(self, "value_source")
230
340
 
231
341
 
342
+ @pulumi.output_type
343
+ class ConfigOverrides(dict):
344
+ @staticmethod
345
+ def __key_warning(key: str):
346
+ suggest = None
347
+ if key == "overrideLists":
348
+ suggest = "override_lists"
349
+
350
+ if suggest:
351
+ pulumi.log.warn(f"Key '{key}' not found in ConfigOverrides. Access the value via the '{suggest}' property getter instead.")
352
+
353
+ def __getitem__(self, key: str) -> Any:
354
+ ConfigOverrides.__key_warning(key)
355
+ return super().__getitem__(key)
356
+
357
+ def get(self, key: str, default = None) -> Any:
358
+ ConfigOverrides.__key_warning(key)
359
+ return super().get(key, default)
360
+
361
+ def __init__(__self__, *,
362
+ override_lists: Optional[Sequence['outputs.ConfigOverridesOverrideList']] = None):
363
+ """
364
+ :param Sequence['ConfigOverridesOverrideListArgs'] override_lists: (Updatable)
365
+ """
366
+ if override_lists is not None:
367
+ pulumi.set(__self__, "override_lists", override_lists)
368
+
369
+ @_builtins.property
370
+ @pulumi.getter(name="overrideLists")
371
+ def override_lists(self) -> Optional[Sequence['outputs.ConfigOverridesOverrideList']]:
372
+ """
373
+ (Updatable)
374
+ """
375
+ return pulumi.get(self, "override_lists")
376
+
377
+
378
+ @pulumi.output_type
379
+ class ConfigOverridesOverrideList(dict):
380
+ @staticmethod
381
+ def __key_warning(key: str):
382
+ suggest = None
383
+ if key == "agentFilter":
384
+ suggest = "agent_filter"
385
+ elif key == "overrideMap":
386
+ suggest = "override_map"
387
+
388
+ if suggest:
389
+ pulumi.log.warn(f"Key '{key}' not found in ConfigOverridesOverrideList. Access the value via the '{suggest}' property getter instead.")
390
+
391
+ def __getitem__(self, key: str) -> Any:
392
+ ConfigOverridesOverrideList.__key_warning(key)
393
+ return super().__getitem__(key)
394
+
395
+ def get(self, key: str, default = None) -> Any:
396
+ ConfigOverridesOverrideList.__key_warning(key)
397
+ return super().get(key, default)
398
+
399
+ def __init__(__self__, *,
400
+ agent_filter: Optional[_builtins.str] = None,
401
+ override_map: Optional[Mapping[str, _builtins.str]] = None):
402
+ """
403
+ :param _builtins.str agent_filter: (Updatable) The string that defines the Agent Filter expression.
404
+ :param Mapping[str, _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
405
+ """
406
+ if agent_filter is not None:
407
+ pulumi.set(__self__, "agent_filter", agent_filter)
408
+ if override_map is not None:
409
+ pulumi.set(__self__, "override_map", override_map)
410
+
411
+ @_builtins.property
412
+ @pulumi.getter(name="agentFilter")
413
+ def agent_filter(self) -> Optional[_builtins.str]:
414
+ """
415
+ (Updatable) The string that defines the Agent Filter expression.
416
+ """
417
+ return pulumi.get(self, "agent_filter")
418
+
419
+ @_builtins.property
420
+ @pulumi.getter(name="overrideMap")
421
+ def override_map(self) -> Optional[Mapping[str, _builtins.str]]:
422
+ """
423
+ (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
424
+ """
425
+ return pulumi.get(self, "override_map")
426
+
427
+
232
428
  @pulumi.output_type
233
429
  class ConfigRule(dict):
234
430
  @staticmethod
@@ -273,11 +469,7 @@ class ConfigRule(dict):
273
469
  :param _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".
274
470
  :param _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.
275
471
  :param _builtins.int satisfied_response_time: (Updatable) The maximum response time in milliseconds that is considered "satisfactory" for the end user.
276
- :param _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".
277
-
278
-
279
- ** IMPORTANT **
280
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
472
+ :param _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".
281
473
  """
282
474
  if display_name is not None:
283
475
  pulumi.set(__self__, "display_name", display_name)
@@ -346,13 +538,67 @@ class ConfigRule(dict):
346
538
  @pulumi.getter(name="toleratingResponseTime")
347
539
  def tolerating_response_time(self) -> Optional[_builtins.int]:
348
540
  """
349
- (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".
541
+ (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".
542
+ """
543
+ return pulumi.get(self, "tolerating_response_time")
350
544
 
351
545
 
352
- ** IMPORTANT **
353
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
546
+ @pulumi.output_type
547
+ class GetConfigConfigResult(dict):
548
+ def __init__(__self__, *,
549
+ config_maps: Sequence['outputs.GetConfigConfigConfigMapResult']):
354
550
  """
355
- return pulumi.get(self, "tolerating_response_time")
551
+ :param Sequence['GetConfigConfigConfigMapArgs'] config_maps: Map of an agent configuration file.
552
+ """
553
+ pulumi.set(__self__, "config_maps", config_maps)
554
+
555
+ @_builtins.property
556
+ @pulumi.getter(name="configMaps")
557
+ def config_maps(self) -> Sequence['outputs.GetConfigConfigConfigMapResult']:
558
+ """
559
+ Map of an agent configuration file.
560
+ """
561
+ return pulumi.get(self, "config_maps")
562
+
563
+
564
+ @pulumi.output_type
565
+ class GetConfigConfigConfigMapResult(dict):
566
+ def __init__(__self__, *,
567
+ body: _builtins.str,
568
+ content_type: _builtins.str,
569
+ file_name: _builtins.str):
570
+ """
571
+ :param _builtins.str body: The Base64 encoded agent configuration file.
572
+ :param _builtins.str content_type: The MIME Content-Type that describes the content of the body field, for example, text/yaml or text/yaml; charset=utf-8
573
+ :param _builtins.str file_name: An agent configuration file name.
574
+ """
575
+ pulumi.set(__self__, "body", body)
576
+ pulumi.set(__self__, "content_type", content_type)
577
+ pulumi.set(__self__, "file_name", file_name)
578
+
579
+ @_builtins.property
580
+ @pulumi.getter
581
+ def body(self) -> _builtins.str:
582
+ """
583
+ The Base64 encoded agent configuration file.
584
+ """
585
+ return pulumi.get(self, "body")
586
+
587
+ @_builtins.property
588
+ @pulumi.getter(name="contentType")
589
+ def content_type(self) -> _builtins.str:
590
+ """
591
+ The MIME Content-Type that describes the content of the body field, for example, text/yaml or text/yaml; charset=utf-8
592
+ """
593
+ return pulumi.get(self, "content_type")
594
+
595
+ @_builtins.property
596
+ @pulumi.getter(name="fileName")
597
+ def file_name(self) -> _builtins.str:
598
+ """
599
+ An agent configuration file name.
600
+ """
601
+ return pulumi.get(self, "file_name")
356
602
 
357
603
 
358
604
  @pulumi.output_type
@@ -486,6 +732,47 @@ class GetConfigMetricResult(dict):
486
732
  return pulumi.get(self, "value_source")
487
733
 
488
734
 
735
+ @pulumi.output_type
736
+ class GetConfigOverrideResult(dict):
737
+ def __init__(__self__, *,
738
+ override_lists: Sequence['outputs.GetConfigOverrideOverrideListResult']):
739
+ pulumi.set(__self__, "override_lists", override_lists)
740
+
741
+ @_builtins.property
742
+ @pulumi.getter(name="overrideLists")
743
+ def override_lists(self) -> Sequence['outputs.GetConfigOverrideOverrideListResult']:
744
+ return pulumi.get(self, "override_lists")
745
+
746
+
747
+ @pulumi.output_type
748
+ class GetConfigOverrideOverrideListResult(dict):
749
+ def __init__(__self__, *,
750
+ agent_filter: _builtins.str,
751
+ override_map: Mapping[str, _builtins.str]):
752
+ """
753
+ :param _builtins.str agent_filter: The string that defines the Agent Filter expression.
754
+ :param Mapping[str, _builtins.str] override_map: 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
755
+ """
756
+ pulumi.set(__self__, "agent_filter", agent_filter)
757
+ pulumi.set(__self__, "override_map", override_map)
758
+
759
+ @_builtins.property
760
+ @pulumi.getter(name="agentFilter")
761
+ def agent_filter(self) -> _builtins.str:
762
+ """
763
+ The string that defines the Agent Filter expression.
764
+ """
765
+ return pulumi.get(self, "agent_filter")
766
+
767
+ @_builtins.property
768
+ @pulumi.getter(name="overrideMap")
769
+ def override_map(self) -> Mapping[str, _builtins.str]:
770
+ """
771
+ 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
772
+ """
773
+ return pulumi.get(self, "override_map")
774
+
775
+
489
776
  @pulumi.output_type
490
777
  class GetConfigRuleResult(dict):
491
778
  def __init__(__self__, *,
@@ -585,8 +872,11 @@ class GetConfigsConfigCollectionResult(dict):
585
872
  @pulumi.output_type
586
873
  class GetConfigsConfigCollectionItemResult(dict):
587
874
  def __init__(__self__, *,
875
+ agent_version: _builtins.str,
588
876
  apm_domain_id: _builtins.str,
877
+ attach_install_dir: _builtins.str,
589
878
  config_type: _builtins.str,
879
+ configs: Sequence['outputs.GetConfigsConfigCollectionItemConfigResult'],
590
880
  created_by: _builtins.str,
591
881
  defined_tags: Mapping[str, _builtins.str],
592
882
  description: _builtins.str,
@@ -599,17 +889,27 @@ class GetConfigsConfigCollectionItemResult(dict):
599
889
  group: _builtins.str,
600
890
  id: _builtins.str,
601
891
  in_use_bies: Sequence['outputs.GetConfigsConfigCollectionItemInUseByResult'],
892
+ management_agent_id: _builtins.str,
893
+ match_agents_with_attribute_keys: Sequence[_builtins.str],
894
+ match_agents_with_attribute_value: _builtins.str,
602
895
  metrics: Sequence['outputs.GetConfigsConfigCollectionItemMetricResult'],
603
896
  namespace: _builtins.str,
604
897
  opc_dry_run: _builtins.str,
605
898
  options: _builtins.str,
899
+ overrides: Sequence['outputs.GetConfigsConfigCollectionItemOverrideResult'],
900
+ process_filters: Sequence[_builtins.str],
606
901
  rules: Sequence['outputs.GetConfigsConfigCollectionItemRuleResult'],
902
+ run_as_user: _builtins.str,
903
+ service_name: _builtins.str,
607
904
  time_created: _builtins.str,
608
905
  time_updated: _builtins.str,
609
906
  updated_by: _builtins.str):
610
907
  """
908
+ :param _builtins.str agent_version: The version of the referenced agent bundle.
611
909
  :param _builtins.str apm_domain_id: The APM Domain ID the request is intended for.
612
- :param _builtins.str config_type: A filter to match configuration items of a given type. Supported values are SPAN_FILTER, METRIC_GROUP, and APDEX.
910
+ :param _builtins.str attach_install_dir: The directory owned by runAsUser.
911
+ :param _builtins.str config_type: A filter to match configuration items of a given type. Supported values are SPAN_FILTER, METRIC_GROUP, APDEX, AGENT and MACS_APM_EXTENSION.
912
+ :param Sequence['GetConfigsConfigCollectionItemConfigArgs'] configs: Collection of agent configuration files. For agents that use a single configuration file, this SHOULD contain a single entry and the file name MAY be an empty string. For multiple entries, you should use multiple blocks of `config_map`. To apply a different configuration in a subset of the agents, put this block anywhere in the body of the configuration and edit <some variable> and <some content> {{ <some variable> | default <some content> }} Example: com.oracle.apm.agent.tracer.enable.jfr = {{ isJfrEnabled | default false }} Then, in the configuration's overrides, specify a different value for <some variable> along with the desired agent filter. Example: "agentFilter": "ApplicationType='Tomcat'" "overrideMap": { "isJfrEnabled": true }
613
913
  :param _builtins.str created_by: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a user.
614
914
  :param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
615
915
  :param _builtins.str description: A description of the metric.
@@ -622,15 +922,25 @@ class GetConfigsConfigCollectionItemResult(dict):
622
922
  :param _builtins.str group: A string that specifies the group that an OPTIONS item belongs to.
623
923
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the configuration item. An OCID is generated when the item is created.
624
924
  :param Sequence['GetConfigsConfigCollectionItemInUseByArgs'] in_use_bies: The list of configuration items that reference the span filter.
925
+ :param _builtins.str management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent that will provision the APM Agent.
926
+ :param Sequence[_builtins.str] match_agents_with_attribute_keys: The agent attribute KEY by which an Agent configuration is matched to an agent. All agent configuration objects share the same key. It is [ServiceName, service.name] by default. The attribute VALUE corresponding to this KEY is in the matchAgentsWithAttributeValue field.
927
+ :param _builtins.str match_agents_with_attribute_value: The agent attribute VALUE by which an agent configuration is matched to an agent. Each agent configuration object must specify a different value. The attribute KEY corresponding to this VALUE is in the matchAgentsWithAttributeKey field.
625
928
  :param Sequence['GetConfigsConfigCollectionItemMetricArgs'] metrics: The list of metrics in this group.
626
929
  :param _builtins.str namespace: The namespace to which the metrics are published. It must be one of several predefined namespaces.
627
930
  :param _builtins.str options: The options are stored here as JSON.
931
+ :param Sequence['GetConfigsConfigCollectionItemOverrideArgs'] overrides: Agent configuration overrides that should apply to a subset of the agents associated with an Agent Config object.
932
+ :param Sequence[_builtins.str] process_filters: Filter patterns used to discover active Java processes for provisioning the APM Agent.
933
+ :param _builtins.str run_as_user: The OS user that should be used to discover Java processes.
934
+ :param _builtins.str service_name: The name of the service being monitored. This argument enables you to filter by service and view traces and other signals in the APM Explorer user interface.
628
935
  :param _builtins.str time_created: The time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z`
629
936
  :param _builtins.str time_updated: The time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-13T22:47:12.613Z`
630
937
  :param _builtins.str updated_by: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a user.
631
938
  """
939
+ pulumi.set(__self__, "agent_version", agent_version)
632
940
  pulumi.set(__self__, "apm_domain_id", apm_domain_id)
941
+ pulumi.set(__self__, "attach_install_dir", attach_install_dir)
633
942
  pulumi.set(__self__, "config_type", config_type)
943
+ pulumi.set(__self__, "configs", configs)
634
944
  pulumi.set(__self__, "created_by", created_by)
635
945
  pulumi.set(__self__, "defined_tags", defined_tags)
636
946
  pulumi.set(__self__, "description", description)
@@ -643,15 +953,30 @@ class GetConfigsConfigCollectionItemResult(dict):
643
953
  pulumi.set(__self__, "group", group)
644
954
  pulumi.set(__self__, "id", id)
645
955
  pulumi.set(__self__, "in_use_bies", in_use_bies)
956
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
957
+ pulumi.set(__self__, "match_agents_with_attribute_keys", match_agents_with_attribute_keys)
958
+ pulumi.set(__self__, "match_agents_with_attribute_value", match_agents_with_attribute_value)
646
959
  pulumi.set(__self__, "metrics", metrics)
647
960
  pulumi.set(__self__, "namespace", namespace)
648
961
  pulumi.set(__self__, "opc_dry_run", opc_dry_run)
649
962
  pulumi.set(__self__, "options", options)
963
+ pulumi.set(__self__, "overrides", overrides)
964
+ pulumi.set(__self__, "process_filters", process_filters)
650
965
  pulumi.set(__self__, "rules", rules)
966
+ pulumi.set(__self__, "run_as_user", run_as_user)
967
+ pulumi.set(__self__, "service_name", service_name)
651
968
  pulumi.set(__self__, "time_created", time_created)
652
969
  pulumi.set(__self__, "time_updated", time_updated)
653
970
  pulumi.set(__self__, "updated_by", updated_by)
654
971
 
972
+ @_builtins.property
973
+ @pulumi.getter(name="agentVersion")
974
+ def agent_version(self) -> _builtins.str:
975
+ """
976
+ The version of the referenced agent bundle.
977
+ """
978
+ return pulumi.get(self, "agent_version")
979
+
655
980
  @_builtins.property
656
981
  @pulumi.getter(name="apmDomainId")
657
982
  def apm_domain_id(self) -> _builtins.str:
@@ -660,14 +985,30 @@ class GetConfigsConfigCollectionItemResult(dict):
660
985
  """
661
986
  return pulumi.get(self, "apm_domain_id")
662
987
 
988
+ @_builtins.property
989
+ @pulumi.getter(name="attachInstallDir")
990
+ def attach_install_dir(self) -> _builtins.str:
991
+ """
992
+ The directory owned by runAsUser.
993
+ """
994
+ return pulumi.get(self, "attach_install_dir")
995
+
663
996
  @_builtins.property
664
997
  @pulumi.getter(name="configType")
665
998
  def config_type(self) -> _builtins.str:
666
999
  """
667
- A filter to match configuration items of a given type. Supported values are SPAN_FILTER, METRIC_GROUP, and APDEX.
1000
+ A filter to match configuration items of a given type. Supported values are SPAN_FILTER, METRIC_GROUP, APDEX, AGENT and MACS_APM_EXTENSION.
668
1001
  """
669
1002
  return pulumi.get(self, "config_type")
670
1003
 
1004
+ @_builtins.property
1005
+ @pulumi.getter
1006
+ def configs(self) -> Sequence['outputs.GetConfigsConfigCollectionItemConfigResult']:
1007
+ """
1008
+ Collection of agent configuration files. For agents that use a single configuration file, this SHOULD contain a single entry and the file name MAY be an empty string. For multiple entries, you should use multiple blocks of `config_map`. To apply a different configuration in a subset of the agents, put this block anywhere in the body of the configuration and edit <some variable> and <some content> {{ <some variable> | default <some content> }} Example: com.oracle.apm.agent.tracer.enable.jfr = {{ isJfrEnabled | default false }} Then, in the configuration's overrides, specify a different value for <some variable> along with the desired agent filter. Example: "agentFilter": "ApplicationType='Tomcat'" "overrideMap": { "isJfrEnabled": true }
1009
+ """
1010
+ return pulumi.get(self, "configs")
1011
+
671
1012
  @_builtins.property
672
1013
  @pulumi.getter(name="createdBy")
673
1014
  def created_by(self) -> _builtins.str:
@@ -764,6 +1105,30 @@ class GetConfigsConfigCollectionItemResult(dict):
764
1105
  """
765
1106
  return pulumi.get(self, "in_use_bies")
766
1107
 
1108
+ @_builtins.property
1109
+ @pulumi.getter(name="managementAgentId")
1110
+ def management_agent_id(self) -> _builtins.str:
1111
+ """
1112
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent that will provision the APM Agent.
1113
+ """
1114
+ return pulumi.get(self, "management_agent_id")
1115
+
1116
+ @_builtins.property
1117
+ @pulumi.getter(name="matchAgentsWithAttributeKeys")
1118
+ def match_agents_with_attribute_keys(self) -> Sequence[_builtins.str]:
1119
+ """
1120
+ The agent attribute KEY by which an Agent configuration is matched to an agent. All agent configuration objects share the same key. It is [ServiceName, service.name] by default. The attribute VALUE corresponding to this KEY is in the matchAgentsWithAttributeValue field.
1121
+ """
1122
+ return pulumi.get(self, "match_agents_with_attribute_keys")
1123
+
1124
+ @_builtins.property
1125
+ @pulumi.getter(name="matchAgentsWithAttributeValue")
1126
+ def match_agents_with_attribute_value(self) -> _builtins.str:
1127
+ """
1128
+ The agent attribute VALUE by which an agent configuration is matched to an agent. Each agent configuration object must specify a different value. The attribute KEY corresponding to this VALUE is in the matchAgentsWithAttributeKey field.
1129
+ """
1130
+ return pulumi.get(self, "match_agents_with_attribute_value")
1131
+
767
1132
  @_builtins.property
768
1133
  @pulumi.getter
769
1134
  def metrics(self) -> Sequence['outputs.GetConfigsConfigCollectionItemMetricResult']:
@@ -793,11 +1158,43 @@ class GetConfigsConfigCollectionItemResult(dict):
793
1158
  """
794
1159
  return pulumi.get(self, "options")
795
1160
 
1161
+ @_builtins.property
1162
+ @pulumi.getter
1163
+ def overrides(self) -> Sequence['outputs.GetConfigsConfigCollectionItemOverrideResult']:
1164
+ """
1165
+ Agent configuration overrides that should apply to a subset of the agents associated with an Agent Config object.
1166
+ """
1167
+ return pulumi.get(self, "overrides")
1168
+
1169
+ @_builtins.property
1170
+ @pulumi.getter(name="processFilters")
1171
+ def process_filters(self) -> Sequence[_builtins.str]:
1172
+ """
1173
+ Filter patterns used to discover active Java processes for provisioning the APM Agent.
1174
+ """
1175
+ return pulumi.get(self, "process_filters")
1176
+
796
1177
  @_builtins.property
797
1178
  @pulumi.getter
798
1179
  def rules(self) -> Sequence['outputs.GetConfigsConfigCollectionItemRuleResult']:
799
1180
  return pulumi.get(self, "rules")
800
1181
 
1182
+ @_builtins.property
1183
+ @pulumi.getter(name="runAsUser")
1184
+ def run_as_user(self) -> _builtins.str:
1185
+ """
1186
+ The OS user that should be used to discover Java processes.
1187
+ """
1188
+ return pulumi.get(self, "run_as_user")
1189
+
1190
+ @_builtins.property
1191
+ @pulumi.getter(name="serviceName")
1192
+ def service_name(self) -> _builtins.str:
1193
+ """
1194
+ The name of the service being monitored. This argument enables you to filter by service and view traces and other signals in the APM Explorer user interface.
1195
+ """
1196
+ return pulumi.get(self, "service_name")
1197
+
801
1198
  @_builtins.property
802
1199
  @pulumi.getter(name="timeCreated")
803
1200
  def time_created(self) -> _builtins.str:
@@ -823,6 +1220,64 @@ class GetConfigsConfigCollectionItemResult(dict):
823
1220
  return pulumi.get(self, "updated_by")
824
1221
 
825
1222
 
1223
+ @pulumi.output_type
1224
+ class GetConfigsConfigCollectionItemConfigResult(dict):
1225
+ def __init__(__self__, *,
1226
+ config_maps: Sequence['outputs.GetConfigsConfigCollectionItemConfigConfigMapResult']):
1227
+ """
1228
+ :param Sequence['GetConfigsConfigCollectionItemConfigConfigMapArgs'] config_maps: Map of an agent configuration file.
1229
+ """
1230
+ pulumi.set(__self__, "config_maps", config_maps)
1231
+
1232
+ @_builtins.property
1233
+ @pulumi.getter(name="configMaps")
1234
+ def config_maps(self) -> Sequence['outputs.GetConfigsConfigCollectionItemConfigConfigMapResult']:
1235
+ """
1236
+ Map of an agent configuration file.
1237
+ """
1238
+ return pulumi.get(self, "config_maps")
1239
+
1240
+
1241
+ @pulumi.output_type
1242
+ class GetConfigsConfigCollectionItemConfigConfigMapResult(dict):
1243
+ def __init__(__self__, *,
1244
+ body: _builtins.str,
1245
+ content_type: _builtins.str,
1246
+ file_name: _builtins.str):
1247
+ """
1248
+ :param _builtins.str body: The Base64 encoded agent configuration file.
1249
+ :param _builtins.str content_type: The MIME Content-Type that describes the content of the body field, for example, text/yaml or text/yaml; charset=utf-8
1250
+ :param _builtins.str file_name: An agent configuration file name.
1251
+ """
1252
+ pulumi.set(__self__, "body", body)
1253
+ pulumi.set(__self__, "content_type", content_type)
1254
+ pulumi.set(__self__, "file_name", file_name)
1255
+
1256
+ @_builtins.property
1257
+ @pulumi.getter
1258
+ def body(self) -> _builtins.str:
1259
+ """
1260
+ The Base64 encoded agent configuration file.
1261
+ """
1262
+ return pulumi.get(self, "body")
1263
+
1264
+ @_builtins.property
1265
+ @pulumi.getter(name="contentType")
1266
+ def content_type(self) -> _builtins.str:
1267
+ """
1268
+ The MIME Content-Type that describes the content of the body field, for example, text/yaml or text/yaml; charset=utf-8
1269
+ """
1270
+ return pulumi.get(self, "content_type")
1271
+
1272
+ @_builtins.property
1273
+ @pulumi.getter(name="fileName")
1274
+ def file_name(self) -> _builtins.str:
1275
+ """
1276
+ An agent configuration file name.
1277
+ """
1278
+ return pulumi.get(self, "file_name")
1279
+
1280
+
826
1281
  @pulumi.output_type
827
1282
  class GetConfigsConfigCollectionItemDimensionResult(dict):
828
1283
  def __init__(__self__, *,
@@ -860,7 +1315,7 @@ class GetConfigsConfigCollectionItemInUseByResult(dict):
860
1315
  id: _builtins.str,
861
1316
  options_group: _builtins.str):
862
1317
  """
863
- :param _builtins.str config_type: A filter to match configuration items of a given type. Supported values are SPAN_FILTER, METRIC_GROUP, and APDEX.
1318
+ :param _builtins.str config_type: A filter to match configuration items of a given type. Supported values are SPAN_FILTER, METRIC_GROUP, APDEX, AGENT and MACS_APM_EXTENSION.
864
1319
  :param _builtins.str display_name: A filter to return resources that match the given display name.
865
1320
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the configuration item. An OCID is generated when the item is created.
866
1321
  :param _builtins.str options_group: A filter to return OPTIONS resources that match the given group.
@@ -874,7 +1329,7 @@ class GetConfigsConfigCollectionItemInUseByResult(dict):
874
1329
  @pulumi.getter(name="configType")
875
1330
  def config_type(self) -> _builtins.str:
876
1331
  """
877
- A filter to match configuration items of a given type. Supported values are SPAN_FILTER, METRIC_GROUP, and APDEX.
1332
+ A filter to match configuration items of a given type. Supported values are SPAN_FILTER, METRIC_GROUP, APDEX, AGENT and MACS_APM_EXTENSION.
878
1333
  """
879
1334
  return pulumi.get(self, "config_type")
880
1335
 
@@ -954,6 +1409,47 @@ class GetConfigsConfigCollectionItemMetricResult(dict):
954
1409
  return pulumi.get(self, "value_source")
955
1410
 
956
1411
 
1412
+ @pulumi.output_type
1413
+ class GetConfigsConfigCollectionItemOverrideResult(dict):
1414
+ def __init__(__self__, *,
1415
+ override_lists: Sequence['outputs.GetConfigsConfigCollectionItemOverrideOverrideListResult']):
1416
+ pulumi.set(__self__, "override_lists", override_lists)
1417
+
1418
+ @_builtins.property
1419
+ @pulumi.getter(name="overrideLists")
1420
+ def override_lists(self) -> Sequence['outputs.GetConfigsConfigCollectionItemOverrideOverrideListResult']:
1421
+ return pulumi.get(self, "override_lists")
1422
+
1423
+
1424
+ @pulumi.output_type
1425
+ class GetConfigsConfigCollectionItemOverrideOverrideListResult(dict):
1426
+ def __init__(__self__, *,
1427
+ agent_filter: _builtins.str,
1428
+ override_map: Mapping[str, _builtins.str]):
1429
+ """
1430
+ :param _builtins.str agent_filter: The string that defines the Agent Filter expression.
1431
+ :param Mapping[str, _builtins.str] override_map: 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
1432
+ """
1433
+ pulumi.set(__self__, "agent_filter", agent_filter)
1434
+ pulumi.set(__self__, "override_map", override_map)
1435
+
1436
+ @_builtins.property
1437
+ @pulumi.getter(name="agentFilter")
1438
+ def agent_filter(self) -> _builtins.str:
1439
+ """
1440
+ The string that defines the Agent Filter expression.
1441
+ """
1442
+ return pulumi.get(self, "agent_filter")
1443
+
1444
+ @_builtins.property
1445
+ @pulumi.getter(name="overrideMap")
1446
+ def override_map(self) -> Mapping[str, _builtins.str]:
1447
+ """
1448
+ 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
1449
+ """
1450
+ return pulumi.get(self, "override_map")
1451
+
1452
+
957
1453
  @pulumi.output_type
958
1454
  class GetConfigsConfigCollectionItemRuleResult(dict):
959
1455
  def __init__(__self__, *,