pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.33.0a1714072500__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 +11 -0
- pulumi_oci/clusterplacementgroups/__init__.py +12 -0
- pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
- pulumi_oci/clusterplacementgroups/outputs.py +485 -0
- pulumi_oci/core/_inputs.py +116 -28
- pulumi_oci/core/boot_volume.py +49 -0
- pulumi_oci/core/compute_capacity_reservation.py +2 -0
- pulumi_oci/core/compute_cluster.py +2 -4
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +14 -1
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +14 -1
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +14 -1
- pulumi_oci/core/get_volumes.py +21 -1
- pulumi_oci/core/instance.py +51 -4
- pulumi_oci/core/instance_configuration.py +8 -0
- pulumi_oci/core/outputs.py +302 -45
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/core/volume_attachment.py +28 -0
- pulumi_oci/core/volume_group.py +49 -0
- pulumi_oci/databasemigration/_inputs.py +20 -0
- pulumi_oci/databasemigration/connection.py +13 -0
- pulumi_oci/databasemigration/get_connection.py +3 -0
- pulumi_oci/databasemigration/get_migration.py +3 -0
- pulumi_oci/databasemigration/migration.py +13 -0
- pulumi_oci/databasemigration/outputs.py +68 -0
- pulumi_oci/networkloadbalancer/backend_set.py +49 -0
- pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/RECORD +39 -33
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.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
|
+
|