pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.34.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. pulumi_oci/__init__.py +51 -0
  2. pulumi_oci/clusterplacementgroups/__init__.py +12 -0
  3. pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
  4. pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
  5. pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
  6. pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
  7. pulumi_oci/clusterplacementgroups/outputs.py +485 -0
  8. pulumi_oci/config/__init__.pyi +2 -2
  9. pulumi_oci/config/vars.py +2 -2
  10. pulumi_oci/core/_inputs.py +116 -28
  11. pulumi_oci/core/boot_volume.py +49 -0
  12. pulumi_oci/core/compute_capacity_reservation.py +2 -0
  13. pulumi_oci/core/compute_cluster.py +2 -4
  14. pulumi_oci/core/drg_route_distribution.py +7 -7
  15. pulumi_oci/core/get_boot_volume.py +14 -1
  16. pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
  17. pulumi_oci/core/get_instance.py +14 -1
  18. pulumi_oci/core/get_subnet.py +2 -2
  19. pulumi_oci/core/get_vcn.py +2 -2
  20. pulumi_oci/core/get_volume.py +14 -1
  21. pulumi_oci/core/get_volumes.py +21 -1
  22. pulumi_oci/core/instance.py +51 -4
  23. pulumi_oci/core/instance_configuration.py +8 -0
  24. pulumi_oci/core/outputs.py +302 -45
  25. pulumi_oci/core/volume.py +49 -0
  26. pulumi_oci/core/volume_attachment.py +28 -0
  27. pulumi_oci/core/volume_group.py +49 -0
  28. pulumi_oci/database/db_home.py +47 -0
  29. pulumi_oci/database/get_db_home.py +14 -1
  30. pulumi_oci/database/outputs.py +11 -0
  31. pulumi_oci/databasemanagement/__init__.py +5 -0
  32. pulumi_oci/databasemanagement/_inputs.py +1207 -2
  33. pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
  34. pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
  35. pulumi_oci/databasemanagement/external_asm.py +28 -0
  36. pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
  37. pulumi_oci/databasemanagement/external_cluster.py +28 -0
  38. pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
  39. pulumi_oci/databasemanagement/external_db_home.py +28 -0
  40. pulumi_oci/databasemanagement/external_db_node.py +28 -0
  41. pulumi_oci/databasemanagement/external_db_system.py +28 -0
  42. pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
  43. pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
  44. pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
  45. pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
  46. pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
  47. pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
  48. pulumi_oci/databasemanagement/external_listener.py +28 -0
  49. pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
  50. pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
  51. pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
  52. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  53. pulumi_oci/databasemanagement/get_external_asm.py +14 -1
  54. pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
  55. pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
  56. pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
  57. pulumi_oci/databasemanagement/get_external_databases.py +18 -1
  58. pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
  59. pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
  60. pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
  61. pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
  62. pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
  63. pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
  64. pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
  65. pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
  66. pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
  67. pulumi_oci/databasemanagement/get_external_listener.py +14 -1
  68. pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
  69. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
  70. pulumi_oci/databasemanagement/get_named_credential.py +14 -1
  71. pulumi_oci/databasemanagement/managed_database.py +28 -0
  72. pulumi_oci/databasemanagement/managed_database_group.py +28 -0
  73. pulumi_oci/databasemanagement/named_credential.py +28 -0
  74. pulumi_oci/databasemanagement/outputs.py +1723 -214
  75. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
  76. pulumi_oci/databasemigration/_inputs.py +20 -0
  77. pulumi_oci/databasemigration/connection.py +13 -0
  78. pulumi_oci/databasemigration/get_connection.py +3 -0
  79. pulumi_oci/databasemigration/get_migration.py +3 -0
  80. pulumi_oci/databasemigration/migration.py +13 -0
  81. pulumi_oci/databasemigration/outputs.py +68 -0
  82. pulumi_oci/datasafe/__init__.py +3 -0
  83. pulumi_oci/datasafe/_inputs.py +80 -0
  84. pulumi_oci/datasafe/get_masking_policy.py +11 -1
  85. pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
  86. pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
  87. pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
  88. pulumi_oci/datasafe/masking_policy.py +75 -28
  89. pulumi_oci/datasafe/outputs.py +287 -0
  90. pulumi_oci/networkloadbalancer/backend_set.py +49 -0
  91. pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
  92. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
  93. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  94. pulumi_oci/provider.py +8 -8
  95. pulumi_oci/recoverymod/_inputs.py +16 -0
  96. pulumi_oci/recoverymod/get_protected_database.py +25 -5
  97. pulumi_oci/recoverymod/get_protection_policies.py +1 -7
  98. pulumi_oci/recoverymod/get_protection_policy.py +15 -8
  99. pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
  100. pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
  101. pulumi_oci/recoverymod/outputs.py +96 -24
  102. pulumi_oci/recoverymod/protected_database.py +95 -16
  103. pulumi_oci/recoverymod/protection_policy.py +121 -54
  104. pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
  105. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/METADATA +1 -1
  106. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/RECORD +108 -94
  107. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/WHEEL +0 -0
  108. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,485 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'ClusterPlacementGroupCapabilities',
