pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.28.0a1742538577__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 +7 -0
- pulumi_oci/core/_inputs.py +147 -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/outputs.py +582 -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/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-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/RECORD +84 -57
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.28.0a1742538577.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,309 @@
|
|
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 sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetComputeGpuMemoryFabricResult',
|
19
|
+
'AwaitableGetComputeGpuMemoryFabricResult',
|
20
|
+
'get_compute_gpu_memory_fabric',
|
21
|
+
'get_compute_gpu_memory_fabric_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetComputeGpuMemoryFabricResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getComputeGpuMemoryFabric.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, additional_data=None, compartment_id=None, compute_gpu_memory_fabric_id=None, compute_hpc_island_id=None, compute_local_block_id=None, compute_network_block_id=None, defined_tags=None, display_name=None, fabric_health=None, freeform_tags=None, healthy_host_count=None, id=None, state=None, system_tags=None, time_created=None, total_host_count=None):
|
30
|
+
if additional_data and not isinstance(additional_data, dict):
|
31
|
+
raise TypeError("Expected argument 'additional_data' to be a dict")
|
32
|
+
pulumi.set(__self__, "additional_data", additional_data)
|
33
|
+
if compartment_id and not isinstance(compartment_id, str):
|
34
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
|
+
if compute_gpu_memory_fabric_id and not isinstance(compute_gpu_memory_fabric_id, str):
|
37
|
+
raise TypeError("Expected argument 'compute_gpu_memory_fabric_id' to be a str")
|
38
|
+
pulumi.set(__self__, "compute_gpu_memory_fabric_id", compute_gpu_memory_fabric_id)
|
39
|
+
if compute_hpc_island_id and not isinstance(compute_hpc_island_id, str):
|
40
|
+
raise TypeError("Expected argument 'compute_hpc_island_id' to be a str")
|
41
|
+
pulumi.set(__self__, "compute_hpc_island_id", compute_hpc_island_id)
|
42
|
+
if compute_local_block_id and not isinstance(compute_local_block_id, str):
|
43
|
+
raise TypeError("Expected argument 'compute_local_block_id' to be a str")
|
44
|
+
pulumi.set(__self__, "compute_local_block_id", compute_local_block_id)
|
45
|
+
if compute_network_block_id and not isinstance(compute_network_block_id, str):
|
46
|
+
raise TypeError("Expected argument 'compute_network_block_id' to be a str")
|
47
|
+
pulumi.set(__self__, "compute_network_block_id", compute_network_block_id)
|
48
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
49
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
50
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
51
|
+
if display_name and not isinstance(display_name, str):
|
52
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
53
|
+
pulumi.set(__self__, "display_name", display_name)
|
54
|
+
if fabric_health and not isinstance(fabric_health, str):
|
55
|
+
raise TypeError("Expected argument 'fabric_health' to be a str")
|
56
|
+
pulumi.set(__self__, "fabric_health", fabric_health)
|
57
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
58
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
59
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
60
|
+
if healthy_host_count and not isinstance(healthy_host_count, str):
|
61
|
+
raise TypeError("Expected argument 'healthy_host_count' to be a str")
|
62
|
+
pulumi.set(__self__, "healthy_host_count", healthy_host_count)
|
63
|
+
if id and not isinstance(id, str):
|
64
|
+
raise TypeError("Expected argument 'id' to be a str")
|
65
|
+
pulumi.set(__self__, "id", id)
|
66
|
+
if state and not isinstance(state, str):
|
67
|
+
raise TypeError("Expected argument 'state' to be a str")
|
68
|
+
pulumi.set(__self__, "state", state)
|
69
|
+
if system_tags and not isinstance(system_tags, dict):
|
70
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
71
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
72
|
+
if time_created and not isinstance(time_created, str):
|
73
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
74
|
+
pulumi.set(__self__, "time_created", time_created)
|
75
|
+
if total_host_count and not isinstance(total_host_count, str):
|
76
|
+
raise TypeError("Expected argument 'total_host_count' to be a str")
|
77
|
+
pulumi.set(__self__, "total_host_count", total_host_count)
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="additionalData")
|
81
|
+
def additional_data(self) -> Mapping[str, str]:
|
82
|
+
"""
|
83
|
+
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "additional_data")
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="compartmentId")
|
89
|
+
def compartment_id(self) -> str:
|
90
|
+
"""
|
91
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "compartment_id")
|
94
|
+
|
95
|
+
@property
|
96
|
+
@pulumi.getter(name="computeGpuMemoryFabricId")
|
97
|
+
def compute_gpu_memory_fabric_id(self) -> str:
|
98
|
+
return pulumi.get(self, "compute_gpu_memory_fabric_id")
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter(name="computeHpcIslandId")
|
102
|
+
def compute_hpc_island_id(self) -> str:
|
103
|
+
"""
|
104
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "compute_hpc_island_id")
|
107
|
+
|
108
|
+
@property
|
109
|
+
@pulumi.getter(name="computeLocalBlockId")
|
110
|
+
def compute_local_block_id(self) -> str:
|
111
|
+
"""
|
112
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
113
|
+
"""
|
114
|
+
return pulumi.get(self, "compute_local_block_id")
|
115
|
+
|
116
|
+
@property
|
117
|
+
@pulumi.getter(name="computeNetworkBlockId")
|
118
|
+
def compute_network_block_id(self) -> str:
|
119
|
+
"""
|
120
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "compute_network_block_id")
|
123
|
+
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="definedTags")
|
126
|
+
def defined_tags(self) -> Mapping[str, str]:
|
127
|
+
"""
|
128
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "defined_tags")
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter(name="displayName")
|
134
|
+
def display_name(self) -> str:
|
135
|
+
"""
|
136
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "display_name")
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="fabricHealth")
|
142
|
+
def fabric_health(self) -> str:
|
143
|
+
"""
|
144
|
+
The health state of the GPU memory fabric
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "fabric_health")
|
147
|
+
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="freeformTags")
|
150
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
151
|
+
"""
|
152
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "freeform_tags")
|
155
|
+
|
156
|
+
@property
|
157
|
+
@pulumi.getter(name="healthyHostCount")
|
158
|
+
def healthy_host_count(self) -> str:
|
159
|
+
"""
|
160
|
+
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
|
161
|
+
"""
|
162
|
+
return pulumi.get(self, "healthy_host_count")
|
163
|
+
|
164
|
+
@property
|
165
|
+
@pulumi.getter
|
166
|
+
def id(self) -> str:
|
167
|
+
"""
|
168
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique GPU memory fabric
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "id")
|
171
|
+
|
172
|
+
@property
|
173
|
+
@pulumi.getter
|
174
|
+
def state(self) -> str:
|
175
|
+
"""
|
176
|
+
The lifecycle state of the GPU memory fabric
|
177
|
+
"""
|
178
|
+
return pulumi.get(self, "state")
|
179
|
+
|
180
|
+
@property
|
181
|
+
@pulumi.getter(name="systemTags")
|
182
|
+
def system_tags(self) -> Mapping[str, str]:
|
183
|
+
"""
|
184
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
185
|
+
"""
|
186
|
+
return pulumi.get(self, "system_tags")
|
187
|
+
|
188
|
+
@property
|
189
|
+
@pulumi.getter(name="timeCreated")
|
190
|
+
def time_created(self) -> str:
|
191
|
+
"""
|
192
|
+
The date and time that the compute GPU memory fabric record was created, in the format defined by [RFC3339] (https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
193
|
+
"""
|
194
|
+
return pulumi.get(self, "time_created")
|
195
|
+
|
196
|
+
@property
|
197
|
+
@pulumi.getter(name="totalHostCount")
|
198
|
+
def total_host_count(self) -> str:
|
199
|
+
"""
|
200
|
+
The total number of bare metal hosts located in this compute GPU memory fabric.
|
201
|
+
"""
|
202
|
+
return pulumi.get(self, "total_host_count")
|
203
|
+
|
204
|
+
|
205
|
+
class AwaitableGetComputeGpuMemoryFabricResult(GetComputeGpuMemoryFabricResult):
|
206
|
+
# pylint: disable=using-constant-test
|
207
|
+
def __await__(self):
|
208
|
+
if False:
|
209
|
+
yield self
|
210
|
+
return GetComputeGpuMemoryFabricResult(
|
211
|
+
additional_data=self.additional_data,
|
212
|
+
compartment_id=self.compartment_id,
|
213
|
+
compute_gpu_memory_fabric_id=self.compute_gpu_memory_fabric_id,
|
214
|
+
compute_hpc_island_id=self.compute_hpc_island_id,
|
215
|
+
compute_local_block_id=self.compute_local_block_id,
|
216
|
+
compute_network_block_id=self.compute_network_block_id,
|
217
|
+
defined_tags=self.defined_tags,
|
218
|
+
display_name=self.display_name,
|
219
|
+
fabric_health=self.fabric_health,
|
220
|
+
freeform_tags=self.freeform_tags,
|
221
|
+
healthy_host_count=self.healthy_host_count,
|
222
|
+
id=self.id,
|
223
|
+
state=self.state,
|
224
|
+
system_tags=self.system_tags,
|
225
|
+
time_created=self.time_created,
|
226
|
+
total_host_count=self.total_host_count)
|
227
|
+
|
228
|
+
|
229
|
+
def get_compute_gpu_memory_fabric(compute_gpu_memory_fabric_id: Optional[str] = None,
|
230
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetComputeGpuMemoryFabricResult:
|
231
|
+
"""
|
232
|
+
This data source provides details about a specific Compute Gpu Memory Fabric resource in Oracle Cloud Infrastructure Core service.
|
233
|
+
|
234
|
+
Gets information about the specified compute GPU memory fabric
|
235
|
+
|
236
|
+
## Example Usage
|
237
|
+
|
238
|
+
```python
|
239
|
+
import pulumi
|
240
|
+
import pulumi_oci as oci
|
241
|
+
|
242
|
+
test_compute_gpu_memory_fabric = oci.Core.get_compute_gpu_memory_fabric(compute_gpu_memory_fabric_id=test_compute_gpu_memory_fabric_oci_core_compute_gpu_memory_fabric["id"])
|
243
|
+
```
|
244
|
+
|
245
|
+
|
246
|
+
:param str compute_gpu_memory_fabric_id: The OCID of the compute GPU memory fabric.
|
247
|
+
"""
|
248
|
+
__args__ = dict()
|
249
|
+
__args__['computeGpuMemoryFabricId'] = compute_gpu_memory_fabric_id
|
250
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
251
|
+
__ret__ = pulumi.runtime.invoke('oci:Core/getComputeGpuMemoryFabric:getComputeGpuMemoryFabric', __args__, opts=opts, typ=GetComputeGpuMemoryFabricResult).value
|
252
|
+
|
253
|
+
return AwaitableGetComputeGpuMemoryFabricResult(
|
254
|
+
additional_data=pulumi.get(__ret__, 'additional_data'),
|
255
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
256
|
+
compute_gpu_memory_fabric_id=pulumi.get(__ret__, 'compute_gpu_memory_fabric_id'),
|
257
|
+
compute_hpc_island_id=pulumi.get(__ret__, 'compute_hpc_island_id'),
|
258
|
+
compute_local_block_id=pulumi.get(__ret__, 'compute_local_block_id'),
|
259
|
+
compute_network_block_id=pulumi.get(__ret__, 'compute_network_block_id'),
|
260
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
261
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
262
|
+
fabric_health=pulumi.get(__ret__, 'fabric_health'),
|
263
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
264
|
+
healthy_host_count=pulumi.get(__ret__, 'healthy_host_count'),
|
265
|
+
id=pulumi.get(__ret__, 'id'),
|
266
|
+
state=pulumi.get(__ret__, 'state'),
|
267
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
268
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
269
|
+
total_host_count=pulumi.get(__ret__, 'total_host_count'))
|
270
|
+
def get_compute_gpu_memory_fabric_output(compute_gpu_memory_fabric_id: Optional[pulumi.Input[str]] = None,
|
271
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetComputeGpuMemoryFabricResult]:
|
272
|
+
"""
|
273
|
+
This data source provides details about a specific Compute Gpu Memory Fabric resource in Oracle Cloud Infrastructure Core service.
|
274
|
+
|
275
|
+
Gets information about the specified compute GPU memory fabric
|
276
|
+
|
277
|
+
## Example Usage
|
278
|
+
|
279
|
+
```python
|
280
|
+
import pulumi
|
281
|
+
import pulumi_oci as oci
|
282
|
+
|
283
|
+
test_compute_gpu_memory_fabric = oci.Core.get_compute_gpu_memory_fabric(compute_gpu_memory_fabric_id=test_compute_gpu_memory_fabric_oci_core_compute_gpu_memory_fabric["id"])
|
284
|
+
```
|
285
|
+
|
286
|
+
|
287
|
+
:param str compute_gpu_memory_fabric_id: The OCID of the compute GPU memory fabric.
|
288
|
+
"""
|
289
|
+
__args__ = dict()
|
290
|
+
__args__['computeGpuMemoryFabricId'] = compute_gpu_memory_fabric_id
|
291
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
292
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Core/getComputeGpuMemoryFabric:getComputeGpuMemoryFabric', __args__, opts=opts, typ=GetComputeGpuMemoryFabricResult)
|
293
|
+
return __ret__.apply(lambda __response__: GetComputeGpuMemoryFabricResult(
|
294
|
+
additional_data=pulumi.get(__response__, 'additional_data'),
|
295
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
296
|
+
compute_gpu_memory_fabric_id=pulumi.get(__response__, 'compute_gpu_memory_fabric_id'),
|
297
|
+
compute_hpc_island_id=pulumi.get(__response__, 'compute_hpc_island_id'),
|
298
|
+
compute_local_block_id=pulumi.get(__response__, 'compute_local_block_id'),
|
299
|
+
compute_network_block_id=pulumi.get(__response__, 'compute_network_block_id'),
|
300
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
301
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
302
|
+
fabric_health=pulumi.get(__response__, 'fabric_health'),
|
303
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
304
|
+
healthy_host_count=pulumi.get(__response__, 'healthy_host_count'),
|
305
|
+
id=pulumi.get(__response__, 'id'),
|
306
|
+
state=pulumi.get(__response__, 'state'),
|
307
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
308
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
309
|
+
total_host_count=pulumi.get(__response__, 'total_host_count')))
|
@@ -0,0 +1,289 @@
|
|
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 sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetComputeGpuMemoryFabricsResult',
|
21
|
+
'AwaitableGetComputeGpuMemoryFabricsResult',
|
22
|
+
'get_compute_gpu_memory_fabrics',
|
23
|
+
'get_compute_gpu_memory_fabrics_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetComputeGpuMemoryFabricsResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getComputeGpuMemoryFabrics.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, compute_gpu_memory_fabric_collections=None, compute_gpu_memory_fabric_health=None, compute_gpu_memory_fabric_id=None, compute_gpu_memory_fabric_lifecycle_state=None, compute_hpc_island_id=None, compute_network_block_id=None, display_name=None, filters=None, id=None):
|
32
|
+
if availability_domain and not isinstance(availability_domain, str):
|
33
|
+
raise TypeError("Expected argument 'availability_domain' to be a str")
|
34
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
35
|
+
if compartment_id and not isinstance(compartment_id, str):
|
36
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
37
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
38
|
+
if compute_gpu_memory_fabric_collections and not isinstance(compute_gpu_memory_fabric_collections, list):
|
39
|
+
raise TypeError("Expected argument 'compute_gpu_memory_fabric_collections' to be a list")
|
40
|
+
pulumi.set(__self__, "compute_gpu_memory_fabric_collections", compute_gpu_memory_fabric_collections)
|
41
|
+
if compute_gpu_memory_fabric_health and not isinstance(compute_gpu_memory_fabric_health, str):
|
42
|
+
raise TypeError("Expected argument 'compute_gpu_memory_fabric_health' to be a str")
|
43
|
+
pulumi.set(__self__, "compute_gpu_memory_fabric_health", compute_gpu_memory_fabric_health)
|
44
|
+
if compute_gpu_memory_fabric_id and not isinstance(compute_gpu_memory_fabric_id, str):
|
45
|
+
raise TypeError("Expected argument 'compute_gpu_memory_fabric_id' to be a str")
|
46
|
+
pulumi.set(__self__, "compute_gpu_memory_fabric_id", compute_gpu_memory_fabric_id)
|
47
|
+
if compute_gpu_memory_fabric_lifecycle_state and not isinstance(compute_gpu_memory_fabric_lifecycle_state, str):
|
48
|
+
raise TypeError("Expected argument 'compute_gpu_memory_fabric_lifecycle_state' to be a str")
|
49
|
+
pulumi.set(__self__, "compute_gpu_memory_fabric_lifecycle_state", compute_gpu_memory_fabric_lifecycle_state)
|
50
|
+
if compute_hpc_island_id and not isinstance(compute_hpc_island_id, str):
|
51
|
+
raise TypeError("Expected argument 'compute_hpc_island_id' to be a str")
|
52
|
+
pulumi.set(__self__, "compute_hpc_island_id", compute_hpc_island_id)
|
53
|
+
if compute_network_block_id and not isinstance(compute_network_block_id, str):
|
54
|
+
raise TypeError("Expected argument 'compute_network_block_id' to be a str")
|
55
|
+
pulumi.set(__self__, "compute_network_block_id", compute_network_block_id)
|
56
|
+
if display_name and not isinstance(display_name, str):
|
57
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
58
|
+
pulumi.set(__self__, "display_name", display_name)
|
59
|
+
if filters and not isinstance(filters, list):
|
60
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
61
|
+
pulumi.set(__self__, "filters", filters)
|
62
|
+
if id and not isinstance(id, str):
|
63
|
+
raise TypeError("Expected argument 'id' to be a str")
|
64
|
+
pulumi.set(__self__, "id", id)
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="availabilityDomain")
|
68
|
+
def availability_domain(self) -> Optional[str]:
|
69
|
+
return pulumi.get(self, "availability_domain")
|
70
|
+
|
71
|
+
@property
|
72
|
+
@pulumi.getter(name="compartmentId")
|
73
|
+
def compartment_id(self) -> str:
|
74
|
+
"""
|
75
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
76
|
+
"""
|
77
|
+
return pulumi.get(self, "compartment_id")
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="computeGpuMemoryFabricCollections")
|
81
|
+
def compute_gpu_memory_fabric_collections(self) -> Sequence['outputs.GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollectionResult']:
|
82
|
+
"""
|
83
|
+
The list of compute_gpu_memory_fabric_collection.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "compute_gpu_memory_fabric_collections")
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="computeGpuMemoryFabricHealth")
|
89
|
+
def compute_gpu_memory_fabric_health(self) -> Optional[str]:
|
90
|
+
return pulumi.get(self, "compute_gpu_memory_fabric_health")
|
91
|
+
|
92
|
+
@property
|
93
|
+
@pulumi.getter(name="computeGpuMemoryFabricId")
|
94
|
+
def compute_gpu_memory_fabric_id(self) -> Optional[str]:
|
95
|
+
return pulumi.get(self, "compute_gpu_memory_fabric_id")
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="computeGpuMemoryFabricLifecycleState")
|
99
|
+
def compute_gpu_memory_fabric_lifecycle_state(self) -> Optional[str]:
|
100
|
+
return pulumi.get(self, "compute_gpu_memory_fabric_lifecycle_state")
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="computeHpcIslandId")
|
104
|
+
def compute_hpc_island_id(self) -> Optional[str]:
|
105
|
+
"""
|
106
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "compute_hpc_island_id")
|
109
|
+
|
110
|
+
@property
|
111
|
+
@pulumi.getter(name="computeNetworkBlockId")
|
112
|
+
def compute_network_block_id(self) -> Optional[str]:
|
113
|
+
"""
|
114
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
|
115
|
+
"""
|
116
|
+
return pulumi.get(self, "compute_network_block_id")
|
117
|
+
|
118
|
+
@property
|
119
|
+
@pulumi.getter(name="displayName")
|
120
|
+
def display_name(self) -> Optional[str]:
|
121
|
+
"""
|
122
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "display_name")
|
125
|
+
|
126
|
+
@property
|
127
|
+
@pulumi.getter
|
128
|
+
def filters(self) -> Optional[Sequence['outputs.GetComputeGpuMemoryFabricsFilterResult']]:
|
129
|
+
return pulumi.get(self, "filters")
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter
|
133
|
+
def id(self) -> str:
|
134
|
+
"""
|
135
|
+
The provider-assigned unique ID for this managed resource.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "id")
|
138
|
+
|
139
|
+
|
140
|
+
class AwaitableGetComputeGpuMemoryFabricsResult(GetComputeGpuMemoryFabricsResult):
|
141
|
+
# pylint: disable=using-constant-test
|
142
|
+
def __await__(self):
|
143
|
+
if False:
|
144
|
+
yield self
|
145
|
+
return GetComputeGpuMemoryFabricsResult(
|
146
|
+
availability_domain=self.availability_domain,
|
147
|
+
compartment_id=self.compartment_id,
|
148
|
+
compute_gpu_memory_fabric_collections=self.compute_gpu_memory_fabric_collections,
|
149
|
+
compute_gpu_memory_fabric_health=self.compute_gpu_memory_fabric_health,
|
150
|
+
compute_gpu_memory_fabric_id=self.compute_gpu_memory_fabric_id,
|
151
|
+
compute_gpu_memory_fabric_lifecycle_state=self.compute_gpu_memory_fabric_lifecycle_state,
|
152
|
+
compute_hpc_island_id=self.compute_hpc_island_id,
|
153
|
+
compute_network_block_id=self.compute_network_block_id,
|
154
|
+
display_name=self.display_name,
|
155
|
+
filters=self.filters,
|
156
|
+
id=self.id)
|
157
|
+
|
158
|
+
|
159
|
+
def get_compute_gpu_memory_fabrics(availability_domain: Optional[str] = None,
|
160
|
+
compartment_id: Optional[str] = None,
|
161
|
+
compute_gpu_memory_fabric_health: Optional[str] = None,
|
162
|
+
compute_gpu_memory_fabric_id: Optional[str] = None,
|
163
|
+
compute_gpu_memory_fabric_lifecycle_state: Optional[str] = None,
|
164
|
+
compute_hpc_island_id: Optional[str] = None,
|
165
|
+
compute_network_block_id: Optional[str] = None,
|
166
|
+
display_name: Optional[str] = None,
|
167
|
+
filters: Optional[Sequence[Union['GetComputeGpuMemoryFabricsFilterArgs', 'GetComputeGpuMemoryFabricsFilterArgsDict']]] = None,
|
168
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetComputeGpuMemoryFabricsResult:
|
169
|
+
"""
|
170
|
+
This data source provides the list of Compute Gpu Memory Fabrics in Oracle Cloud Infrastructure Core service.
|
171
|
+
|
172
|
+
Lists the compute GPU memory fabrics that match the specified criteria and compartmentId.
|
173
|
+
|
174
|
+
## Example Usage
|
175
|
+
|
176
|
+
```python
|
177
|
+
import pulumi
|
178
|
+
import pulumi_oci as oci
|
179
|
+
|
180
|
+
test_compute_gpu_memory_fabrics = oci.Core.get_compute_gpu_memory_fabrics(compartment_id=compartment_id,
|
181
|
+
availability_domain=compute_gpu_memory_fabric_availability_domain,
|
182
|
+
compute_gpu_memory_fabric_health=compute_gpu_memory_fabric_compute_gpu_memory_fabric_health,
|
183
|
+
compute_gpu_memory_fabric_id=test_compute_gpu_memory_fabric["id"],
|
184
|
+
compute_gpu_memory_fabric_lifecycle_state=compute_gpu_memory_fabric_compute_gpu_memory_fabric_lifecycle_state,
|
185
|
+
compute_hpc_island_id=test_compute_hpc_island["id"],
|
186
|
+
compute_network_block_id=test_compute_network_block["id"],
|
187
|
+
display_name=compute_gpu_memory_fabric_display_name)
|
188
|
+
```
|
189
|
+
|
190
|
+
|
191
|
+
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
192
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
193
|
+
:param str compute_gpu_memory_fabric_health: A filter to return ComputeGpuMemoryFabricSummary resources that match the given fabric health.
|
194
|
+
:param str compute_gpu_memory_fabric_id: A filter to return only the listings that matches the given GPU memory fabric id.
|
195
|
+
:param str compute_gpu_memory_fabric_lifecycle_state: A filter to return ComputeGpuMemoryFabricSummary resources that match the given lifecycle state.
|
196
|
+
:param str compute_hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute HPC island.
|
197
|
+
:param str compute_network_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute network block.
|
198
|
+
:param str display_name: A filter to return only resources that match the given display name exactly.
|
199
|
+
"""
|
200
|
+
__args__ = dict()
|
201
|
+
__args__['availabilityDomain'] = availability_domain
|
202
|
+
__args__['compartmentId'] = compartment_id
|
203
|
+
__args__['computeGpuMemoryFabricHealth'] = compute_gpu_memory_fabric_health
|
204
|
+
__args__['computeGpuMemoryFabricId'] = compute_gpu_memory_fabric_id
|
205
|
+
__args__['computeGpuMemoryFabricLifecycleState'] = compute_gpu_memory_fabric_lifecycle_state
|
206
|
+
__args__['computeHpcIslandId'] = compute_hpc_island_id
|
207
|
+
__args__['computeNetworkBlockId'] = compute_network_block_id
|
208
|
+
__args__['displayName'] = display_name
|
209
|
+
__args__['filters'] = filters
|
210
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
211
|
+
__ret__ = pulumi.runtime.invoke('oci:Core/getComputeGpuMemoryFabrics:getComputeGpuMemoryFabrics', __args__, opts=opts, typ=GetComputeGpuMemoryFabricsResult).value
|
212
|
+
|
213
|
+
return AwaitableGetComputeGpuMemoryFabricsResult(
|
214
|
+
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
215
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
216
|
+
compute_gpu_memory_fabric_collections=pulumi.get(__ret__, 'compute_gpu_memory_fabric_collections'),
|
217
|
+
compute_gpu_memory_fabric_health=pulumi.get(__ret__, 'compute_gpu_memory_fabric_health'),
|
218
|
+
compute_gpu_memory_fabric_id=pulumi.get(__ret__, 'compute_gpu_memory_fabric_id'),
|
219
|
+
compute_gpu_memory_fabric_lifecycle_state=pulumi.get(__ret__, 'compute_gpu_memory_fabric_lifecycle_state'),
|
220
|
+
compute_hpc_island_id=pulumi.get(__ret__, 'compute_hpc_island_id'),
|
221
|
+
compute_network_block_id=pulumi.get(__ret__, 'compute_network_block_id'),
|
222
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
223
|
+
filters=pulumi.get(__ret__, 'filters'),
|
224
|
+
id=pulumi.get(__ret__, 'id'))
|
225
|
+
def get_compute_gpu_memory_fabrics_output(availability_domain: Optional[pulumi.Input[Optional[str]]] = None,
|
226
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
227
|
+
compute_gpu_memory_fabric_health: Optional[pulumi.Input[Optional[str]]] = None,
|
228
|
+
compute_gpu_memory_fabric_id: Optional[pulumi.Input[Optional[str]]] = None,
|
229
|
+
compute_gpu_memory_fabric_lifecycle_state: Optional[pulumi.Input[Optional[str]]] = None,
|
230
|
+
compute_hpc_island_id: Optional[pulumi.Input[Optional[str]]] = None,
|
231
|
+
compute_network_block_id: Optional[pulumi.Input[Optional[str]]] = None,
|
232
|
+
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
233
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetComputeGpuMemoryFabricsFilterArgs', 'GetComputeGpuMemoryFabricsFilterArgsDict']]]]] = None,
|
234
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetComputeGpuMemoryFabricsResult]:
|
235
|
+
"""
|
236
|
+
This data source provides the list of Compute Gpu Memory Fabrics in Oracle Cloud Infrastructure Core service.
|
237
|
+
|
238
|
+
Lists the compute GPU memory fabrics that match the specified criteria and compartmentId.
|
239
|
+
|
240
|
+
## Example Usage
|
241
|
+
|
242
|
+
```python
|
243
|
+
import pulumi
|
244
|
+
import pulumi_oci as oci
|
245
|
+
|
246
|
+
test_compute_gpu_memory_fabrics = oci.Core.get_compute_gpu_memory_fabrics(compartment_id=compartment_id,
|
247
|
+
availability_domain=compute_gpu_memory_fabric_availability_domain,
|
248
|
+
compute_gpu_memory_fabric_health=compute_gpu_memory_fabric_compute_gpu_memory_fabric_health,
|
249
|
+
compute_gpu_memory_fabric_id=test_compute_gpu_memory_fabric["id"],
|
250
|
+
compute_gpu_memory_fabric_lifecycle_state=compute_gpu_memory_fabric_compute_gpu_memory_fabric_lifecycle_state,
|
251
|
+
compute_hpc_island_id=test_compute_hpc_island["id"],
|
252
|
+
compute_network_block_id=test_compute_network_block["id"],
|
253
|
+
display_name=compute_gpu_memory_fabric_display_name)
|
254
|
+
```
|
255
|
+
|
256
|
+
|
257
|
+
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
258
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
259
|
+
:param str compute_gpu_memory_fabric_health: A filter to return ComputeGpuMemoryFabricSummary resources that match the given fabric health.
|
260
|
+
:param str compute_gpu_memory_fabric_id: A filter to return only the listings that matches the given GPU memory fabric id.
|
261
|
+
:param str compute_gpu_memory_fabric_lifecycle_state: A filter to return ComputeGpuMemoryFabricSummary resources that match the given lifecycle state.
|
262
|
+
:param str compute_hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute HPC island.
|
263
|
+
:param str compute_network_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute network block.
|
264
|
+
:param str display_name: A filter to return only resources that match the given display name exactly.
|
265
|
+
"""
|
266
|
+
__args__ = dict()
|
267
|
+
__args__['availabilityDomain'] = availability_domain
|
268
|
+
__args__['compartmentId'] = compartment_id
|
269
|
+
__args__['computeGpuMemoryFabricHealth'] = compute_gpu_memory_fabric_health
|
270
|
+
__args__['computeGpuMemoryFabricId'] = compute_gpu_memory_fabric_id
|
271
|
+
__args__['computeGpuMemoryFabricLifecycleState'] = compute_gpu_memory_fabric_lifecycle_state
|
272
|
+
__args__['computeHpcIslandId'] = compute_hpc_island_id
|
273
|
+
__args__['computeNetworkBlockId'] = compute_network_block_id
|
274
|
+
__args__['displayName'] = display_name
|
275
|
+
__args__['filters'] = filters
|
276
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
277
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Core/getComputeGpuMemoryFabrics:getComputeGpuMemoryFabrics', __args__, opts=opts, typ=GetComputeGpuMemoryFabricsResult)
|
278
|
+
return __ret__.apply(lambda __response__: GetComputeGpuMemoryFabricsResult(
|
279
|
+
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
280
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
281
|
+
compute_gpu_memory_fabric_collections=pulumi.get(__response__, 'compute_gpu_memory_fabric_collections'),
|
282
|
+
compute_gpu_memory_fabric_health=pulumi.get(__response__, 'compute_gpu_memory_fabric_health'),
|
283
|
+
compute_gpu_memory_fabric_id=pulumi.get(__response__, 'compute_gpu_memory_fabric_id'),
|
284
|
+
compute_gpu_memory_fabric_lifecycle_state=pulumi.get(__response__, 'compute_gpu_memory_fabric_lifecycle_state'),
|
285
|
+
compute_hpc_island_id=pulumi.get(__response__, 'compute_hpc_island_id'),
|
286
|
+
compute_network_block_id=pulumi.get(__response__, 'compute_network_block_id'),
|
287
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
288
|
+
filters=pulumi.get(__response__, 'filters'),
|
289
|
+
id=pulumi.get(__response__, 'id')))
|