pulumi-oci 2.28.0a1742884810__py3-none-any.whl → 2.28.0a1743049042__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/core/__init__.py +2 -0
- pulumi_oci/core/_inputs.py +49 -0
- pulumi_oci/core/get_compute_host.py +393 -0
- pulumi_oci/core/get_compute_hosts.py +254 -0
- pulumi_oci/core/outputs.py +265 -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/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.28.0a1742884810.dist-info → pulumi_oci-2.28.0a1743049042.dist-info}/METADATA +1 -1
- {pulumi_oci-2.28.0a1742884810.dist-info → pulumi_oci-2.28.0a1743049042.dist-info}/RECORD +24 -22
- {pulumi_oci-2.28.0a1742884810.dist-info → pulumi_oci-2.28.0a1743049042.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.28.0a1742884810.dist-info → pulumi_oci-2.28.0a1743049042.dist-info}/top_level.txt +0 -0
@@ -16,6 +16,9 @@ from .. import _utilities
|
|
16
16
|
from . import outputs
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'ConfigAdditionalConfigurations',
|
20
|
+
'ConfigDynamicGroup',
|
21
|
+
'ConfigUserGroup',
|
19
22
|
'DiscoveryJobDiscoveryDetails',
|
20
23
|
'DiscoveryJobDiscoveryDetailsCredentials',
|
21
24
|
'DiscoveryJobDiscoveryDetailsCredentialsItem',
|
@@ -65,8 +68,14 @@ __all__ = [
|
|
65
68
|
'GetBaselineableMetricsEvaluateItemEvaluationDataPointResult',
|
66
69
|
'GetBaselineableMetricsEvaluateItemTrainingDataPointResult',
|
67
70
|
'GetBaselineableMetricsFilterResult',
|
71
|
+
'GetConfigAdditionalConfigurationResult',
|
72
|
+
'GetConfigDynamicGroupResult',
|
73
|
+
'GetConfigUserGroupResult',
|
68
74
|
'GetConfigsConfigCollectionResult',
|
69
75
|
'GetConfigsConfigCollectionItemResult',
|
76
|
+
'GetConfigsConfigCollectionItemAdditionalConfigurationResult',
|
77
|
+
'GetConfigsConfigCollectionItemDynamicGroupResult',
|
78
|
+
'GetConfigsConfigCollectionItemUserGroupResult',
|
70
79
|
'GetConfigsFilterResult',
|
71
80
|
'GetDefinedMonitoringTemplatesDefinedMonitoringTemplateCollectionResult',
|
72
81
|
'GetDefinedMonitoringTemplatesDefinedMonitoringTemplateCollectionItemResult',
|
@@ -163,6 +172,162 @@ __all__ = [
|
|
163
172
|
'GetProcessSetsProcessSetCollectionItemSpecificationItemResult',
|
164
173
|
]
|
165
174
|
|
175
|
+
@pulumi.output_type
|
176
|
+
class ConfigAdditionalConfigurations(dict):
|
177
|
+
@staticmethod
|
178
|
+
def __key_warning(key: str):
|
179
|
+
suggest = None
|
180
|
+
if key == "propertiesMap":
|
181
|
+
suggest = "properties_map"
|
182
|
+
|
183
|
+
if suggest:
|
184
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigAdditionalConfigurations. Access the value via the '{suggest}' property getter instead.")
|
185
|
+
|
186
|
+
def __getitem__(self, key: str) -> Any:
|
187
|
+
ConfigAdditionalConfigurations.__key_warning(key)
|
188
|
+
return super().__getitem__(key)
|
189
|
+
|
190
|
+
def get(self, key: str, default = None) -> Any:
|
191
|
+
ConfigAdditionalConfigurations.__key_warning(key)
|
192
|
+
return super().get(key, default)
|
193
|
+
|
194
|
+
def __init__(__self__, *,
|
195
|
+
properties_map: Optional[Mapping[str, str]] = None):
|
196
|
+
"""
|
197
|
+
:param Mapping[str, str] properties_map: (Updatable) Key/Value pair of Property
|
198
|
+
"""
|
199
|
+
if properties_map is not None:
|
200
|
+
pulumi.set(__self__, "properties_map", properties_map)
|
201
|
+
|
202
|
+
@property
|
203
|
+
@pulumi.getter(name="propertiesMap")
|
204
|
+
def properties_map(self) -> Optional[Mapping[str, str]]:
|
205
|
+
"""
|
206
|
+
(Updatable) Key/Value pair of Property
|
207
|
+
"""
|
208
|
+
return pulumi.get(self, "properties_map")
|
209
|
+
|
210
|
+
|
211
|
+
@pulumi.output_type
|
212
|
+
class ConfigDynamicGroup(dict):
|
213
|
+
@staticmethod
|
214
|
+
def __key_warning(key: str):
|
215
|
+
suggest = None
|
216
|
+
if key == "stackMonitoringAssignment":
|
217
|
+
suggest = "stack_monitoring_assignment"
|
218
|
+
|
219
|
+
if suggest:
|
220
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigDynamicGroup. Access the value via the '{suggest}' property getter instead.")
|
221
|
+
|
222
|
+
def __getitem__(self, key: str) -> Any:
|
223
|
+
ConfigDynamicGroup.__key_warning(key)
|
224
|
+
return super().__getitem__(key)
|
225
|
+
|
226
|
+
def get(self, key: str, default = None) -> Any:
|
227
|
+
ConfigDynamicGroup.__key_warning(key)
|
228
|
+
return super().get(key, default)
|
229
|
+
|
230
|
+
def __init__(__self__, *,
|
231
|
+
domain: Optional[str] = None,
|
232
|
+
name: Optional[str] = None,
|
233
|
+
stack_monitoring_assignment: Optional[str] = None):
|
234
|
+
"""
|
235
|
+
:param str domain: (Updatable) Identity domain name
|
236
|
+
:param str name: (Updatable) Name of dynamic Group
|
237
|
+
:param 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.
|
238
|
+
"""
|
239
|
+
if domain is not None:
|
240
|
+
pulumi.set(__self__, "domain", domain)
|
241
|
+
if name is not None:
|
242
|
+
pulumi.set(__self__, "name", name)
|
243
|
+
if stack_monitoring_assignment is not None:
|
244
|
+
pulumi.set(__self__, "stack_monitoring_assignment", stack_monitoring_assignment)
|
245
|
+
|
246
|
+
@property
|
247
|
+
@pulumi.getter
|
248
|
+
def domain(self) -> Optional[str]:
|
249
|
+
"""
|
250
|
+
(Updatable) Identity domain name
|
251
|
+
"""
|
252
|
+
return pulumi.get(self, "domain")
|
253
|
+
|
254
|
+
@property
|
255
|
+
@pulumi.getter
|
256
|
+
def name(self) -> Optional[str]:
|
257
|
+
"""
|
258
|
+
(Updatable) Name of dynamic Group
|
259
|
+
"""
|
260
|
+
return pulumi.get(self, "name")
|
261
|
+
|
262
|
+
@property
|
263
|
+
@pulumi.getter(name="stackMonitoringAssignment")
|
264
|
+
def stack_monitoring_assignment(self) -> Optional[str]:
|
265
|
+
"""
|
266
|
+
(Updatable) Assignment of dynamic group in context of Stack Monitoring service. It describes the purpose of dynamic groups in Stack Monitoring.
|
267
|
+
"""
|
268
|
+
return pulumi.get(self, "stack_monitoring_assignment")
|
269
|
+
|
270
|
+
|
271
|
+
@pulumi.output_type
|
272
|
+
class ConfigUserGroup(dict):
|
273
|
+
@staticmethod
|
274
|
+
def __key_warning(key: str):
|
275
|
+
suggest = None
|
276
|
+
if key == "stackMonitoringRole":
|
277
|
+
suggest = "stack_monitoring_role"
|
278
|
+
|
279
|
+
if suggest:
|
280
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigUserGroup. Access the value via the '{suggest}' property getter instead.")
|
281
|
+
|
282
|
+
def __getitem__(self, key: str) -> Any:
|
283
|
+
ConfigUserGroup.__key_warning(key)
|
284
|
+
return super().__getitem__(key)
|
285
|
+
|
286
|
+
def get(self, key: str, default = None) -> Any:
|
287
|
+
ConfigUserGroup.__key_warning(key)
|
288
|
+
return super().get(key, default)
|
289
|
+
|
290
|
+
def __init__(__self__, *,
|
291
|
+
domain: Optional[str] = None,
|
292
|
+
name: Optional[str] = None,
|
293
|
+
stack_monitoring_role: Optional[str] = None):
|
294
|
+
"""
|
295
|
+
:param str domain: (Updatable) Identity domain name
|
296
|
+
:param str name: (Updatable) Name of user Group
|
297
|
+
:param 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
|
298
|
+
"""
|
299
|
+
if domain is not None:
|
300
|
+
pulumi.set(__self__, "domain", domain)
|
301
|
+
if name is not None:
|
302
|
+
pulumi.set(__self__, "name", name)
|
303
|
+
if stack_monitoring_role is not None:
|
304
|
+
pulumi.set(__self__, "stack_monitoring_role", stack_monitoring_role)
|
305
|
+
|
306
|
+
@property
|
307
|
+
@pulumi.getter
|
308
|
+
def domain(self) -> Optional[str]:
|
309
|
+
"""
|
310
|
+
(Updatable) Identity domain name
|
311
|
+
"""
|
312
|
+
return pulumi.get(self, "domain")
|
313
|
+
|
314
|
+
@property
|
315
|
+
@pulumi.getter
|
316
|
+
def name(self) -> Optional[str]:
|
317
|
+
"""
|
318
|
+
(Updatable) Name of user Group
|
319
|
+
"""
|
320
|
+
return pulumi.get(self, "name")
|
321
|
+
|
322
|
+
@property
|
323
|
+
@pulumi.getter(name="stackMonitoringRole")
|
324
|
+
def stack_monitoring_role(self) -> Optional[str]:
|
325
|
+
"""
|
326
|
+
(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
|
327
|
+
"""
|
328
|
+
return pulumi.get(self, "stack_monitoring_role")
|
329
|
+
|
330
|
+
|
166
331
|
@pulumi.output_type
|
167
332
|
class DiscoveryJobDiscoveryDetails(dict):
|
168
333
|
@staticmethod
|
@@ -3882,6 +4047,104 @@ class GetBaselineableMetricsFilterResult(dict):
|
|
3882
4047
|
return pulumi.get(self, "regex")
|
3883
4048
|
|
3884
4049
|
|
4050
|
+
@pulumi.output_type
|
4051
|
+
class GetConfigAdditionalConfigurationResult(dict):
|
4052
|
+
def __init__(__self__, *,
|
4053
|
+
properties_map: Mapping[str, str]):
|
4054
|
+
"""
|
4055
|
+
:param Mapping[str, str] properties_map: Key/Value pair of Property
|
4056
|
+
"""
|
4057
|
+
pulumi.set(__self__, "properties_map", properties_map)
|
4058
|
+
|
4059
|
+
@property
|
4060
|
+
@pulumi.getter(name="propertiesMap")
|
4061
|
+
def properties_map(self) -> Mapping[str, str]:
|
4062
|
+
"""
|
4063
|
+
Key/Value pair of Property
|
4064
|
+
"""
|
4065
|
+
return pulumi.get(self, "properties_map")
|
4066
|
+
|
4067
|
+
|
4068
|
+
@pulumi.output_type
|
4069
|
+
class GetConfigDynamicGroupResult(dict):
|
4070
|
+
def __init__(__self__, *,
|
4071
|
+
domain: str,
|
4072
|
+
name: str,
|
4073
|
+
stack_monitoring_assignment: str):
|
4074
|
+
"""
|
4075
|
+
:param str domain: Identity domain name
|
4076
|
+
:param str name: Name of user Group
|
4077
|
+
:param str stack_monitoring_assignment: Assignment of dynamic group in context of Stack Monitoring service. It describes the purpose of dynamic groups in Stack Monitoring.
|
4078
|
+
"""
|
4079
|
+
pulumi.set(__self__, "domain", domain)
|
4080
|
+
pulumi.set(__self__, "name", name)
|
4081
|
+
pulumi.set(__self__, "stack_monitoring_assignment", stack_monitoring_assignment)
|
4082
|
+
|
4083
|
+
@property
|
4084
|
+
@pulumi.getter
|
4085
|
+
def domain(self) -> str:
|
4086
|
+
"""
|
4087
|
+
Identity domain name
|
4088
|
+
"""
|
4089
|
+
return pulumi.get(self, "domain")
|
4090
|
+
|
4091
|
+
@property
|
4092
|
+
@pulumi.getter
|
4093
|
+
def name(self) -> str:
|
4094
|
+
"""
|
4095
|
+
Name of user Group
|
4096
|
+
"""
|
4097
|
+
return pulumi.get(self, "name")
|
4098
|
+
|
4099
|
+
@property
|
4100
|
+
@pulumi.getter(name="stackMonitoringAssignment")
|
4101
|
+
def stack_monitoring_assignment(self) -> str:
|
4102
|
+
"""
|
4103
|
+
Assignment of dynamic group in context of Stack Monitoring service. It describes the purpose of dynamic groups in Stack Monitoring.
|
4104
|
+
"""
|
4105
|
+
return pulumi.get(self, "stack_monitoring_assignment")
|
4106
|
+
|
4107
|
+
|
4108
|
+
@pulumi.output_type
|
4109
|
+
class GetConfigUserGroupResult(dict):
|
4110
|
+
def __init__(__self__, *,
|
4111
|
+
domain: str,
|
4112
|
+
name: str,
|
4113
|
+
stack_monitoring_role: str):
|
4114
|
+
"""
|
4115
|
+
:param str domain: Identity domain name
|
4116
|
+
:param str name: Name of user Group
|
4117
|
+
:param str stack_monitoring_role: Role assigned to user group in context of Stack Monitoring service. Access role can be for example: ADMINISTRATOR, OPERATOR, VIEWER, any other access role
|
4118
|
+
"""
|
4119
|
+
pulumi.set(__self__, "domain", domain)
|
4120
|
+
pulumi.set(__self__, "name", name)
|
4121
|
+
pulumi.set(__self__, "stack_monitoring_role", stack_monitoring_role)
|
4122
|
+
|
4123
|
+
@property
|
4124
|
+
@pulumi.getter
|
4125
|
+
def domain(self) -> str:
|
4126
|
+
"""
|
4127
|
+
Identity domain name
|
4128
|
+
"""
|
4129
|
+
return pulumi.get(self, "domain")
|
4130
|
+
|
4131
|
+
@property
|
4132
|
+
@pulumi.getter
|
4133
|
+
def name(self) -> str:
|
4134
|
+
"""
|
4135
|
+
Name of user Group
|
4136
|
+
"""
|
4137
|
+
return pulumi.get(self, "name")
|
4138
|
+
|
4139
|
+
@property
|
4140
|
+
@pulumi.getter(name="stackMonitoringRole")
|
4141
|
+
def stack_monitoring_role(self) -> str:
|
4142
|
+
"""
|
4143
|
+
Role assigned to user group in context of Stack Monitoring service. Access role can be for example: ADMINISTRATOR, OPERATOR, VIEWER, any other access role
|
4144
|
+
"""
|
4145
|
+
return pulumi.get(self, "stack_monitoring_role")
|
4146
|
+
|
4147
|
+
|
3885
4148
|
@pulumi.output_type
|
3886
4149
|
class GetConfigsConfigCollectionResult(dict):
|
3887
4150
|
def __init__(__self__, *,
|
@@ -3897,47 +4160,73 @@ class GetConfigsConfigCollectionResult(dict):
|
|
3897
4160
|
@pulumi.output_type
|
3898
4161
|
class GetConfigsConfigCollectionItemResult(dict):
|
3899
4162
|
def __init__(__self__, *,
|
4163
|
+
additional_configurations: Sequence['outputs.GetConfigsConfigCollectionItemAdditionalConfigurationResult'],
|
3900
4164
|
compartment_id: str,
|
3901
4165
|
config_type: str,
|
3902
4166
|
defined_tags: Mapping[str, str],
|
3903
4167
|
display_name: str,
|
4168
|
+
dynamic_groups: Sequence['outputs.GetConfigsConfigCollectionItemDynamicGroupResult'],
|
3904
4169
|
freeform_tags: Mapping[str, str],
|
3905
4170
|
id: str,
|
3906
4171
|
is_enabled: bool,
|
4172
|
+
is_manually_onboarded: bool,
|
3907
4173
|
license: str,
|
4174
|
+
policy_names: Sequence[str],
|
3908
4175
|
resource_type: str,
|
3909
4176
|
state: str,
|
3910
4177
|
system_tags: Mapping[str, str],
|
3911
4178
|
time_created: str,
|
3912
|
-
time_updated: str
|
4179
|
+
time_updated: str,
|
4180
|
+
user_groups: Sequence['outputs.GetConfigsConfigCollectionItemUserGroupResult'],
|
4181
|
+
version: str):
|
3913
4182
|
"""
|
4183
|
+
:param Sequence['GetConfigsConfigCollectionItemAdditionalConfigurationArgs'] additional_configurations: Property Details
|
3914
4184
|
:param str compartment_id: The ID of the compartment in which data is listed.
|
3915
4185
|
:param str config_type: The type of configuration.
|
3916
4186
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
3917
4187
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
4188
|
+
:param Sequence['GetConfigsConfigCollectionItemDynamicGroupArgs'] dynamic_groups: List of dynamic groups dedicated for Stack Monitoring.
|
3918
4189
|
: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"}`
|
3919
4190
|
:param str id: The Unique Oracle ID (OCID) that is immutable on creation.
|
3920
|
-
:param bool is_enabled: True if automatic promotion or enterprise extensibility is enabled, false if it is not enabled.
|
4191
|
+
:param bool is_enabled: True if automatic activation of the Management Agent plugin, automatic promotion or enterprise extensibility is enabled, false if it is not enabled.
|
4192
|
+
:param bool is_manually_onboarded: True if customer decides marks configuration as manually configured.
|
3921
4193
|
:param str license: License edition.
|
4194
|
+
:param Sequence[str] policy_names: List of policy names assigned for onboarding
|
3922
4195
|
:param str resource_type: The type of resource to configure for automatic promotion.
|
3923
4196
|
:param str state: The current state of the Config.
|
3924
4197
|
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
3925
4198
|
:param str time_created: The time the configuration was created. An RFC3339 formatted datetime string.
|
3926
4199
|
:param str time_updated: The time the Config was updated.
|
4200
|
+
:param Sequence['GetConfigsConfigCollectionItemUserGroupArgs'] user_groups: List of user groups dedicated for Stack Monitoring.
|
4201
|
+
:param str version: Assigned version to given onboard configuration.
|
3927
4202
|
"""
|
4203
|
+
pulumi.set(__self__, "additional_configurations", additional_configurations)
|
3928
4204
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
3929
4205
|
pulumi.set(__self__, "config_type", config_type)
|
3930
4206
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
3931
4207
|
pulumi.set(__self__, "display_name", display_name)
|
4208
|
+
pulumi.set(__self__, "dynamic_groups", dynamic_groups)
|
3932
4209
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
3933
4210
|
pulumi.set(__self__, "id", id)
|
3934
4211
|
pulumi.set(__self__, "is_enabled", is_enabled)
|
4212
|
+
pulumi.set(__self__, "is_manually_onboarded", is_manually_onboarded)
|
3935
4213
|
pulumi.set(__self__, "license", license)
|
4214
|
+
pulumi.set(__self__, "policy_names", policy_names)
|
3936
4215
|
pulumi.set(__self__, "resource_type", resource_type)
|
3937
4216
|
pulumi.set(__self__, "state", state)
|
3938
4217
|
pulumi.set(__self__, "system_tags", system_tags)
|
3939
4218
|
pulumi.set(__self__, "time_created", time_created)
|
3940
4219
|
pulumi.set(__self__, "time_updated", time_updated)
|
4220
|
+
pulumi.set(__self__, "user_groups", user_groups)
|
4221
|
+
pulumi.set(__self__, "version", version)
|
4222
|
+
|
4223
|
+
@property
|
4224
|
+
@pulumi.getter(name="additionalConfigurations")
|
4225
|
+
def additional_configurations(self) -> Sequence['outputs.GetConfigsConfigCollectionItemAdditionalConfigurationResult']:
|
4226
|
+
"""
|
4227
|
+
Property Details
|
4228
|
+
"""
|
4229
|
+
return pulumi.get(self, "additional_configurations")
|
3941
4230
|
|
3942
4231
|
@property
|
3943
4232
|
@pulumi.getter(name="compartmentId")
|
@@ -3971,6 +4260,14 @@ class GetConfigsConfigCollectionItemResult(dict):
|
|
3971
4260
|
"""
|
3972
4261
|
return pulumi.get(self, "display_name")
|
3973
4262
|
|
4263
|
+
@property
|
4264
|
+
@pulumi.getter(name="dynamicGroups")
|
4265
|
+
def dynamic_groups(self) -> Sequence['outputs.GetConfigsConfigCollectionItemDynamicGroupResult']:
|
4266
|
+
"""
|
4267
|
+
List of dynamic groups dedicated for Stack Monitoring.
|
4268
|
+
"""
|
4269
|
+
return pulumi.get(self, "dynamic_groups")
|
4270
|
+
|
3974
4271
|
@property
|
3975
4272
|
@pulumi.getter(name="freeformTags")
|
3976
4273
|
def freeform_tags(self) -> Mapping[str, str]:
|
@@ -3991,10 +4288,18 @@ class GetConfigsConfigCollectionItemResult(dict):
|
|
3991
4288
|
@pulumi.getter(name="isEnabled")
|
3992
4289
|
def is_enabled(self) -> bool:
|
3993
4290
|
"""
|
3994
|
-
True if automatic promotion or enterprise extensibility is enabled, false if it is not enabled.
|
4291
|
+
True if automatic activation of the Management Agent plugin, automatic promotion or enterprise extensibility is enabled, false if it is not enabled.
|
3995
4292
|
"""
|
3996
4293
|
return pulumi.get(self, "is_enabled")
|
3997
4294
|
|
4295
|
+
@property
|
4296
|
+
@pulumi.getter(name="isManuallyOnboarded")
|
4297
|
+
def is_manually_onboarded(self) -> bool:
|
4298
|
+
"""
|
4299
|
+
True if customer decides marks configuration as manually configured.
|
4300
|
+
"""
|
4301
|
+
return pulumi.get(self, "is_manually_onboarded")
|
4302
|
+
|
3998
4303
|
@property
|
3999
4304
|
@pulumi.getter
|
4000
4305
|
def license(self) -> str:
|
@@ -4003,6 +4308,14 @@ class GetConfigsConfigCollectionItemResult(dict):
|
|
4003
4308
|
"""
|
4004
4309
|
return pulumi.get(self, "license")
|
4005
4310
|
|
4311
|
+
@property
|
4312
|
+
@pulumi.getter(name="policyNames")
|
4313
|
+
def policy_names(self) -> Sequence[str]:
|
4314
|
+
"""
|
4315
|
+
List of policy names assigned for onboarding
|
4316
|
+
"""
|
4317
|
+
return pulumi.get(self, "policy_names")
|
4318
|
+
|
4006
4319
|
@property
|
4007
4320
|
@pulumi.getter(name="resourceType")
|
4008
4321
|
def resource_type(self) -> str:
|
@@ -4043,6 +4356,120 @@ class GetConfigsConfigCollectionItemResult(dict):
|
|
4043
4356
|
"""
|
4044
4357
|
return pulumi.get(self, "time_updated")
|
4045
4358
|
|
4359
|
+
@property
|
4360
|
+
@pulumi.getter(name="userGroups")
|
4361
|
+
def user_groups(self) -> Sequence['outputs.GetConfigsConfigCollectionItemUserGroupResult']:
|
4362
|
+
"""
|
4363
|
+
List of user groups dedicated for Stack Monitoring.
|
4364
|
+
"""
|
4365
|
+
return pulumi.get(self, "user_groups")
|
4366
|
+
|
4367
|
+
@property
|
4368
|
+
@pulumi.getter
|
4369
|
+
def version(self) -> str:
|
4370
|
+
"""
|
4371
|
+
Assigned version to given onboard configuration.
|
4372
|
+
"""
|
4373
|
+
return pulumi.get(self, "version")
|
4374
|
+
|
4375
|
+
|
4376
|
+
@pulumi.output_type
|
4377
|
+
class GetConfigsConfigCollectionItemAdditionalConfigurationResult(dict):
|
4378
|
+
def __init__(__self__, *,
|
4379
|
+
properties_map: Mapping[str, str]):
|
4380
|
+
"""
|
4381
|
+
:param Mapping[str, str] properties_map: Key/Value pair of Property
|
4382
|
+
"""
|
4383
|
+
pulumi.set(__self__, "properties_map", properties_map)
|
4384
|
+
|
4385
|
+
@property
|
4386
|
+
@pulumi.getter(name="propertiesMap")
|
4387
|
+
def properties_map(self) -> Mapping[str, str]:
|
4388
|
+
"""
|
4389
|
+
Key/Value pair of Property
|
4390
|
+
"""
|
4391
|
+
return pulumi.get(self, "properties_map")
|
4392
|
+
|
4393
|
+
|
4394
|
+
@pulumi.output_type
|
4395
|
+
class GetConfigsConfigCollectionItemDynamicGroupResult(dict):
|
4396
|
+
def __init__(__self__, *,
|
4397
|
+
domain: str,
|
4398
|
+
name: str,
|
4399
|
+
stack_monitoring_assignment: str):
|
4400
|
+
"""
|
4401
|
+
:param str domain: Identity domain name
|
4402
|
+
:param str name: Name of user Group
|
4403
|
+
:param str stack_monitoring_assignment: Assignment of dynamic group in context of Stack Monitoring service. It describes the purpose of dynamic groups in Stack Monitoring.
|
4404
|
+
"""
|
4405
|
+
pulumi.set(__self__, "domain", domain)
|
4406
|
+
pulumi.set(__self__, "name", name)
|
4407
|
+
pulumi.set(__self__, "stack_monitoring_assignment", stack_monitoring_assignment)
|
4408
|
+
|
4409
|
+
@property
|
4410
|
+
@pulumi.getter
|
4411
|
+
def domain(self) -> str:
|
4412
|
+
"""
|
4413
|
+
Identity domain name
|
4414
|
+
"""
|
4415
|
+
return pulumi.get(self, "domain")
|
4416
|
+
|
4417
|
+
@property
|
4418
|
+
@pulumi.getter
|
4419
|
+
def name(self) -> str:
|
4420
|
+
"""
|
4421
|
+
Name of user Group
|
4422
|
+
"""
|
4423
|
+
return pulumi.get(self, "name")
|
4424
|
+
|
4425
|
+
@property
|
4426
|
+
@pulumi.getter(name="stackMonitoringAssignment")
|
4427
|
+
def stack_monitoring_assignment(self) -> str:
|
4428
|
+
"""
|
4429
|
+
Assignment of dynamic group in context of Stack Monitoring service. It describes the purpose of dynamic groups in Stack Monitoring.
|
4430
|
+
"""
|
4431
|
+
return pulumi.get(self, "stack_monitoring_assignment")
|
4432
|
+
|
4433
|
+
|
4434
|
+
@pulumi.output_type
|
4435
|
+
class GetConfigsConfigCollectionItemUserGroupResult(dict):
|
4436
|
+
def __init__(__self__, *,
|
4437
|
+
domain: str,
|
4438
|
+
name: str,
|
4439
|
+
stack_monitoring_role: str):
|
4440
|
+
"""
|
4441
|
+
:param str domain: Identity domain name
|
4442
|
+
:param str name: Name of user Group
|
4443
|
+
:param str stack_monitoring_role: Role assigned to user group in context of Stack Monitoring service. Access role can be for example: ADMINISTRATOR, OPERATOR, VIEWER, any other access role
|
4444
|
+
"""
|
4445
|
+
pulumi.set(__self__, "domain", domain)
|
4446
|
+
pulumi.set(__self__, "name", name)
|
4447
|
+
pulumi.set(__self__, "stack_monitoring_role", stack_monitoring_role)
|
4448
|
+
|
4449
|
+
@property
|
4450
|
+
@pulumi.getter
|
4451
|
+
def domain(self) -> str:
|
4452
|
+
"""
|
4453
|
+
Identity domain name
|
4454
|
+
"""
|
4455
|
+
return pulumi.get(self, "domain")
|
4456
|
+
|
4457
|
+
@property
|
4458
|
+
@pulumi.getter
|
4459
|
+
def name(self) -> str:
|
4460
|
+
"""
|
4461
|
+
Name of user Group
|
4462
|
+
"""
|
4463
|
+
return pulumi.get(self, "name")
|
4464
|
+
|
4465
|
+
@property
|
4466
|
+
@pulumi.getter(name="stackMonitoringRole")
|
4467
|
+
def stack_monitoring_role(self) -> str:
|
4468
|
+
"""
|
4469
|
+
Role assigned to user group in context of Stack Monitoring service. Access role can be for example: ADMINISTRATOR, OPERATOR, VIEWER, any other access role
|
4470
|
+
"""
|
4471
|
+
return pulumi.get(self, "stack_monitoring_role")
|
4472
|
+
|
4046
4473
|
|
4047
4474
|
@pulumi.output_type
|
4048
4475
|
class GetConfigsFilterResult(dict):
|
@@ -4050,6 +4477,9 @@ class GetConfigsFilterResult(dict):
|
|
4050
4477
|
name: str,
|
4051
4478
|
values: Sequence[str],
|
4052
4479
|
regex: Optional[bool] = None):
|
4480
|
+
"""
|
4481
|
+
:param str name: Name of user Group
|
4482
|
+
"""
|
4053
4483
|
pulumi.set(__self__, "name", name)
|
4054
4484
|
pulumi.set(__self__, "values", values)
|
4055
4485
|
if regex is not None:
|
@@ -4058,6 +4488,9 @@ class GetConfigsFilterResult(dict):
|
|
4058
4488
|
@property
|
4059
4489
|
@pulumi.getter
|
4060
4490
|
def name(self) -> str:
|
4491
|
+
"""
|
4492
|
+
Name of user Group
|
4493
|
+
"""
|
4061
4494
|
return pulumi.get(self, "name")
|
4062
4495
|
|
4063
4496
|
@property
|
@@ -5055,11 +5488,14 @@ class GetMaintenanceWindowsMaintenanceWindowCollectionItemResult(dict):
|
|
5055
5488
|
system_tags: Mapping[str, str]):
|
5056
5489
|
"""
|
5057
5490
|
:param str compartment_id: The ID of the compartment in which data is listed.
|
5491
|
+
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
5492
|
+
: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"}`
|
5058
5493
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of maintenance window.
|
5059
5494
|
:param str lifecycle_details: A filter to return maintenance windows with matching lifecycleDetails.
|
5060
5495
|
:param str name: A filter to return maintenance windows that match exact resource name.
|
5061
5496
|
:param Sequence['GetMaintenanceWindowsMaintenanceWindowCollectionItemScheduleArgs'] schedules: Schedule information of the Maintenance Window
|
5062
5497
|
:param str state: Lifecycle state of the monitored resource.
|
5498
|
+
:param Mapping[str, str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
5063
5499
|
"""
|
5064
5500
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
5065
5501
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -5086,11 +5522,17 @@ class GetMaintenanceWindowsMaintenanceWindowCollectionItemResult(dict):
|
|
5086
5522
|
@property
|
5087
5523
|
@pulumi.getter(name="definedTags")
|
5088
5524
|
def defined_tags(self) -> Mapping[str, str]:
|
5525
|
+
"""
|
5526
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
5527
|
+
"""
|
5089
5528
|
return pulumi.get(self, "defined_tags")
|
5090
5529
|
|
5091
5530
|
@property
|
5092
5531
|
@pulumi.getter(name="freeformTags")
|
5093
5532
|
def freeform_tags(self) -> Mapping[str, str]:
|
5533
|
+
"""
|
5534
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
5535
|
+
"""
|
5094
5536
|
return pulumi.get(self, "freeform_tags")
|
5095
5537
|
|
5096
5538
|
@property
|
@@ -5156,6 +5598,9 @@ class GetMaintenanceWindowsMaintenanceWindowCollectionItemResult(dict):
|
|
5156
5598
|
@property
|
5157
5599
|
@pulumi.getter(name="systemTags")
|
5158
5600
|
def system_tags(self) -> Mapping[str, str]:
|
5601
|
+
"""
|
5602
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
5603
|
+
"""
|
5159
5604
|
return pulumi.get(self, "system_tags")
|
5160
5605
|
|
5161
5606
|
|