15
+ 'ClusterPlacementGroupCapabilitiesItem',
16
+ 'ClusterPlacementGroupPlacementInstruction',
17
+ 'GetClusterPlacementGroupCapabilityResult',
18
+ 'GetClusterPlacementGroupCapabilityItemResult',
19
+ 'GetClusterPlacementGroupPlacementInstructionResult',
20
+ 'GetClusterPlacementGroupsClusterPlacementGroupCollectionResult',
21
+ 'GetClusterPlacementGroupsClusterPlacementGroupCollectionItemResult',
22
+ 'GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityResult',
23
+ 'GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityItemResult',
24
+ 'GetClusterPlacementGroupsClusterPlacementGroupCollectionItemPlacementInstructionResult',
25
+ 'GetClusterPlacementGroupsFilterResult',
26
+ ]
27
+
28
+ @pulumi.output_type
29
+ class ClusterPlacementGroupCapabilities(dict):
30
+ def __init__(__self__, *,
31
+ items: Sequence['outputs.ClusterPlacementGroupCapabilitiesItem']):
32
+ """
33
+ :param Sequence['ClusterPlacementGroupCapabilitiesItemArgs'] items: The supported resources.
34
+ """
35
+ pulumi.set(__self__, "items", items)
36
+
37
+ @property
38
+ @pulumi.getter
39
+ def items(self) -> Sequence['outputs.ClusterPlacementGroupCapabilitiesItem']:
40
+ """
41
+ The supported resources.
42
+ """
43
+ return pulumi.get(self, "items")
44
+
45
+
46
+ @pulumi.output_type
47
+ class ClusterPlacementGroupCapabilitiesItem(dict):
48
+ def __init__(__self__, *,
49
+ name: str,
50
+ service: str):
51
+ """
52
+ :param str name: The friendly name of the cluster placement group.
53
+ :param str service: The service that the resource is part of.
54
+ """
55
+ pulumi.set(__self__, "name", name)
56
+ pulumi.set(__self__, "service", service)
57
+
58
+ @property
59
+ @pulumi.getter
60
+ def name(self) -> str:
61
+ """
62
+ The friendly name of the cluster placement group.
63
+ """
64
+ return pulumi.get(self, "name")
65
+
66
+ @property
67
+ @pulumi.getter
68
+ def service(self) -> str:
69
+ """
70
+ The service that the resource is part of.
71
+ """
72
+ return pulumi.get(self, "service")
73
+
74
+
75
+ @pulumi.output_type
76
+ class ClusterPlacementGroupPlacementInstruction(dict):
77
+ def __init__(__self__, *,
78
+ type: str,
79
+ value: str):
80
+ """
81
+ :param str type: The type of placement instruction.
82
+ :param str value: The value of the token designated for placement of the cluster placement group upon creation.
83
+ """
84
+ pulumi.set(__self__, "type", type)
85
+ pulumi.set(__self__, "value", value)
86
+
87
+ @property
88
+ @pulumi.getter
89
+ def type(self) -> str:
90
+ """
91
+ The type of placement instruction.
92
+ """
93
+ return pulumi.get(self, "type")
94
+
95
+ @property
96
+ @pulumi.getter
97
+ def value(self) -> str:
98
+ """
99
+ The value of the token designated for placement of the cluster placement group upon creation.
100
+ """
101
+ return pulumi.get(self, "value")
102
+
103
+
104
+ @pulumi.output_type
105
+ class GetClusterPlacementGroupCapabilityResult(dict):
106
+ def __init__(__self__, *,
107
+ items: Sequence['outputs.GetClusterPlacementGroupCapabilityItemResult']):
108
+ """
109
+ :param Sequence['GetClusterPlacementGroupCapabilityItemArgs'] items: The supported resources.
110
+ """
111
+ pulumi.set(__self__, "items", items)
112
+
113
+ @property
114
+ @pulumi.getter
115
+ def items(self) -> Sequence['outputs.GetClusterPlacementGroupCapabilityItemResult']:
116
+ """
117
+ The supported resources.
118
+ """
119
+ return pulumi.get(self, "items")
120
+
121
+
122
+ @pulumi.output_type
123
+ class GetClusterPlacementGroupCapabilityItemResult(dict):
124
+ def __init__(__self__, *,
125
+ name: str,
126
+ service: str):
127
+ """
128
+ :param str name: The user-friendly name of the cluster placement group. The display name for a cluster placement must be unique and you cannot change it. Avoid entering confidential information.
129
+ :param str service: The service that the resource is part of.
130
+ """
131
+ pulumi.set(__self__, "name", name)
132
+ pulumi.set(__self__, "service", service)
133
+
134
+ @property
135
+ @pulumi.getter
136
+ def name(self) -> str:
137
+ """
138
+ The user-friendly name of the cluster placement group. The display name for a cluster placement must be unique and you cannot change it. Avoid entering confidential information.
139
+ """
140
+ return pulumi.get(self, "name")
141
+
142
+ @property
143
+ @pulumi.getter
144
+ def service(self) -> str:
145
+ """
146
+ The service that the resource is part of.
147
+ """
148
+ return pulumi.get(self, "service")
149
+
150
+
151
+ @pulumi.output_type
152
+ class GetClusterPlacementGroupPlacementInstructionResult(dict):
153
+ def __init__(__self__, *,
154
+ type: str,
155
+ value: str):
156
+ """
157
+ :param str type: The type of placement instruction.
158
+ :param str value: The value of the token designated for placement of the cluster placement group upon creation.
159
+ """
160
+ pulumi.set(__self__, "type", type)
161
+ pulumi.set(__self__, "value", value)
162
+
163
+ @property
164
+ @pulumi.getter
165
+ def type(self) -> str:
166
+ """
167
+ The type of placement instruction.
168
+ """
169
+ return pulumi.get(self, "type")
170
+
171
+ @property
172
+ @pulumi.getter
173
+ def value(self) -> str:
174
+ """
175
+ The value of the token designated for placement of the cluster placement group upon creation.
176
+ """
177
+ return pulumi.get(self, "value")
178
+
179
+
180
+ @pulumi.output_type
181
+ class GetClusterPlacementGroupsClusterPlacementGroupCollectionResult(dict):
182
+ def __init__(__self__, *,
183
+ items: Sequence['outputs.GetClusterPlacementGroupsClusterPlacementGroupCollectionItemResult']):
184
+ """
185
+ :param Sequence['GetClusterPlacementGroupsClusterPlacementGroupCollectionItemArgs'] items: The supported resources.
186
+ """
187
+ pulumi.set(__self__, "items", items)
188
+
189
+ @property
190
+ @pulumi.getter
191
+ def items(self) -> Sequence['outputs.GetClusterPlacementGroupsClusterPlacementGroupCollectionItemResult']:
192
+ """
193
+ The supported resources.
194
+ """
195
+ return pulumi.get(self, "items")
196
+
197
+
198
+ @pulumi.output_type
199
+ class GetClusterPlacementGroupsClusterPlacementGroupCollectionItemResult(dict):
200
+ def __init__(__self__, *,
201
+ availability_domain: str,
202
+ capabilities: Sequence['outputs.GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityResult'],
203
+ cluster_placement_group_type: str,
204
+ compartment_id: str,
205
+ defined_tags: Mapping[str, Any],
206
+ description: str,
207
+ freeform_tags: Mapping[str, Any],
208
+ id: str,
209
+ lifecycle_details: str,
210
+ name: str,
211
+ opc_dry_run: bool,
212
+ placement_instructions: Sequence['outputs.GetClusterPlacementGroupsClusterPlacementGroupCollectionItemPlacementInstructionResult'],
213
+ state: str,
214
+ system_tags: Mapping[str, Any],
215
+ time_created: str,
216
+ time_updated: str):
217
+ """
218
+ :param str availability_domain: The availability domain of the cluster placement group.
219
+ :param Sequence['GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityArgs'] capabilities: A list of resources that you can create in a cluster placement group.
220
+ :param str cluster_placement_group_type: The type of cluster placement group.
221
+ :param str compartment_id: A filter to return only the resources that match the specified compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
222
+ :param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
223
+ :param str description: A description of the cluster placement group.
224
+ :param Mapping[str, Any] 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"}`
225
+ :param str id: A filter to return only the resources that match the specified unique cluster placement group identifier.
226
+ :param str lifecycle_details: A message describing the current state in more detail. For example, lifecycle details for a resource in a Failed state might include information to act on.
227
+ :param str name: A filter to return only the resources that match the entire display name specified.
228
+ :param Sequence['GetClusterPlacementGroupsClusterPlacementGroupCollectionItemPlacementInstructionArgs'] placement_instructions: Details that inform cluster placement group provisioning.
229
+ :param str state: A filter to return only the resources that match the specified lifecycle state.
230
+ :param Mapping[str, Any] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
231
+ :param str time_created: The time the cluster placement group was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
232
+ :param str time_updated: The time the cluster placement group was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
233
+ """
234
+ pulumi.set(__self__, "availability_domain", availability_domain)
235
+ pulumi.set(__self__, "capabilities", capabilities)
236
+ pulumi.set(__self__, "cluster_placement_group_type", cluster_placement_group_type)
237
+ pulumi.set(__self__, "compartment_id", compartment_id)
238
+ pulumi.set(__self__, "defined_tags", defined_tags)
239
+ pulumi.set(__self__, "description", description)
240
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
241
+ pulumi.set(__self__, "id", id)
242
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
243
+ pulumi.set(__self__, "name", name)
244
+ pulumi.set(__self__, "opc_dry_run", opc_dry_run)
245
+ pulumi.set(__self__, "placement_instructions", placement_instructions)
246
+ pulumi.set(__self__, "state", state)
247
+ pulumi.set(__self__, "system_tags", system_tags)
248
+ pulumi.set(__self__, "time_created", time_created)
249
+ pulumi.set(__self__, "time_updated", time_updated)
250
+
251
+ @property
252
+ @pulumi.getter(name="availabilityDomain")
253
+ def availability_domain(self) -> str:
254
+ """
255
+ The availability domain of the cluster placement group.
256
+ """
257
+ return pulumi.get(self, "availability_domain")
258
+
259
+ @property
260
+ @pulumi.getter
261
+ def capabilities(self) -> Sequence['outputs.GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityResult']:
262
+ """
263
+ A list of resources that you can create in a cluster placement group.
264
+ """
265
+ return pulumi.get(self, "capabilities")
266
+
267
+ @property
268
+ @pulumi.getter(name="clusterPlacementGroupType")
269
+ def cluster_placement_group_type(self) -> str:
270
+ """
271
+ The type of cluster placement group.
272
+ """
273
+ return pulumi.get(self, "cluster_placement_group_type")
274
+
275
+ @property
276
+ @pulumi.getter(name="compartmentId")
277
+ def compartment_id(self) -> str:
278
+ """
279
+ A filter to return only the resources that match the specified compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
280
+ """
281
+ return pulumi.get(self, "compartment_id")
282
+
283
+ @property
284
+ @pulumi.getter(name="definedTags")
285
+ def defined_tags(self) -> Mapping[str, Any]:
286
+ """
287
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
288
+ """
289
+ return pulumi.get(self, "defined_tags")
290
+
291
+ @property
292
+ @pulumi.getter
293
+ def description(self) -> str:
294
+ """
295
+ A description of the cluster placement group.
296
+ """
297
+ return pulumi.get(self, "description")
298
+
299
+ @property
300
+ @pulumi.getter(name="freeformTags")
301
+ def freeform_tags(self) -> Mapping[str, Any]:
302
+ """
303
+ Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
304
+ """
305
+ return pulumi.get(self, "freeform_tags")
306
+
307
+ @property
308
+ @pulumi.getter
309
+ def id(self) -> str:
310
+ """
311
+ A filter to return only the resources that match the specified unique cluster placement group identifier.
312
+ """
313
+ return pulumi.get(self, "id")
314
+
315
+ @property
316
+ @pulumi.getter(name="lifecycleDetails")
317
+ def lifecycle_details(self) -> str:
318
+ """
319
+ A message describing the current state in more detail. For example, lifecycle details for a resource in a Failed state might include information to act on.
320
+ """
321
+ return pulumi.get(self, "lifecycle_details")
322
+
323
+ @property
324
+ @pulumi.getter
325
+ def name(self) -> str:
326
+ """
327
+ A filter to return only the resources that match the entire display name specified.
328
+ """
329
+ return pulumi.get(self, "name")
330
+
331
+ @property
332
+ @pulumi.getter(name="opcDryRun")
333
+ def opc_dry_run(self) -> bool:
334
+ return pulumi.get(self, "opc_dry_run")
335
+
336
+ @property
337
+ @pulumi.getter(name="placementInstructions")
338
+ def placement_instructions(self) -> Sequence['outputs.GetClusterPlacementGroupsClusterPlacementGroupCollectionItemPlacementInstructionResult']:
339
+ """
340
+ Details that inform cluster placement group provisioning.
341
+ """
342
+ return pulumi.get(self, "placement_instructions")
343
+
344
+ @property
345
+ @pulumi.getter
346
+ def state(self) -> str:
347
+ """
348
+ A filter to return only the resources that match the specified lifecycle state.
349
+ """
350
+ return pulumi.get(self, "state")
351
+
352
+ @property
353
+ @pulumi.getter(name="systemTags")
354
+ def system_tags(self) -> Mapping[str, Any]:
355
+ """
356
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
357
+ """
358
+ return pulumi.get(self, "system_tags")
359
+
360
+ @property
361
+ @pulumi.getter(name="timeCreated")
362
+ def time_created(self) -> str:
363
+ """
364
+ The time the cluster placement group was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
365
+ """
366
+ return pulumi.get(self, "time_created")
367
+
368
+ @property
369
+ @pulumi.getter(name="timeUpdated")
370
+ def time_updated(self) -> str:
371
+ """
372
+ The time the cluster placement group was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
373
+ """
374
+ return pulumi.get(self, "time_updated")
375
+
376
+
377
+ @pulumi.output_type
378
+ class GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityResult(dict):
379
+ def __init__(__self__, *,
380
+ items: Sequence['outputs.GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityItemResult']):
381
+ """
382
+ :param Sequence['GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityItemArgs'] items: The supported resources.
383
+ """
384
+ pulumi.set(__self__, "items", items)
385
+
386
+ @property
387
+ @pulumi.getter
388
+ def items(self) -> Sequence['outputs.GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityItemResult']:
389
+ """
390
+ The supported resources.
391
+ """
392
+ return pulumi.get(self, "items")
393
+
394
+
395
+ @pulumi.output_type
396
+ class GetClusterPlacementGroupsClusterPlacementGroupCollectionItemCapabilityItemResult(dict):
397
+ def __init__(__self__, *,
398
+ name: str,
399
+ service: str):
400
+ """
401
+ :param str name: A filter to return only the resources that match the entire display name specified.
402
+ :param str service: The service that the resource is part of.
403
+ """
404
+ pulumi.set(__self__, "name", name)
405
+ pulumi.set(__self__, "service", service)
406
+
407
+ @property
408
+ @pulumi.getter
409
+ def name(self) -> str:
410
+ """
411
+ A filter to return only the resources that match the entire display name specified.
412
+ """
413
+ return pulumi.get(self, "name")
414
+
415
+ @property
416
+ @pulumi.getter
417
+ def service(self) -> str:
418
+ """
419
+ The service that the resource is part of.
420
+ """
421
+ return pulumi.get(self, "service")
422
+
423
+
424
+ @pulumi.output_type
425
+ class GetClusterPlacementGroupsClusterPlacementGroupCollectionItemPlacementInstructionResult(dict):
426
+ def __init__(__self__, *,
427
+ type: str,
428
+ value: str):
429
+ """
430
+ :param str type: The type of placement instruction.
431
+ :param str value: The value of the token designated for placement of the cluster placement group upon creation.
432
+ """
433
+ pulumi.set(__self__, "type", type)
434
+ pulumi.set(__self__, "value", value)
435
+
436
+ @property
437
+ @pulumi.getter
438
+ def type(self) -> str:
439
+ """
440
+ The type of placement instruction.
441
+ """
442
+ return pulumi.get(self, "type")
443
+
444
+ @property
445
+ @pulumi.getter
446
+ def value(self) -> str:
447
+ """
448
+ The value of the token designated for placement of the cluster placement group upon creation.
449
+ """
450
+ return pulumi.get(self, "value")
451
+
452
+
453
+ @pulumi.output_type
454
+ class GetClusterPlacementGroupsFilterResult(dict):
455
+ def __init__(__self__, *,
456
+ name: str,
457
+ values: Sequence[str],
458
+ regex: Optional[bool] = None):
459
+ """
460
+ :param str name: A filter to return only the resources that match the entire display name specified.
461
+ """
462
+ pulumi.set(__self__, "name", name)
463
+ pulumi.set(__self__, "values", values)
464
+ if regex is not None:
465
+ pulumi.set(__self__, "regex", regex)
466
+
467
+ @property
468
+ @pulumi.getter
469
+ def name(self) -> str:
470
+ """
471
+ A filter to return only the resources that match the entire display name specified.
472
+ """
473
+ return pulumi.get(self, "name")
474
+
475
+ @property
476
+ @pulumi.getter
477
+ def values(self) -> Sequence[str]:
478
+ return pulumi.get(self, "values")
479
+
480
+ @property
481
+ @pulumi.getter
482
+ def regex(self) -> Optional[bool]:
483
+ return pulumi.get(self, "regex")
484
+
485
+
@@ -11,8 +11,8 @@ from .. import _utilities
11
11
 
12
12
  auth: Optional[str]
13
13
  """
14
- (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken' and 'InstancePrincipal' and
15
- 'ResourcePrincipal'. By default, 'ApiKey' will be used.
14
+ (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
15
+ 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
16
16
  """
17
17
 
18
18
  configFileProfile: Optional[str]
pulumi_oci/config/vars.py CHANGED
@@ -18,8 +18,8 @@ class _ExportableConfig(types.ModuleType):
18
18
  @property
19
19
  def auth(self) -> Optional[str]:
20
20
  """
21
- (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken' and 'InstancePrincipal' and
22
- 'ResourcePrincipal'. By default, 'ApiKey' will be used.
21
+ (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
22
+ 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
23
23
  """
24
24
  return __config__.get('auth')
25
25