pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +144 -0
- pulumi_oci/containerengine/_inputs.py +9 -9
- pulumi_oci/containerengine/outputs.py +18 -22
- pulumi_oci/core/__init__.py +9 -0
- pulumi_oci/core/_inputs.py +196 -0
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/get_compute_host.py +393 -0
- pulumi_oci/core/get_compute_hosts.py +254 -0
- pulumi_oci/core/outputs.py +847 -0
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +2211 -24
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +2747 -225
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/identity/_inputs.py +9 -49
- pulumi_oci/identity/domains_app.py +34 -0
- pulumi_oci/identity/get_domains_app.py +12 -1
- pulumi_oci/identity/outputs.py +20 -47
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/sch/_inputs.py +24 -24
- pulumi_oci/sch/connector.py +46 -18
- pulumi_oci/sch/get_service_connector.py +16 -8
- pulumi_oci/sch/outputs.py +53 -50
- pulumi_oci/stackmonitoring/_inputs.py +191 -0
- pulumi_oci/stackmonitoring/config.py +307 -23
- pulumi_oci/stackmonitoring/get_config.py +90 -5
- pulumi_oci/stackmonitoring/get_maintenance_window.py +43 -1
- pulumi_oci/stackmonitoring/maintenance_window.py +136 -2
- pulumi_oci/stackmonitoring/outputs.py +448 -3
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/RECORD +100 -71
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0.dist-info}/top_level.txt +0 -0
pulumi_oci/sch/outputs.py
CHANGED
@@ -94,11 +94,11 @@ class ConnectorSource(dict):
|
|
94
94
|
stream_id: Optional[str] = None):
|
95
95
|
"""
|
96
96
|
:param str kind: (Updatable) The type discriminator.
|
97
|
-
:param str config_map: (Updatable) The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (
|
97
|
+
:param str config_map: (Updatable) The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
|
98
98
|
:param 'ConnectorSourceCursorArgs' cursor: (Updatable) The [read setting](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm), which determines where in the stream to start moving data. For configuration instructions, see [Creating a Connector with a Streaming Source](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm).
|
99
99
|
:param Sequence['ConnectorSourceLogSourceArgs'] log_sources: (Updatable) The logs for this Logging source.
|
100
100
|
:param Sequence['ConnectorSourceMonitoringSourceArgs'] monitoring_sources: (Updatable) One or more compartment-specific lists of metric namespaces to retrieve data from.
|
101
|
-
:param str plugin_name: (Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using (
|
101
|
+
:param str plugin_name: (Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
|
102
102
|
:param str stream_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
103
103
|
"""
|
104
104
|
pulumi.set(__self__, "kind", kind)
|
@@ -127,7 +127,7 @@ class ConnectorSource(dict):
|
|
127
127
|
@pulumi.getter(name="configMap")
|
128
128
|
def config_map(self) -> Optional[str]:
|
129
129
|
"""
|
130
|
-
(Updatable) The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (
|
130
|
+
(Updatable) The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
|
131
131
|
"""
|
132
132
|
return pulumi.get(self, "config_map")
|
133
133
|
|
@@ -159,7 +159,7 @@ class ConnectorSource(dict):
|
|
159
159
|
@pulumi.getter(name="pluginName")
|
160
160
|
def plugin_name(self) -> Optional[str]:
|
161
161
|
"""
|
162
|
-
(Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using (
|
162
|
+
(Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
|
163
163
|
"""
|
164
164
|
return pulumi.get(self, "plugin_name")
|
165
165
|
|
@@ -220,7 +220,7 @@ class ConnectorSourceLogSource(dict):
|
|
220
220
|
log_id: Optional[str] = None):
|
221
221
|
"""
|
222
222
|
:param str compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the log source.
|
223
|
-
:param str log_group_id: (Updatable)
|
223
|
+
:param str log_group_id: (Updatable) Identifier of the log group. Either `_Audit` or the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only `_Audit` is allowed.
|
224
224
|
:param str log_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log.
|
225
225
|
"""
|
226
226
|
if compartment_id is not None:
|
@@ -242,7 +242,7 @@ class ConnectorSourceLogSource(dict):
|
|
242
242
|
@pulumi.getter(name="logGroupId")
|
243
243
|
def log_group_id(self) -> Optional[str]:
|
244
244
|
"""
|
245
|
-
(Updatable)
|
245
|
+
(Updatable) Identifier of the log group. Either `_Audit` or the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only `_Audit` is allowed.
|
246
246
|
"""
|
247
247
|
return pulumi.get(self, "log_group_id")
|
248
248
|
|
@@ -450,18 +450,18 @@ class ConnectorTarget(dict):
|
|
450
450
|
:param str kind: (Updatable) The type discriminator.
|
451
451
|
:param int batch_rollover_size_in_mbs: (Updatable) The batch rollover size in megabytes.
|
452
452
|
:param int batch_rollover_time_in_ms: (Updatable) The batch rollover time in milliseconds.
|
453
|
-
:param int batch_size_in_kbs: (Updatable) The batch rollover size in kilobytes.
|
454
|
-
:param int batch_size_in_num: (Updatable) The batch rollover size in number of messages.
|
453
|
+
:param int batch_size_in_kbs: (Updatable) The batch rollover size in kilobytes. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
454
|
+
:param int batch_size_in_num: (Updatable) The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
455
455
|
:param int batch_time_in_sec: (Updatable) The batch rollover time in seconds.
|
456
456
|
:param str bucket: (Updatable) The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
|
457
457
|
:param str compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the metric.
|
458
458
|
:param Sequence['ConnectorTargetDimensionArgs'] dimensions: (Updatable) List of dimension names and values.
|
459
|
-
:param bool enable_formatted_messaging: (Updatable) Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol.
|
459
|
+
:param bool enable_formatted_messaging: (Updatable) Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
|
460
460
|
:param str function_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function.
|
461
461
|
:param str log_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Logging Analytics log group.
|
462
462
|
:param str log_source_identifier: (Updatable) Identifier of the log source that you want to use for processing data received from the connector source. Applies to `StreamingSource` only. Equivalent to `name` at [LogAnalyticsSource](https://docs.cloud.oracle.com/iaas/api/#/en/logan-api-spec/latest/LogAnalyticsSource/).
|
463
|
-
:param str metric: (Updatable) The name of the metric.
|
464
|
-
:param str metric_namespace: (Updatable) The namespace of the metric.
|
463
|
+
:param str metric: (Updatable) The name of the metric. Example: `CpuUtilization`
|
464
|
+
:param str metric_namespace: (Updatable) The namespace of the metric. Example: `oci_computeagent`
|
465
465
|
:param str namespace: (Updatable) The namespace.
|
466
466
|
:param str object_name_prefix: (Updatable) The prefix of the objects. Avoid entering confidential information.
|
467
467
|
:param str stream_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
@@ -533,7 +533,7 @@ class ConnectorTarget(dict):
|
|
533
533
|
@pulumi.getter(name="batchSizeInKbs")
|
534
534
|
def batch_size_in_kbs(self) -> Optional[int]:
|
535
535
|
"""
|
536
|
-
(Updatable) The batch rollover size in kilobytes.
|
536
|
+
(Updatable) The batch rollover size in kilobytes. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
537
537
|
"""
|
538
538
|
return pulumi.get(self, "batch_size_in_kbs")
|
539
539
|
|
@@ -541,7 +541,7 @@ class ConnectorTarget(dict):
|
|
541
541
|
@pulumi.getter(name="batchSizeInNum")
|
542
542
|
def batch_size_in_num(self) -> Optional[int]:
|
543
543
|
"""
|
544
|
-
(Updatable) The batch rollover size in number of messages.
|
544
|
+
(Updatable) The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
545
545
|
"""
|
546
546
|
return pulumi.get(self, "batch_size_in_num")
|
547
547
|
|
@@ -581,7 +581,7 @@ class ConnectorTarget(dict):
|
|
581
581
|
@pulumi.getter(name="enableFormattedMessaging")
|
582
582
|
def enable_formatted_messaging(self) -> Optional[bool]:
|
583
583
|
"""
|
584
|
-
(Updatable) Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol.
|
584
|
+
(Updatable) Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
|
585
585
|
"""
|
586
586
|
return pulumi.get(self, "enable_formatted_messaging")
|
587
587
|
|
@@ -613,7 +613,7 @@ class ConnectorTarget(dict):
|
|
613
613
|
@pulumi.getter
|
614
614
|
def metric(self) -> Optional[str]:
|
615
615
|
"""
|
616
|
-
(Updatable) The name of the metric.
|
616
|
+
(Updatable) The name of the metric. Example: `CpuUtilization`
|
617
617
|
"""
|
618
618
|
return pulumi.get(self, "metric")
|
619
619
|
|
@@ -621,7 +621,7 @@ class ConnectorTarget(dict):
|
|
621
621
|
@pulumi.getter(name="metricNamespace")
|
622
622
|
def metric_namespace(self) -> Optional[str]:
|
623
623
|
"""
|
624
|
-
(Updatable) The namespace of the metric.
|
624
|
+
(Updatable) The namespace of the metric. Example: `oci_computeagent`
|
625
625
|
"""
|
626
626
|
return pulumi.get(self, "metric_namespace")
|
627
627
|
|
@@ -986,12 +986,12 @@ class GetServiceConnectorSourceResult(dict):
|
|
986
986
|
plugin_name: str,
|
987
987
|
stream_id: str):
|
988
988
|
"""
|
989
|
-
:param str config_map: The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (
|
989
|
+
:param str config_map: The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
|
990
990
|
:param Sequence['GetServiceConnectorSourceCursorArgs'] cursors: The [read setting](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm), which determines where in the stream to start moving data. For configuration instructions, see [Creating a Connector with a Streaming Source](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm).
|
991
991
|
:param str kind: The type discriminator.
|
992
992
|
:param Sequence['GetServiceConnectorSourceLogSourceArgs'] log_sources: The logs for this Logging source.
|
993
993
|
:param Sequence['GetServiceConnectorSourceMonitoringSourceArgs'] monitoring_sources: One or more compartment-specific lists of metric namespaces to retrieve data from.
|
994
|
-
:param str plugin_name: The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using (
|
994
|
+
:param str plugin_name: The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
|
995
995
|
:param str stream_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
996
996
|
"""
|
997
997
|
pulumi.set(__self__, "config_map", config_map)
|
@@ -1006,7 +1006,7 @@ class GetServiceConnectorSourceResult(dict):
|
|
1006
1006
|
@pulumi.getter(name="configMap")
|
1007
1007
|
def config_map(self) -> str:
|
1008
1008
|
"""
|
1009
|
-
The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (
|
1009
|
+
The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
|
1010
1010
|
"""
|
1011
1011
|
return pulumi.get(self, "config_map")
|
1012
1012
|
|
@@ -1046,7 +1046,7 @@ class GetServiceConnectorSourceResult(dict):
|
|
1046
1046
|
@pulumi.getter(name="pluginName")
|
1047
1047
|
def plugin_name(self) -> str:
|
1048
1048
|
"""
|
1049
|
-
The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using (
|
1049
|
+
The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
|
1050
1050
|
"""
|
1051
1051
|
return pulumi.get(self, "plugin_name")
|
1052
1052
|
|
@@ -1248,18 +1248,18 @@ class GetServiceConnectorTargetResult(dict):
|
|
1248
1248
|
:param int batch_rollover_size_in_mbs: The batch rollover size in megabytes.
|
1249
1249
|
:param int batch_rollover_time_in_ms: The batch rollover time in milliseconds.
|
1250
1250
|
:param int batch_size_in_kbs: Size limit (kilobytes) for batch sent to invoke the function.
|
1251
|
-
:param int batch_size_in_num: The batch rollover size in number of messages.
|
1251
|
+
:param int batch_size_in_num: The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
1252
1252
|
:param int batch_time_in_sec: Time limit (seconds) for batch sent to invoke the function.
|
1253
1253
|
:param str bucket: The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
|
1254
1254
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the metric.
|
1255
1255
|
:param Sequence['GetServiceConnectorTargetDimensionArgs'] dimensions: List of dimension names and values.
|
1256
|
-
:param bool enable_formatted_messaging: Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol.
|
1256
|
+
:param bool enable_formatted_messaging: Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
|
1257
1257
|
:param str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function to be used as a task.
|
1258
1258
|
:param str kind: The type discriminator.
|
1259
1259
|
:param str log_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Logging Analytics log group.
|
1260
1260
|
:param str log_source_identifier: Identifier of the log source that you want to use for processing data received from the connector source. Applies to `StreamingSource` only. Equivalent to `name` at [LogAnalyticsSource](https://docs.cloud.oracle.com/iaas/api/#/en/logan-api-spec/latest/LogAnalyticsSource/).
|
1261
|
-
:param str metric: The name of the metric.
|
1262
|
-
:param str metric_namespace: The namespace of the metric.
|
1261
|
+
:param str metric: The name of the metric. Example: `CpuUtilization`
|
1262
|
+
:param str metric_namespace: The namespace of the metric. Example: `oci_computeagent`
|
1263
1263
|
:param str namespace: The namespace.
|
1264
1264
|
:param str object_name_prefix: The prefix of the objects. Avoid entering confidential information.
|
1265
1265
|
:param str stream_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
@@ -1313,7 +1313,7 @@ class GetServiceConnectorTargetResult(dict):
|
|
1313
1313
|
@pulumi.getter(name="batchSizeInNum")
|
1314
1314
|
def batch_size_in_num(self) -> int:
|
1315
1315
|
"""
|
1316
|
-
The batch rollover size in number of messages.
|
1316
|
+
The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
1317
1317
|
"""
|
1318
1318
|
return pulumi.get(self, "batch_size_in_num")
|
1319
1319
|
|
@@ -1353,7 +1353,7 @@ class GetServiceConnectorTargetResult(dict):
|
|
1353
1353
|
@pulumi.getter(name="enableFormattedMessaging")
|
1354
1354
|
def enable_formatted_messaging(self) -> bool:
|
1355
1355
|
"""
|
1356
|
-
Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol.
|
1356
|
+
Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
|
1357
1357
|
"""
|
1358
1358
|
return pulumi.get(self, "enable_formatted_messaging")
|
1359
1359
|
|
@@ -1393,7 +1393,7 @@ class GetServiceConnectorTargetResult(dict):
|
|
1393
1393
|
@pulumi.getter
|
1394
1394
|
def metric(self) -> str:
|
1395
1395
|
"""
|
1396
|
-
The name of the metric.
|
1396
|
+
The name of the metric. Example: `CpuUtilization`
|
1397
1397
|
"""
|
1398
1398
|
return pulumi.get(self, "metric")
|
1399
1399
|
|
@@ -1401,7 +1401,7 @@ class GetServiceConnectorTargetResult(dict):
|
|
1401
1401
|
@pulumi.getter(name="metricNamespace")
|
1402
1402
|
def metric_namespace(self) -> str:
|
1403
1403
|
"""
|
1404
|
-
The namespace of the metric.
|
1404
|
+
The namespace of the metric. Example: `oci_computeagent`
|
1405
1405
|
"""
|
1406
1406
|
return pulumi.get(self, "metric_namespace")
|
1407
1407
|
|
@@ -1623,6 +1623,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemResult(dict):
|
|
1623
1623
|
display_name: str,
|
1624
1624
|
freeform_tags: Mapping[str, str],
|
1625
1625
|
id: str,
|
1626
|
+
lifecycle_details: str,
|
1626
1627
|
lifecyle_details: str,
|
1627
1628
|
sources: Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemSourceResult'],
|
1628
1629
|
state: str,
|
@@ -1638,11 +1639,10 @@ class GetServiceConnectorsServiceConnectorCollectionItemResult(dict):
|
|
1638
1639
|
:param str display_name: A filter to return only resources that match the given display name exactly. Example: `example_service_connector`
|
1639
1640
|
:param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1640
1641
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connector.
|
1641
|
-
:param str
|
1642
|
-
:param
|
1642
|
+
:param str lifecycle_details: A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
1643
|
+
:param str lifecyle_details: *Please note this property is deprecated and will be removed on January 27, 2026. Use `lifecycleDetails` instead.* A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
1643
1644
|
:param str state: A filter to return only resources that match the given lifecycle state. Example: `ACTIVE`
|
1644
1645
|
: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}}`
|
1645
|
-
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemTargetArgs'] targets: An object that represents the target of the flow defined by the connector. An example target is a stream (Streaming service). For more information about flows defined by connectors, see [Overview of Connector Hub](https://docs.cloud.oracle.com/iaas/Content/connector-hub/overview.htm). For configuration instructions, see [Creating a Connector](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector.htm).
|
1646
1646
|
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemTaskArgs'] tasks: The list of tasks.
|
1647
1647
|
:param str time_created: The date and time when the connector was created. Format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2020-01-25T21:10:29.600Z`
|
1648
1648
|
:param str time_updated: The date and time when the connector was updated. Format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2020-01-25T21:10:29.600Z`
|
@@ -1653,6 +1653,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemResult(dict):
|
|
1653
1653
|
pulumi.set(__self__, "display_name", display_name)
|
1654
1654
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
1655
1655
|
pulumi.set(__self__, "id", id)
|
1656
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
1656
1657
|
pulumi.set(__self__, "lifecyle_details", lifecyle_details)
|
1657
1658
|
pulumi.set(__self__, "sources", sources)
|
1658
1659
|
pulumi.set(__self__, "state", state)
|
@@ -1710,20 +1711,25 @@ class GetServiceConnectorsServiceConnectorCollectionItemResult(dict):
|
|
1710
1711
|
"""
|
1711
1712
|
return pulumi.get(self, "id")
|
1712
1713
|
|
1714
|
+
@property
|
1715
|
+
@pulumi.getter(name="lifecycleDetails")
|
1716
|
+
def lifecycle_details(self) -> str:
|
1717
|
+
"""
|
1718
|
+
A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
1719
|
+
"""
|
1720
|
+
return pulumi.get(self, "lifecycle_details")
|
1721
|
+
|
1713
1722
|
@property
|
1714
1723
|
@pulumi.getter(name="lifecyleDetails")
|
1715
1724
|
def lifecyle_details(self) -> str:
|
1716
1725
|
"""
|
1717
|
-
A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
1726
|
+
*Please note this property is deprecated and will be removed on January 27, 2026. Use `lifecycleDetails` instead.* A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a `FAILED` state.
|
1718
1727
|
"""
|
1719
1728
|
return pulumi.get(self, "lifecyle_details")
|
1720
1729
|
|
1721
1730
|
@property
|
1722
1731
|
@pulumi.getter
|
1723
1732
|
def sources(self) -> Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemSourceResult']:
|
1724
|
-
"""
|
1725
|
-
An object that represents the source of the flow defined by the connector. An example source is the VCNFlow logs within the NetworkLogs group. For more information about flows defined by connectors, see [Overview of Connector Hub](https://docs.cloud.oracle.com/iaas/Content/connector-hub/overview.htm). For configuration instructions, see [Creating a Connector](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector.htm).
|
1726
|
-
"""
|
1727
1733
|
return pulumi.get(self, "sources")
|
1728
1734
|
|
1729
1735
|
@property
|
@@ -1745,9 +1751,6 @@ class GetServiceConnectorsServiceConnectorCollectionItemResult(dict):
|
|
1745
1751
|
@property
|
1746
1752
|
@pulumi.getter
|
1747
1753
|
def targets(self) -> Sequence['outputs.GetServiceConnectorsServiceConnectorCollectionItemTargetResult']:
|
1748
|
-
"""
|
1749
|
-
An object that represents the target of the flow defined by the connector. An example target is a stream (Streaming service). For more information about flows defined by connectors, see [Overview of Connector Hub](https://docs.cloud.oracle.com/iaas/Content/connector-hub/overview.htm). For configuration instructions, see [Creating a Connector](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector.htm).
|
1750
|
-
"""
|
1751
1754
|
return pulumi.get(self, "targets")
|
1752
1755
|
|
1753
1756
|
@property
|
@@ -1786,12 +1789,12 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceResult(dict):
|
|
1786
1789
|
plugin_name: str,
|
1787
1790
|
stream_id: str):
|
1788
1791
|
"""
|
1789
|
-
:param str config_map: The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (
|
1792
|
+
:param str config_map: The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
|
1790
1793
|
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemSourceCursorArgs'] cursors: The [read setting](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm), which determines where in the stream to start moving data. For configuration instructions, see [Creating a Connector with a Streaming Source](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm).
|
1791
1794
|
:param str kind: The type discriminator.
|
1792
1795
|
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemSourceLogSourceArgs'] log_sources: The logs for this Logging source.
|
1793
1796
|
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceArgs'] monitoring_sources: One or more compartment-specific lists of metric namespaces to retrieve data from.
|
1794
|
-
:param str plugin_name: The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using (
|
1797
|
+
:param str plugin_name: The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
|
1795
1798
|
:param str stream_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
1796
1799
|
"""
|
1797
1800
|
pulumi.set(__self__, "config_map", config_map)
|
@@ -1806,7 +1809,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceResult(dict):
|
|
1806
1809
|
@pulumi.getter(name="configMap")
|
1807
1810
|
def config_map(self) -> str:
|
1808
1811
|
"""
|
1809
|
-
The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (
|
1812
|
+
The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
|
1810
1813
|
"""
|
1811
1814
|
return pulumi.get(self, "config_map")
|
1812
1815
|
|
@@ -1846,7 +1849,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemSourceResult(dict):
|
|
1846
1849
|
@pulumi.getter(name="pluginName")
|
1847
1850
|
def plugin_name(self) -> str:
|
1848
1851
|
"""
|
1849
|
-
The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using (
|
1852
|
+
The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
|
1850
1853
|
"""
|
1851
1854
|
return pulumi.get(self, "plugin_name")
|
1852
1855
|
|
@@ -2048,18 +2051,18 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
|
2048
2051
|
:param int batch_rollover_size_in_mbs: The batch rollover size in megabytes.
|
2049
2052
|
:param int batch_rollover_time_in_ms: The batch rollover time in milliseconds.
|
2050
2053
|
:param int batch_size_in_kbs: Size limit (kilobytes) for batch sent to invoke the function.
|
2051
|
-
:param int batch_size_in_num: The batch rollover size in number of messages.
|
2054
|
+
:param int batch_size_in_num: The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
2052
2055
|
:param int batch_time_in_sec: Time limit (seconds) for batch sent to invoke the function.
|
2053
2056
|
:param str bucket: The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
|
2054
2057
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for this request.
|
2055
2058
|
:param Sequence['GetServiceConnectorsServiceConnectorCollectionItemTargetDimensionArgs'] dimensions: List of dimension names and values.
|
2056
|
-
:param bool enable_formatted_messaging: Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol.
|
2059
|
+
:param bool enable_formatted_messaging: Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
|
2057
2060
|
:param str function_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function to be used as a task.
|
2058
2061
|
:param str kind: The type discriminator.
|
2059
2062
|
:param str log_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Logging Analytics log group.
|
2060
2063
|
:param str log_source_identifier: Identifier of the log source that you want to use for processing data received from the connector source. Applies to `StreamingSource` only. Equivalent to `name` at [LogAnalyticsSource](https://docs.cloud.oracle.com/iaas/api/#/en/logan-api-spec/latest/LogAnalyticsSource/).
|
2061
|
-
:param str metric: The name of the metric.
|
2062
|
-
:param str metric_namespace: The namespace of the metric.
|
2064
|
+
:param str metric: The name of the metric. Example: `CpuUtilization`
|
2065
|
+
:param str metric_namespace: The namespace of the metric. Example: `oci_computeagent`
|
2063
2066
|
:param str namespace: The namespace.
|
2064
2067
|
:param str object_name_prefix: The prefix of the objects. Avoid entering confidential information.
|
2065
2068
|
:param str stream_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
|
@@ -2113,7 +2116,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
|
2113
2116
|
@pulumi.getter(name="batchSizeInNum")
|
2114
2117
|
def batch_size_in_num(self) -> int:
|
2115
2118
|
"""
|
2116
|
-
The batch rollover size in number of messages.
|
2119
|
+
The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
|
2117
2120
|
"""
|
2118
2121
|
return pulumi.get(self, "batch_size_in_num")
|
2119
2122
|
|
@@ -2153,7 +2156,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
|
2153
2156
|
@pulumi.getter(name="enableFormattedMessaging")
|
2154
2157
|
def enable_formatted_messaging(self) -> bool:
|
2155
2158
|
"""
|
2156
|
-
Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol.
|
2159
|
+
Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
|
2157
2160
|
"""
|
2158
2161
|
return pulumi.get(self, "enable_formatted_messaging")
|
2159
2162
|
|
@@ -2193,7 +2196,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
|
2193
2196
|
@pulumi.getter
|
2194
2197
|
def metric(self) -> str:
|
2195
2198
|
"""
|
2196
|
-
The name of the metric.
|
2199
|
+
The name of the metric. Example: `CpuUtilization`
|
2197
2200
|
"""
|
2198
2201
|
return pulumi.get(self, "metric")
|
2199
2202
|
|
@@ -2201,7 +2204,7 @@ class GetServiceConnectorsServiceConnectorCollectionItemTargetResult(dict):
|
|
2201
2204
|
@pulumi.getter(name="metricNamespace")
|
2202
2205
|
def metric_namespace(self) -> str:
|
2203
2206
|
"""
|
2204
|
-
The namespace of the metric.
|
2207
|
+
The namespace of the metric. Example: `oci_computeagent`
|
2205
2208
|
"""
|
2206
2209
|
return pulumi.get(self, "metric_namespace")
|
2207
2210
|
|
@@ -15,6 +15,12 @@ else:
|
|
15
15
|
from .. import _utilities
|
16
16
|
|
17
17
|
__all__ = [
|
18
|
+
'ConfigAdditionalConfigurationsArgs',
|
19
|
+
'ConfigAdditionalConfigurationsArgsDict',
|
20
|
+
'ConfigDynamicGroupArgs',
|
21
|
+
'ConfigDynamicGroupArgsDict',
|
22
|
+
'ConfigUserGroupArgs',
|
23
|
+
'ConfigUserGroupArgsDict',
|
18
24
|
'DiscoveryJobDiscoveryDetailsArgs',
|
19
25
|
'DiscoveryJobDiscoveryDetailsArgsDict',
|
20
26
|
'DiscoveryJobDiscoveryDetailsCredentialsArgs',
|
@@ -135,6 +141,182 @@ __all__ = [
|
|
135
141
|
|
136
142
|
MYPY = False
|
137
143
|
|
144
|
+
if not MYPY:
|
145
|
+
class ConfigAdditionalConfigurationsArgsDict(TypedDict):
|
146
|
+
properties_map: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
147
|
+
"""
|
148
|
+
(Updatable) Key/Value pair of Property
|
149
|
+
"""
|
150
|
+
elif False:
|
151
|
+
ConfigAdditionalConfigurationsArgsDict: TypeAlias = Mapping[str, Any]
|
152
|
+
|
153
|
+
@pulumi.input_type
|
154
|
+
class ConfigAdditionalConfigurationsArgs:
|
155
|
+
def __init__(__self__, *,
|
156
|
+
properties_map: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
157
|
+
"""
|
158
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] properties_map: (Updatable) Key/Value pair of Property
|
159
|
+
"""
|
160
|
+
if properties_map is not None:
|
161
|
+
pulumi.set(__self__, "properties_map", properties_map)
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="propertiesMap")
|
165
|
+
def properties_map(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
166
|
+
"""
|
167
|
+
(Updatable) Key/Value pair of Property
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "properties_map")
|
170
|
+
|
171
|
+
@properties_map.setter
|
172
|
+
def properties_map(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
173
|
+
pulumi.set(self, "properties_map", value)
|
174
|
+
|
175
|
+
|
176
|
+
if not MYPY:
|
177
|
+
class ConfigDynamicGroupArgsDict(TypedDict):
|
178
|
+
domain: NotRequired[pulumi.Input[str]]
|
179
|
+
"""
|
180
|
+
(Updatable) Identity domain name
|
181
|
+
"""
|
182
|
+
name: NotRequired[pulumi.Input[str]]
|
183
|
+
"""
|
184
|
+
(Updatable) Name of dynamic Group
|
185
|
+
"""
|
186
|
+
stack_monitoring_assignment: NotRequired[pulumi.Input[str]]
|
187
|
+
"""
|
188
|
+
(Updatable) Assignment of dynamic group in context of Stack Monitoring service. It describes the purpose of dynamic groups in Stack Monitoring.
|
189
|
+
"""
|
190
|
+
elif False:
|
191
|
+
ConfigDynamicGroupArgsDict: TypeAlias = Mapping[str, Any]
|
192
|
+
|
193
|
+
@pulumi.input_type
|
194
|
+
class ConfigDynamicGroupArgs:
|
195
|
+
def __init__(__self__, *,
|
196
|
+
domain: Optional[pulumi.Input[str]] = None,
|
197
|
+
name: Optional[pulumi.Input[str]] = None,
|
198
|
+
stack_monitoring_assignment: Optional[pulumi.Input[str]] = None):
|
199
|
+
"""
|
200
|
+
:param pulumi.Input[str] domain: (Updatable) Identity domain name
|
201
|
+
:param pulumi.Input[str] name: (Updatable) Name of dynamic Group
|
202
|
+
:param pulumi.Input[str] stack_monitoring_assignment: (Updatable) Assignment of dynamic group in context of Stack Monitoring service. It describes the purpose of dynamic groups in Stack Monitoring.
|
203
|
+
"""
|
204
|
+
if domain is not None:
|
205
|
+
pulumi.set(__self__, "domain", domain)
|
206
|
+
if name is not None:
|
207
|
+
pulumi.set(__self__, "name", name)
|
208
|
+
if stack_monitoring_assignment is not None:
|
209
|
+
pulumi.set(__self__, "stack_monitoring_assignment", stack_monitoring_assignment)
|
210
|
+
|
211
|
+
@property
|
212
|
+
@pulumi.getter
|
213
|
+
def domain(self) -> Optional[pulumi.Input[str]]:
|
214
|
+
"""
|
215
|
+
(Updatable) Identity domain name
|
216
|
+
"""
|
217
|
+
return pulumi.get(self, "domain")
|
218
|
+
|
219
|
+
@domain.setter
|
220
|
+
def domain(self, value: Optional[pulumi.Input[str]]):
|
221
|
+
pulumi.set(self, "domain", value)
|
222
|
+
|
223
|
+
@property
|
224
|
+
@pulumi.getter
|
225
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
226
|
+
"""
|
227
|
+
(Updatable) Name of dynamic Group
|
228
|
+
"""
|
229
|
+
return pulumi.get(self, "name")
|
230
|
+
|
231
|
+
@name.setter
|
232
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
233
|
+
pulumi.set(self, "name", value)
|
234
|
+
|
235
|
+
@property
|
236
|
+
@pulumi.getter(name="stackMonitoringAssignment")
|
237
|
+
def stack_monitoring_assignment(self) -> Optional[pulumi.Input[str]]:
|
238
|
+
"""
|
239
|
+
(Updatable) Assignment of dynamic group in context of Stack Monitoring service. It describes the purpose of dynamic groups in Stack Monitoring.
|
240
|
+
"""
|
241
|
+
return pulumi.get(self, "stack_monitoring_assignment")
|
242
|
+
|
243
|
+
@stack_monitoring_assignment.setter
|
244
|
+
def stack_monitoring_assignment(self, value: Optional[pulumi.Input[str]]):
|
245
|
+
pulumi.set(self, "stack_monitoring_assignment", value)
|
246
|
+
|
247
|
+
|
248
|
+
if not MYPY:
|
249
|
+
class ConfigUserGroupArgsDict(TypedDict):
|
250
|
+
domain: NotRequired[pulumi.Input[str]]
|
251
|
+
"""
|
252
|
+
(Updatable) Identity domain name
|
253
|
+
"""
|
254
|
+
name: NotRequired[pulumi.Input[str]]
|
255
|
+
"""
|
256
|
+
(Updatable) Name of user Group
|
257
|
+
"""
|
258
|
+
stack_monitoring_role: NotRequired[pulumi.Input[str]]
|
259
|
+
"""
|
260
|
+
(Updatable) Role assigned to user group in context of Stack Monitoring service. Access role can be for example: ADMINISTRATOR, OPERATOR, VIEWER, any other access role
|
261
|
+
"""
|
262
|
+
elif False:
|
263
|
+
ConfigUserGroupArgsDict: TypeAlias = Mapping[str, Any]
|
264
|
+
|
265
|
+
@pulumi.input_type
|
266
|
+
class ConfigUserGroupArgs:
|
267
|
+
def __init__(__self__, *,
|
268
|
+
domain: Optional[pulumi.Input[str]] = None,
|
269
|
+
name: Optional[pulumi.Input[str]] = None,
|
270
|
+
stack_monitoring_role: Optional[pulumi.Input[str]] = None):
|
271
|
+
"""
|
272
|
+
:param pulumi.Input[str] domain: (Updatable) Identity domain name
|
273
|
+
:param pulumi.Input[str] name: (Updatable) Name of user Group
|
274
|
+
:param pulumi.Input[str] stack_monitoring_role: (Updatable) Role assigned to user group in context of Stack Monitoring service. Access role can be for example: ADMINISTRATOR, OPERATOR, VIEWER, any other access role
|
275
|
+
"""
|
276
|
+
if domain is not None:
|
277
|
+
pulumi.set(__self__, "domain", domain)
|
278
|
+
if name is not None:
|
279
|
+
pulumi.set(__self__, "name", name)
|
280
|
+
if stack_monitoring_role is not None:
|
281
|
+
pulumi.set(__self__, "stack_monitoring_role", stack_monitoring_role)
|
282
|
+
|
283
|
+
@property
|
284
|
+
@pulumi.getter
|
285
|
+
def domain(self) -> Optional[pulumi.Input[str]]:
|
286
|
+
"""
|
287
|
+
(Updatable) Identity domain name
|
288
|
+
"""
|
289
|
+
return pulumi.get(self, "domain")
|
290
|
+
|
291
|
+
@domain.setter
|
292
|
+
def domain(self, value: Optional[pulumi.Input[str]]):
|
293
|
+
pulumi.set(self, "domain", value)
|
294
|
+
|
295
|
+
@property
|
296
|
+
@pulumi.getter
|
297
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
298
|
+
"""
|
299
|
+
(Updatable) Name of user Group
|
300
|
+
"""
|
301
|
+
return pulumi.get(self, "name")
|
302
|
+
|
303
|
+
@name.setter
|
304
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
305
|
+
pulumi.set(self, "name", value)
|
306
|
+
|
307
|
+
@property
|
308
|
+
@pulumi.getter(name="stackMonitoringRole")
|
309
|
+
def stack_monitoring_role(self) -> Optional[pulumi.Input[str]]:
|
310
|
+
"""
|
311
|
+
(Updatable) Role assigned to user group in context of Stack Monitoring service. Access role can be for example: ADMINISTRATOR, OPERATOR, VIEWER, any other access role
|
312
|
+
"""
|
313
|
+
return pulumi.get(self, "stack_monitoring_role")
|
314
|
+
|
315
|
+
@stack_monitoring_role.setter
|
316
|
+
def stack_monitoring_role(self, value: Optional[pulumi.Input[str]]):
|
317
|
+
pulumi.set(self, "stack_monitoring_role", value)
|
318
|
+
|
319
|
+
|
138
320
|
if not MYPY:
|
139
321
|
class DiscoveryJobDiscoveryDetailsArgsDict(TypedDict):
|
140
322
|
agent_id: pulumi.Input[str]
|
@@ -4831,6 +5013,9 @@ class GetBaselineableMetricsFilterArgs:
|
|
4831
5013
|
if not MYPY:
|
4832
5014
|
class GetConfigsFilterArgsDict(TypedDict):
|
4833
5015
|
name: str
|
5016
|
+
"""
|
5017
|
+
Name of user Group
|
5018
|
+
"""
|
4834
5019
|
values: Sequence[str]
|
4835
5020
|
regex: NotRequired[bool]
|
4836
5021
|
elif False:
|
@@ -4842,6 +5027,9 @@ class GetConfigsFilterArgs:
|
|
4842
5027
|
name: str,
|
4843
5028
|
values: Sequence[str],
|
4844
5029
|
regex: Optional[bool] = None):
|
5030
|
+
"""
|
5031
|
+
:param str name: Name of user Group
|
5032
|
+
"""
|
4845
5033
|
pulumi.set(__self__, "name", name)
|
4846
5034
|
pulumi.set(__self__, "values", values)
|
4847
5035
|
if regex is not None:
|
@@ -4850,6 +5038,9 @@ class GetConfigsFilterArgs:
|
|
4850
5038
|
@property
|
4851
5039
|
@pulumi.getter
|
4852
5040
|
def name(self) -> str:
|
5041
|
+
"""
|
5042
|
+
Name of user Group
|
5043
|
+
"""
|
4853
5044
|
return pulumi.get(self, "name")
|
4854
5045
|
|
4855
5046
|
@name.setter
|