pulumi-gcp 8.7.0a1730183903__py3-none-any.whl → 8.7.0a1730196225__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_gcp/__init__.py +70 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeters.py +2 -0
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +108 -0
- pulumi_gcp/apigee/app_group.py +811 -0
- pulumi_gcp/apigee/developer.py +757 -0
- pulumi_gcp/apigee/outputs.py +64 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +40 -0
- pulumi_gcp/bigquery/connection.py +12 -12
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/service.py +92 -0
- pulumi_gcp/compute/_inputs.py +214 -116
- pulumi_gcp/compute/backend_service.py +76 -0
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_instance.py +29 -1
- pulumi_gcp/compute/get_instance_template.py +29 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +0 -18
- pulumi_gcp/compute/get_region_instance_template.py +29 -1
- pulumi_gcp/compute/instance.py +89 -0
- pulumi_gcp/compute/instance_from_machine_image.py +82 -0
- pulumi_gcp/compute/instance_from_template.py +82 -0
- pulumi_gcp/compute/instance_template.py +75 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +76 -50
- pulumi_gcp/compute/network_firewall_policy_rule.py +149 -103
- pulumi_gcp/compute/outputs.py +170 -80
- pulumi_gcp/compute/region_backend_service.py +94 -0
- pulumi_gcp/compute/region_instance_template.py +75 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +6 -4
- pulumi_gcp/compute/region_network_firewall_policy_association.py +104 -54
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +160 -107
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/attached_cluster.py +9 -6
- pulumi_gcp/container/outputs.py +2 -2
- pulumi_gcp/datastream/stream.py +2 -2
- pulumi_gcp/diagflow/_inputs.py +472 -2
- pulumi_gcp/diagflow/cx_agent.py +64 -4
- pulumi_gcp/diagflow/cx_flow.py +30 -0
- pulumi_gcp/diagflow/outputs.py +378 -2
- pulumi_gcp/gkehub/feature.py +2 -4
- pulumi_gcp/iam/workload_identity_pool_provider.py +56 -0
- pulumi_gcp/looker/instance.py +104 -2
- pulumi_gcp/monitoring/_inputs.py +23 -0
- pulumi_gcp/monitoring/get_secret_version.py +22 -3
- pulumi_gcp/monitoring/outputs.py +16 -0
- pulumi_gcp/networkconnectivity/__init__.py +1 -0
- pulumi_gcp/networkconnectivity/_inputs.py +148 -0
- pulumi_gcp/networkconnectivity/group.py +764 -0
- pulumi_gcp/networkconnectivity/outputs.py +125 -0
- pulumi_gcp/networkconnectivity/spoke.py +144 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +2 -2
- pulumi_gcp/oracledatabase/__init__.py +20 -0
- pulumi_gcp/oracledatabase/_inputs.py +4745 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +983 -0
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +842 -0
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +1086 -0
- pulumi_gcp/oracledatabase/get_autonomous_database.py +290 -0
- pulumi_gcp/oracledatabase/get_autonomous_databases.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +257 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructures.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +290 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_clusters.py +150 -0
- pulumi_gcp/oracledatabase/get_db_nodes.py +245 -0
- pulumi_gcp/oracledatabase/get_db_servers.py +245 -0
- pulumi_gcp/oracledatabase/outputs.py +9304 -0
- pulumi_gcp/organizations/folder.py +7 -7
- pulumi_gcp/organizations/project.py +7 -7
- pulumi_gcp/orgpolicy/_inputs.py +3 -3
- pulumi_gcp/orgpolicy/outputs.py +2 -2
- pulumi_gcp/privilegedaccessmanager/get_entitlement.py +46 -2
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/secretmanager/get_regional_secret_version.py +24 -5
- pulumi_gcp/secretmanager/get_regional_secret_version_access.py +24 -5
- pulumi_gcp/secretmanager/get_secret_version.py +22 -3
- pulumi_gcp/secretmanager/get_secret_version_access.py +22 -3
- pulumi_gcp/secretmanager/regional_secret.py +2 -2
- pulumi_gcp/siteverification/get_token.py +0 -16
- pulumi_gcp/siteverification/owner.py +0 -16
- pulumi_gcp/spanner/_inputs.py +29 -5
- pulumi_gcp/spanner/outputs.py +20 -3
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/sql/user.py +28 -21
- pulumi_gcp/storage/_inputs.py +36 -0
- pulumi_gcp/storage/bucket.py +47 -0
- pulumi_gcp/storage/get_bucket.py +12 -1
- pulumi_gcp/storage/outputs.py +40 -0
- pulumi_gcp/transcoder/__init__.py +11 -0
- pulumi_gcp/transcoder/_inputs.py +3991 -0
- pulumi_gcp/transcoder/job.py +2134 -0
- pulumi_gcp/transcoder/job_template.py +1524 -0
- pulumi_gcp/transcoder/outputs.py +2918 -0
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +2 -2
- pulumi_gcp/vmwareengine/_inputs.py +440 -0
- pulumi_gcp/vmwareengine/cluster.py +100 -2
- pulumi_gcp/vmwareengine/get_cluster.py +12 -1
- pulumi_gcp/vmwareengine/outputs.py +615 -0
- pulumi_gcp/workstations/_inputs.py +54 -0
- pulumi_gcp/workstations/outputs.py +32 -0
- pulumi_gcp/workstations/workstation_config.py +205 -0
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/RECORD +111 -89
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,842 @@
|
|
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__ = ['CloudExadataInfrastructureArgs', 'CloudExadataInfrastructure']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class CloudExadataInfrastructureArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
cloud_exadata_infrastructure_id: pulumi.Input[str],
|
25
|
+
location: pulumi.Input[str],
|
26
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
27
|
+
gcp_oracle_zone: Optional[pulumi.Input[str]] = None,
|
28
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
29
|
+
project: Optional[pulumi.Input[str]] = None,
|
30
|
+
properties: Optional[pulumi.Input['CloudExadataInfrastructurePropertiesArgs']] = None):
|
31
|
+
"""
|
32
|
+
The set of arguments for constructing a CloudExadataInfrastructure resource.
|
33
|
+
:param pulumi.Input[str] cloud_exadata_infrastructure_id: The ID of the Exadata Infrastructure to create. This value is restricted
|
34
|
+
to (^a-z?$) and must be a maximum of 63
|
35
|
+
characters in length. The value must start with a letter and end with
|
36
|
+
a letter or a number.
|
37
|
+
|
38
|
+
|
39
|
+
- - -
|
40
|
+
:param pulumi.Input[str] location: Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/DbServer`.
|
41
|
+
:param pulumi.Input[str] display_name: User friendly name for this resource.
|
42
|
+
:param pulumi.Input[str] gcp_oracle_zone: GCP location where Oracle Exadata is hosted.
|
43
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels or tags associated with the resource.
|
44
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
45
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
46
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
47
|
+
If it is not provided, the provider project is used.
|
48
|
+
:param pulumi.Input['CloudExadataInfrastructurePropertiesArgs'] properties: Various properties of Exadata Infrastructure.
|
49
|
+
Structure is documented below.
|
50
|
+
"""
|
51
|
+
pulumi.set(__self__, "cloud_exadata_infrastructure_id", cloud_exadata_infrastructure_id)
|
52
|
+
pulumi.set(__self__, "location", location)
|
53
|
+
if display_name is not None:
|
54
|
+
pulumi.set(__self__, "display_name", display_name)
|
55
|
+
if gcp_oracle_zone is not None:
|
56
|
+
pulumi.set(__self__, "gcp_oracle_zone", gcp_oracle_zone)
|
57
|
+
if labels is not None:
|
58
|
+
pulumi.set(__self__, "labels", labels)
|
59
|
+
if project is not None:
|
60
|
+
pulumi.set(__self__, "project", project)
|
61
|
+
if properties is not None:
|
62
|
+
pulumi.set(__self__, "properties", properties)
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter(name="cloudExadataInfrastructureId")
|
66
|
+
def cloud_exadata_infrastructure_id(self) -> pulumi.Input[str]:
|
67
|
+
"""
|
68
|
+
The ID of the Exadata Infrastructure to create. This value is restricted
|
69
|
+
to (^a-z?$) and must be a maximum of 63
|
70
|
+
characters in length. The value must start with a letter and end with
|
71
|
+
a letter or a number.
|
72
|
+
|
73
|
+
|
74
|
+
- - -
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "cloud_exadata_infrastructure_id")
|
77
|
+
|
78
|
+
@cloud_exadata_infrastructure_id.setter
|
79
|
+
def cloud_exadata_infrastructure_id(self, value: pulumi.Input[str]):
|
80
|
+
pulumi.set(self, "cloud_exadata_infrastructure_id", value)
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter
|
84
|
+
def location(self) -> pulumi.Input[str]:
|
85
|
+
"""
|
86
|
+
Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/DbServer`.
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "location")
|
89
|
+
|
90
|
+
@location.setter
|
91
|
+
def location(self, value: pulumi.Input[str]):
|
92
|
+
pulumi.set(self, "location", value)
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter(name="displayName")
|
96
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
97
|
+
"""
|
98
|
+
User friendly name for this resource.
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "display_name")
|
101
|
+
|
102
|
+
@display_name.setter
|
103
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
104
|
+
pulumi.set(self, "display_name", value)
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="gcpOracleZone")
|
108
|
+
def gcp_oracle_zone(self) -> Optional[pulumi.Input[str]]:
|
109
|
+
"""
|
110
|
+
GCP location where Oracle Exadata is hosted.
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "gcp_oracle_zone")
|
113
|
+
|
114
|
+
@gcp_oracle_zone.setter
|
115
|
+
def gcp_oracle_zone(self, value: Optional[pulumi.Input[str]]):
|
116
|
+
pulumi.set(self, "gcp_oracle_zone", value)
|
117
|
+
|
118
|
+
@property
|
119
|
+
@pulumi.getter
|
120
|
+
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
121
|
+
"""
|
122
|
+
Labels or tags associated with the resource.
|
123
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
124
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
125
|
+
"""
|
126
|
+
return pulumi.get(self, "labels")
|
127
|
+
|
128
|
+
@labels.setter
|
129
|
+
def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
130
|
+
pulumi.set(self, "labels", value)
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter
|
134
|
+
def project(self) -> Optional[pulumi.Input[str]]:
|
135
|
+
"""
|
136
|
+
The ID of the project in which the resource belongs.
|
137
|
+
If it is not provided, the provider project is used.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "project")
|
140
|
+
|
141
|
+
@project.setter
|
142
|
+
def project(self, value: Optional[pulumi.Input[str]]):
|
143
|
+
pulumi.set(self, "project", value)
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter
|
147
|
+
def properties(self) -> Optional[pulumi.Input['CloudExadataInfrastructurePropertiesArgs']]:
|
148
|
+
"""
|
149
|
+
Various properties of Exadata Infrastructure.
|
150
|
+
Structure is documented below.
|
151
|
+
"""
|
152
|
+
return pulumi.get(self, "properties")
|
153
|
+
|
154
|
+
@properties.setter
|
155
|
+
def properties(self, value: Optional[pulumi.Input['CloudExadataInfrastructurePropertiesArgs']]):
|
156
|
+
pulumi.set(self, "properties", value)
|
157
|
+
|
158
|
+
|
159
|
+
@pulumi.input_type
|
160
|
+
class _CloudExadataInfrastructureState:
|
161
|
+
def __init__(__self__, *,
|
162
|
+
cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
|
163
|
+
create_time: Optional[pulumi.Input[str]] = None,
|
164
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
165
|
+
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
166
|
+
entitlement_id: Optional[pulumi.Input[str]] = None,
|
167
|
+
gcp_oracle_zone: Optional[pulumi.Input[str]] = None,
|
168
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
169
|
+
location: Optional[pulumi.Input[str]] = None,
|
170
|
+
name: Optional[pulumi.Input[str]] = None,
|
171
|
+
project: Optional[pulumi.Input[str]] = None,
|
172
|
+
properties: Optional[pulumi.Input['CloudExadataInfrastructurePropertiesArgs']] = None,
|
173
|
+
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
174
|
+
"""
|
175
|
+
Input properties used for looking up and filtering CloudExadataInfrastructure resources.
|
176
|
+
:param pulumi.Input[str] cloud_exadata_infrastructure_id: The ID of the Exadata Infrastructure to create. This value is restricted
|
177
|
+
to (^a-z?$) and must be a maximum of 63
|
178
|
+
characters in length. The value must start with a letter and end with
|
179
|
+
a letter or a number.
|
180
|
+
|
181
|
+
|
182
|
+
- - -
|
183
|
+
:param pulumi.Input[str] create_time: The date and time that the Exadata Infrastructure was created.
|
184
|
+
:param pulumi.Input[str] display_name: User friendly name for this resource.
|
185
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
186
|
+
:param pulumi.Input[str] entitlement_id: Entitlement ID of the private offer against which this infrastructure
|
187
|
+
resource is provisioned.
|
188
|
+
:param pulumi.Input[str] gcp_oracle_zone: GCP location where Oracle Exadata is hosted.
|
189
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels or tags associated with the resource.
|
190
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
191
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
192
|
+
:param pulumi.Input[str] location: Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/DbServer`.
|
193
|
+
:param pulumi.Input[str] name: Identifier. The name of the Exadata Infrastructure resource with the following format:
|
194
|
+
projects/{project}/locations/{region}/cloudExadataInfrastructures/{cloud_exadata_infrastructure}
|
195
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
196
|
+
If it is not provided, the provider project is used.
|
197
|
+
:param pulumi.Input['CloudExadataInfrastructurePropertiesArgs'] properties: Various properties of Exadata Infrastructure.
|
198
|
+
Structure is documented below.
|
199
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
200
|
+
and default labels configured on the provider.
|
201
|
+
"""
|
202
|
+
if cloud_exadata_infrastructure_id is not None:
|
203
|
+
pulumi.set(__self__, "cloud_exadata_infrastructure_id", cloud_exadata_infrastructure_id)
|
204
|
+
if create_time is not None:
|
205
|
+
pulumi.set(__self__, "create_time", create_time)
|
206
|
+
if display_name is not None:
|
207
|
+
pulumi.set(__self__, "display_name", display_name)
|
208
|
+
if effective_labels is not None:
|
209
|
+
pulumi.set(__self__, "effective_labels", effective_labels)
|
210
|
+
if entitlement_id is not None:
|
211
|
+
pulumi.set(__self__, "entitlement_id", entitlement_id)
|
212
|
+
if gcp_oracle_zone is not None:
|
213
|
+
pulumi.set(__self__, "gcp_oracle_zone", gcp_oracle_zone)
|
214
|
+
if labels is not None:
|
215
|
+
pulumi.set(__self__, "labels", labels)
|
216
|
+
if location is not None:
|
217
|
+
pulumi.set(__self__, "location", location)
|
218
|
+
if name is not None:
|
219
|
+
pulumi.set(__self__, "name", name)
|
220
|
+
if project is not None:
|
221
|
+
pulumi.set(__self__, "project", project)
|
222
|
+
if properties is not None:
|
223
|
+
pulumi.set(__self__, "properties", properties)
|
224
|
+
if pulumi_labels is not None:
|
225
|
+
pulumi.set(__self__, "pulumi_labels", pulumi_labels)
|
226
|
+
|
227
|
+
@property
|
228
|
+
@pulumi.getter(name="cloudExadataInfrastructureId")
|
229
|
+
def cloud_exadata_infrastructure_id(self) -> Optional[pulumi.Input[str]]:
|
230
|
+
"""
|
231
|
+
The ID of the Exadata Infrastructure to create. This value is restricted
|
232
|
+
to (^a-z?$) and must be a maximum of 63
|
233
|
+
characters in length. The value must start with a letter and end with
|
234
|
+
a letter or a number.
|
235
|
+
|
236
|
+
|
237
|
+
- - -
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "cloud_exadata_infrastructure_id")
|
240
|
+
|
241
|
+
@cloud_exadata_infrastructure_id.setter
|
242
|
+
def cloud_exadata_infrastructure_id(self, value: Optional[pulumi.Input[str]]):
|
243
|
+
pulumi.set(self, "cloud_exadata_infrastructure_id", value)
|
244
|
+
|
245
|
+
@property
|
246
|
+
@pulumi.getter(name="createTime")
|
247
|
+
def create_time(self) -> Optional[pulumi.Input[str]]:
|
248
|
+
"""
|
249
|
+
The date and time that the Exadata Infrastructure was created.
|
250
|
+
"""
|
251
|
+
return pulumi.get(self, "create_time")
|
252
|
+
|
253
|
+
@create_time.setter
|
254
|
+
def create_time(self, value: Optional[pulumi.Input[str]]):
|
255
|
+
pulumi.set(self, "create_time", value)
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="displayName")
|
259
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
260
|
+
"""
|
261
|
+
User friendly name for this resource.
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "display_name")
|
264
|
+
|
265
|
+
@display_name.setter
|
266
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
267
|
+
pulumi.set(self, "display_name", value)
|
268
|
+
|
269
|
+
@property
|
270
|
+
@pulumi.getter(name="effectiveLabels")
|
271
|
+
def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
272
|
+
"""
|
273
|
+
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "effective_labels")
|
276
|
+
|
277
|
+
@effective_labels.setter
|
278
|
+
def effective_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
279
|
+
pulumi.set(self, "effective_labels", value)
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="entitlementId")
|
283
|
+
def entitlement_id(self) -> Optional[pulumi.Input[str]]:
|
284
|
+
"""
|
285
|
+
Entitlement ID of the private offer against which this infrastructure
|
286
|
+
resource is provisioned.
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "entitlement_id")
|
289
|
+
|
290
|
+
@entitlement_id.setter
|
291
|
+
def entitlement_id(self, value: Optional[pulumi.Input[str]]):
|
292
|
+
pulumi.set(self, "entitlement_id", value)
|
293
|
+
|
294
|
+
@property
|
295
|
+
@pulumi.getter(name="gcpOracleZone")
|
296
|
+
def gcp_oracle_zone(self) -> Optional[pulumi.Input[str]]:
|
297
|
+
"""
|
298
|
+
GCP location where Oracle Exadata is hosted.
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "gcp_oracle_zone")
|
301
|
+
|
302
|
+
@gcp_oracle_zone.setter
|
303
|
+
def gcp_oracle_zone(self, value: Optional[pulumi.Input[str]]):
|
304
|
+
pulumi.set(self, "gcp_oracle_zone", value)
|
305
|
+
|
306
|
+
@property
|
307
|
+
@pulumi.getter
|
308
|
+
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
309
|
+
"""
|
310
|
+
Labels or tags associated with the resource.
|
311
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
312
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
313
|
+
"""
|
314
|
+
return pulumi.get(self, "labels")
|
315
|
+
|
316
|
+
@labels.setter
|
317
|
+
def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
318
|
+
pulumi.set(self, "labels", value)
|
319
|
+
|
320
|
+
@property
|
321
|
+
@pulumi.getter
|
322
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
323
|
+
"""
|
324
|
+
Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/DbServer`.
|
325
|
+
"""
|
326
|
+
return pulumi.get(self, "location")
|
327
|
+
|
328
|
+
@location.setter
|
329
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
330
|
+
pulumi.set(self, "location", value)
|
331
|
+
|
332
|
+
@property
|
333
|
+
@pulumi.getter
|
334
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
335
|
+
"""
|
336
|
+
Identifier. The name of the Exadata Infrastructure resource with the following format:
|
337
|
+
projects/{project}/locations/{region}/cloudExadataInfrastructures/{cloud_exadata_infrastructure}
|
338
|
+
"""
|
339
|
+
return pulumi.get(self, "name")
|
340
|
+
|
341
|
+
@name.setter
|
342
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
343
|
+
pulumi.set(self, "name", value)
|
344
|
+
|
345
|
+
@property
|
346
|
+
@pulumi.getter
|
347
|
+
def project(self) -> Optional[pulumi.Input[str]]:
|
348
|
+
"""
|
349
|
+
The ID of the project in which the resource belongs.
|
350
|
+
If it is not provided, the provider project is used.
|
351
|
+
"""
|
352
|
+
return pulumi.get(self, "project")
|
353
|
+
|
354
|
+
@project.setter
|
355
|
+
def project(self, value: Optional[pulumi.Input[str]]):
|
356
|
+
pulumi.set(self, "project", value)
|
357
|
+
|
358
|
+
@property
|
359
|
+
@pulumi.getter
|
360
|
+
def properties(self) -> Optional[pulumi.Input['CloudExadataInfrastructurePropertiesArgs']]:
|
361
|
+
"""
|
362
|
+
Various properties of Exadata Infrastructure.
|
363
|
+
Structure is documented below.
|
364
|
+
"""
|
365
|
+
return pulumi.get(self, "properties")
|
366
|
+
|
367
|
+
@properties.setter
|
368
|
+
def properties(self, value: Optional[pulumi.Input['CloudExadataInfrastructurePropertiesArgs']]):
|
369
|
+
pulumi.set(self, "properties", value)
|
370
|
+
|
371
|
+
@property
|
372
|
+
@pulumi.getter(name="pulumiLabels")
|
373
|
+
def pulumi_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
374
|
+
"""
|
375
|
+
The combination of labels configured directly on the resource
|
376
|
+
and default labels configured on the provider.
|
377
|
+
"""
|
378
|
+
return pulumi.get(self, "pulumi_labels")
|
379
|
+
|
380
|
+
@pulumi_labels.setter
|
381
|
+
def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
382
|
+
pulumi.set(self, "pulumi_labels", value)
|
383
|
+
|
384
|
+
|
385
|
+
class CloudExadataInfrastructure(pulumi.CustomResource):
|
386
|
+
@overload
|
387
|
+
def __init__(__self__,
|
388
|
+
resource_name: str,
|
389
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
390
|
+
cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
|
391
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
392
|
+
gcp_oracle_zone: Optional[pulumi.Input[str]] = None,
|
393
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
394
|
+
location: Optional[pulumi.Input[str]] = None,
|
395
|
+
project: Optional[pulumi.Input[str]] = None,
|
396
|
+
properties: Optional[pulumi.Input[Union['CloudExadataInfrastructurePropertiesArgs', 'CloudExadataInfrastructurePropertiesArgsDict']]] = None,
|
397
|
+
__props__=None):
|
398
|
+
"""
|
399
|
+
A CloudExadataInfrastructure resource.
|
400
|
+
|
401
|
+
To get more information about CloudExadataInfrastructure, see:
|
402
|
+
|
403
|
+
* [API documentation](https://cloud.google.com/oracle/database/docs/reference/rest/v1/projects.locations.cloudExadataInfrastructures)
|
404
|
+
* How-to Guides
|
405
|
+
* [Create Exadata Infrastructure instances](https://cloud.google.com/oracle/database/docs/create-instances)
|
406
|
+
|
407
|
+
## Example Usage
|
408
|
+
|
409
|
+
### Oracledatabase Cloud Exadata Infrastructure Basic
|
410
|
+
|
411
|
+
```python
|
412
|
+
import pulumi
|
413
|
+
import pulumi_gcp as gcp
|
414
|
+
|
415
|
+
my_cloud_exadata = gcp.oracledatabase.CloudExadataInfrastructure("my-cloud-exadata",
|
416
|
+
cloud_exadata_infrastructure_id="my-instance",
|
417
|
+
display_name="my-instance displayname",
|
418
|
+
location="us-east4",
|
419
|
+
project="my-project",
|
420
|
+
properties={
|
421
|
+
"shape": "Exadata.X9M",
|
422
|
+
"compute_count": 2,
|
423
|
+
"storage_count": 3,
|
424
|
+
})
|
425
|
+
```
|
426
|
+
### Oracledatabase Cloud Exadata Infrastructure Full
|
427
|
+
|
428
|
+
```python
|
429
|
+
import pulumi
|
430
|
+
import pulumi_gcp as gcp
|
431
|
+
|
432
|
+
my_cloud_exadata = gcp.oracledatabase.CloudExadataInfrastructure("my-cloud-exadata",
|
433
|
+
cloud_exadata_infrastructure_id="my-instance",
|
434
|
+
display_name="my-instance displayname",
|
435
|
+
location="us-east4",
|
436
|
+
project="my-project",
|
437
|
+
gcp_oracle_zone="us-east4-b-r1",
|
438
|
+
properties={
|
439
|
+
"shape": "Exadata.X9M",
|
440
|
+
"compute_count": 2,
|
441
|
+
"storage_count": 3,
|
442
|
+
"customer_contacts": [{
|
443
|
+
"email": "xyz@example.com",
|
444
|
+
}],
|
445
|
+
"maintenance_window": {
|
446
|
+
"custom_action_timeout_mins": 20,
|
447
|
+
"days_of_weeks": ["SUNDAY"],
|
448
|
+
"hours_of_days": [4],
|
449
|
+
"is_custom_action_timeout_enabled": False,
|
450
|
+
"lead_time_week": 1,
|
451
|
+
"months": [
|
452
|
+
"JANUARY",
|
453
|
+
"APRIL",
|
454
|
+
"MAY",
|
455
|
+
"OCTOBER",
|
456
|
+
],
|
457
|
+
"patching_mode": "ROLLING",
|
458
|
+
"preference": "CUSTOM_PREFERENCE",
|
459
|
+
"weeks_of_months": [4],
|
460
|
+
},
|
461
|
+
"total_storage_size_gb": 196608,
|
462
|
+
},
|
463
|
+
labels={
|
464
|
+
"label-one": "value-one",
|
465
|
+
})
|
466
|
+
```
|
467
|
+
|
468
|
+
## Import
|
469
|
+
|
470
|
+
CloudExadataInfrastructure can be imported using any of these accepted formats:
|
471
|
+
|
472
|
+
* `projects/{{project}}/locations/{{location}}/cloudExadataInfrastructures/{{cloud_exadata_infrastructure_id}}`
|
473
|
+
|
474
|
+
* `{{project}}/{{location}}/{{cloud_exadata_infrastructure_id}}`
|
475
|
+
|
476
|
+
* `{{location}}/{{cloud_exadata_infrastructure_id}}`
|
477
|
+
|
478
|
+
When using the `pulumi import` command, CloudExadataInfrastructure can be imported using one of the formats above. For example:
|
479
|
+
|
480
|
+
```sh
|
481
|
+
$ pulumi import gcp:oracledatabase/cloudExadataInfrastructure:CloudExadataInfrastructure default projects/{{project}}/locations/{{location}}/cloudExadataInfrastructures/{{cloud_exadata_infrastructure_id}}
|
482
|
+
```
|
483
|
+
|
484
|
+
```sh
|
485
|
+
$ pulumi import gcp:oracledatabase/cloudExadataInfrastructure:CloudExadataInfrastructure default {{project}}/{{location}}/{{cloud_exadata_infrastructure_id}}
|
486
|
+
```
|
487
|
+
|
488
|
+
```sh
|
489
|
+
$ pulumi import gcp:oracledatabase/cloudExadataInfrastructure:CloudExadataInfrastructure default {{location}}/{{cloud_exadata_infrastructure_id}}
|
490
|
+
```
|
491
|
+
|
492
|
+
:param str resource_name: The name of the resource.
|
493
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
494
|
+
:param pulumi.Input[str] cloud_exadata_infrastructure_id: The ID of the Exadata Infrastructure to create. This value is restricted
|
495
|
+
to (^a-z?$) and must be a maximum of 63
|
496
|
+
characters in length. The value must start with a letter and end with
|
497
|
+
a letter or a number.
|
498
|
+
|
499
|
+
|
500
|
+
- - -
|
501
|
+
:param pulumi.Input[str] display_name: User friendly name for this resource.
|
502
|
+
:param pulumi.Input[str] gcp_oracle_zone: GCP location where Oracle Exadata is hosted.
|
503
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels or tags associated with the resource.
|
504
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
505
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
506
|
+
:param pulumi.Input[str] location: Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/DbServer`.
|
507
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
508
|
+
If it is not provided, the provider project is used.
|
509
|
+
:param pulumi.Input[Union['CloudExadataInfrastructurePropertiesArgs', 'CloudExadataInfrastructurePropertiesArgsDict']] properties: Various properties of Exadata Infrastructure.
|
510
|
+
Structure is documented below.
|
511
|
+
"""
|
512
|
+
...
|
513
|
+
@overload
|
514
|
+
def __init__(__self__,
|
515
|
+
resource_name: str,
|
516
|
+
args: CloudExadataInfrastructureArgs,
|
517
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
518
|
+
"""
|
519
|
+
A CloudExadataInfrastructure resource.
|
520
|
+
|
521
|
+
To get more information about CloudExadataInfrastructure, see:
|
522
|
+
|
523
|
+
* [API documentation](https://cloud.google.com/oracle/database/docs/reference/rest/v1/projects.locations.cloudExadataInfrastructures)
|
524
|
+
* How-to Guides
|
525
|
+
* [Create Exadata Infrastructure instances](https://cloud.google.com/oracle/database/docs/create-instances)
|
526
|
+
|
527
|
+
## Example Usage
|
528
|
+
|
529
|
+
### Oracledatabase Cloud Exadata Infrastructure Basic
|
530
|
+
|
531
|
+
```python
|
532
|
+
import pulumi
|
533
|
+
import pulumi_gcp as gcp
|
534
|
+
|
535
|
+
my_cloud_exadata = gcp.oracledatabase.CloudExadataInfrastructure("my-cloud-exadata",
|
536
|
+
cloud_exadata_infrastructure_id="my-instance",
|
537
|
+
display_name="my-instance displayname",
|
538
|
+
location="us-east4",
|
539
|
+
project="my-project",
|
540
|
+
properties={
|
541
|
+
"shape": "Exadata.X9M",
|
542
|
+
"compute_count": 2,
|
543
|
+
"storage_count": 3,
|
544
|
+
})
|
545
|
+
```
|
546
|
+
### Oracledatabase Cloud Exadata Infrastructure Full
|
547
|
+
|
548
|
+
```python
|
549
|
+
import pulumi
|
550
|
+
import pulumi_gcp as gcp
|
551
|
+
|
552
|
+
my_cloud_exadata = gcp.oracledatabase.CloudExadataInfrastructure("my-cloud-exadata",
|
553
|
+
cloud_exadata_infrastructure_id="my-instance",
|
554
|
+
display_name="my-instance displayname",
|
555
|
+
location="us-east4",
|
556
|
+
project="my-project",
|
557
|
+
gcp_oracle_zone="us-east4-b-r1",
|
558
|
+
properties={
|
559
|
+
"shape": "Exadata.X9M",
|
560
|
+
"compute_count": 2,
|
561
|
+
"storage_count": 3,
|
562
|
+
"customer_contacts": [{
|
563
|
+
"email": "xyz@example.com",
|
564
|
+
}],
|
565
|
+
"maintenance_window": {
|
566
|
+
"custom_action_timeout_mins": 20,
|
567
|
+
"days_of_weeks": ["SUNDAY"],
|
568
|
+
"hours_of_days": [4],
|
569
|
+
"is_custom_action_timeout_enabled": False,
|
570
|
+
"lead_time_week": 1,
|
571
|
+
"months": [
|
572
|
+
"JANUARY",
|
573
|
+
"APRIL",
|
574
|
+
"MAY",
|
575
|
+
"OCTOBER",
|
576
|
+
],
|
577
|
+
"patching_mode": "ROLLING",
|
578
|
+
"preference": "CUSTOM_PREFERENCE",
|
579
|
+
"weeks_of_months": [4],
|
580
|
+
},
|
581
|
+
"total_storage_size_gb": 196608,
|
582
|
+
},
|
583
|
+
labels={
|
584
|
+
"label-one": "value-one",
|
585
|
+
})
|
586
|
+
```
|
587
|
+
|
588
|
+
## Import
|
589
|
+
|
590
|
+
CloudExadataInfrastructure can be imported using any of these accepted formats:
|
591
|
+
|
592
|
+
* `projects/{{project}}/locations/{{location}}/cloudExadataInfrastructures/{{cloud_exadata_infrastructure_id}}`
|
593
|
+
|
594
|
+
* `{{project}}/{{location}}/{{cloud_exadata_infrastructure_id}}`
|
595
|
+
|
596
|
+
* `{{location}}/{{cloud_exadata_infrastructure_id}}`
|
597
|
+
|
598
|
+
When using the `pulumi import` command, CloudExadataInfrastructure can be imported using one of the formats above. For example:
|
599
|
+
|
600
|
+
```sh
|
601
|
+
$ pulumi import gcp:oracledatabase/cloudExadataInfrastructure:CloudExadataInfrastructure default projects/{{project}}/locations/{{location}}/cloudExadataInfrastructures/{{cloud_exadata_infrastructure_id}}
|
602
|
+
```
|
603
|
+
|
604
|
+
```sh
|
605
|
+
$ pulumi import gcp:oracledatabase/cloudExadataInfrastructure:CloudExadataInfrastructure default {{project}}/{{location}}/{{cloud_exadata_infrastructure_id}}
|
606
|
+
```
|
607
|
+
|
608
|
+
```sh
|
609
|
+
$ pulumi import gcp:oracledatabase/cloudExadataInfrastructure:CloudExadataInfrastructure default {{location}}/{{cloud_exadata_infrastructure_id}}
|
610
|
+
```
|
611
|
+
|
612
|
+
:param str resource_name: The name of the resource.
|
613
|
+
:param CloudExadataInfrastructureArgs args: The arguments to use to populate this resource's properties.
|
614
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
615
|
+
"""
|
616
|
+
...
|
617
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
618
|
+
resource_args, opts = _utilities.get_resource_args_opts(CloudExadataInfrastructureArgs, pulumi.ResourceOptions, *args, **kwargs)
|
619
|
+
if resource_args is not None:
|
620
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
621
|
+
else:
|
622
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
623
|
+
|
624
|
+
def _internal_init(__self__,
|
625
|
+
resource_name: str,
|
626
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
627
|
+
cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
|
628
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
629
|
+
gcp_oracle_zone: Optional[pulumi.Input[str]] = None,
|
630
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
631
|
+
location: Optional[pulumi.Input[str]] = None,
|
632
|
+
project: Optional[pulumi.Input[str]] = None,
|
633
|
+
properties: Optional[pulumi.Input[Union['CloudExadataInfrastructurePropertiesArgs', 'CloudExadataInfrastructurePropertiesArgsDict']]] = None,
|
634
|
+
__props__=None):
|
635
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
636
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
637
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
638
|
+
if opts.id is None:
|
639
|
+
if __props__ is not None:
|
640
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
641
|
+
__props__ = CloudExadataInfrastructureArgs.__new__(CloudExadataInfrastructureArgs)
|
642
|
+
|
643
|
+
if cloud_exadata_infrastructure_id is None and not opts.urn:
|
644
|
+
raise TypeError("Missing required property 'cloud_exadata_infrastructure_id'")
|
645
|
+
__props__.__dict__["cloud_exadata_infrastructure_id"] = cloud_exadata_infrastructure_id
|
646
|
+
__props__.__dict__["display_name"] = display_name
|
647
|
+
__props__.__dict__["gcp_oracle_zone"] = gcp_oracle_zone
|
648
|
+
__props__.__dict__["labels"] = labels
|
649
|
+
if location is None and not opts.urn:
|
650
|
+
raise TypeError("Missing required property 'location'")
|
651
|
+
__props__.__dict__["location"] = location
|
652
|
+
__props__.__dict__["project"] = project
|
653
|
+
__props__.__dict__["properties"] = properties
|
654
|
+
__props__.__dict__["create_time"] = None
|
655
|
+
__props__.__dict__["effective_labels"] = None
|
656
|
+
__props__.__dict__["entitlement_id"] = None
|
657
|
+
__props__.__dict__["name"] = None
|
658
|
+
__props__.__dict__["pulumi_labels"] = None
|
659
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["effectiveLabels", "pulumiLabels"])
|
660
|
+
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
661
|
+
super(CloudExadataInfrastructure, __self__).__init__(
|
662
|
+
'gcp:oracledatabase/cloudExadataInfrastructure:CloudExadataInfrastructure',
|
663
|
+
resource_name,
|
664
|
+
__props__,
|
665
|
+
opts)
|
666
|
+
|
667
|
+
@staticmethod
|
668
|
+
def get(resource_name: str,
|
669
|
+
id: pulumi.Input[str],
|
670
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
671
|
+
cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
|
672
|
+
create_time: Optional[pulumi.Input[str]] = None,
|
673
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
674
|
+
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
675
|
+
entitlement_id: Optional[pulumi.Input[str]] = None,
|
676
|
+
gcp_oracle_zone: Optional[pulumi.Input[str]] = None,
|
677
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
678
|
+
location: Optional[pulumi.Input[str]] = None,
|
679
|
+
name: Optional[pulumi.Input[str]] = None,
|
680
|
+
project: Optional[pulumi.Input[str]] = None,
|
681
|
+
properties: Optional[pulumi.Input[Union['CloudExadataInfrastructurePropertiesArgs', 'CloudExadataInfrastructurePropertiesArgsDict']]] = None,
|
682
|
+
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'CloudExadataInfrastructure':
|
683
|
+
"""
|
684
|
+
Get an existing CloudExadataInfrastructure resource's state with the given name, id, and optional extra
|
685
|
+
properties used to qualify the lookup.
|
686
|
+
|
687
|
+
:param str resource_name: The unique name of the resulting resource.
|
688
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
689
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
690
|
+
:param pulumi.Input[str] cloud_exadata_infrastructure_id: The ID of the Exadata Infrastructure to create. This value is restricted
|
691
|
+
to (^a-z?$) and must be a maximum of 63
|
692
|
+
characters in length. The value must start with a letter and end with
|
693
|
+
a letter or a number.
|
694
|
+
|
695
|
+
|
696
|
+
- - -
|
697
|
+
:param pulumi.Input[str] create_time: The date and time that the Exadata Infrastructure was created.
|
698
|
+
:param pulumi.Input[str] display_name: User friendly name for this resource.
|
699
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
700
|
+
:param pulumi.Input[str] entitlement_id: Entitlement ID of the private offer against which this infrastructure
|
701
|
+
resource is provisioned.
|
702
|
+
:param pulumi.Input[str] gcp_oracle_zone: GCP location where Oracle Exadata is hosted.
|
703
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels or tags associated with the resource.
|
704
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
705
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
706
|
+
:param pulumi.Input[str] location: Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/DbServer`.
|
707
|
+
:param pulumi.Input[str] name: Identifier. The name of the Exadata Infrastructure resource with the following format:
|
708
|
+
projects/{project}/locations/{region}/cloudExadataInfrastructures/{cloud_exadata_infrastructure}
|
709
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
710
|
+
If it is not provided, the provider project is used.
|
711
|
+
:param pulumi.Input[Union['CloudExadataInfrastructurePropertiesArgs', 'CloudExadataInfrastructurePropertiesArgsDict']] properties: Various properties of Exadata Infrastructure.
|
712
|
+
Structure is documented below.
|
713
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
714
|
+
and default labels configured on the provider.
|
715
|
+
"""
|
716
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
717
|
+
|
718
|
+
__props__ = _CloudExadataInfrastructureState.__new__(_CloudExadataInfrastructureState)
|
719
|
+
|
720
|
+
__props__.__dict__["cloud_exadata_infrastructure_id"] = cloud_exadata_infrastructure_id
|
721
|
+
__props__.__dict__["create_time"] = create_time
|
722
|
+
__props__.__dict__["display_name"] = display_name
|
723
|
+
__props__.__dict__["effective_labels"] = effective_labels
|
724
|
+
__props__.__dict__["entitlement_id"] = entitlement_id
|
725
|
+
__props__.__dict__["gcp_oracle_zone"] = gcp_oracle_zone
|
726
|
+
__props__.__dict__["labels"] = labels
|
727
|
+
__props__.__dict__["location"] = location
|
728
|
+
__props__.__dict__["name"] = name
|
729
|
+
__props__.__dict__["project"] = project
|
730
|
+
__props__.__dict__["properties"] = properties
|
731
|
+
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
732
|
+
return CloudExadataInfrastructure(resource_name, opts=opts, __props__=__props__)
|
733
|
+
|
734
|
+
@property
|
735
|
+
@pulumi.getter(name="cloudExadataInfrastructureId")
|
736
|
+
def cloud_exadata_infrastructure_id(self) -> pulumi.Output[str]:
|
737
|
+
"""
|
738
|
+
The ID of the Exadata Infrastructure to create. This value is restricted
|
739
|
+
to (^a-z?$) and must be a maximum of 63
|
740
|
+
characters in length. The value must start with a letter and end with
|
741
|
+
a letter or a number.
|
742
|
+
|
743
|
+
|
744
|
+
- - -
|
745
|
+
"""
|
746
|
+
return pulumi.get(self, "cloud_exadata_infrastructure_id")
|
747
|
+
|
748
|
+
@property
|
749
|
+
@pulumi.getter(name="createTime")
|
750
|
+
def create_time(self) -> pulumi.Output[str]:
|
751
|
+
"""
|
752
|
+
The date and time that the Exadata Infrastructure was created.
|
753
|
+
"""
|
754
|
+
return pulumi.get(self, "create_time")
|
755
|
+
|
756
|
+
@property
|
757
|
+
@pulumi.getter(name="displayName")
|
758
|
+
def display_name(self) -> pulumi.Output[Optional[str]]:
|
759
|
+
"""
|
760
|
+
User friendly name for this resource.
|
761
|
+
"""
|
762
|
+
return pulumi.get(self, "display_name")
|
763
|
+
|
764
|
+
@property
|
765
|
+
@pulumi.getter(name="effectiveLabels")
|
766
|
+
def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
767
|
+
"""
|
768
|
+
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
769
|
+
"""
|
770
|
+
return pulumi.get(self, "effective_labels")
|
771
|
+
|
772
|
+
@property
|
773
|
+
@pulumi.getter(name="entitlementId")
|
774
|
+
def entitlement_id(self) -> pulumi.Output[str]:
|
775
|
+
"""
|
776
|
+
Entitlement ID of the private offer against which this infrastructure
|
777
|
+
resource is provisioned.
|
778
|
+
"""
|
779
|
+
return pulumi.get(self, "entitlement_id")
|
780
|
+
|
781
|
+
@property
|
782
|
+
@pulumi.getter(name="gcpOracleZone")
|
783
|
+
def gcp_oracle_zone(self) -> pulumi.Output[str]:
|
784
|
+
"""
|
785
|
+
GCP location where Oracle Exadata is hosted.
|
786
|
+
"""
|
787
|
+
return pulumi.get(self, "gcp_oracle_zone")
|
788
|
+
|
789
|
+
@property
|
790
|
+
@pulumi.getter
|
791
|
+
def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
792
|
+
"""
|
793
|
+
Labels or tags associated with the resource.
|
794
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
795
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
796
|
+
"""
|
797
|
+
return pulumi.get(self, "labels")
|
798
|
+
|
799
|
+
@property
|
800
|
+
@pulumi.getter
|
801
|
+
def location(self) -> pulumi.Output[str]:
|
802
|
+
"""
|
803
|
+
Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/DbServer`.
|
804
|
+
"""
|
805
|
+
return pulumi.get(self, "location")
|
806
|
+
|
807
|
+
@property
|
808
|
+
@pulumi.getter
|
809
|
+
def name(self) -> pulumi.Output[str]:
|
810
|
+
"""
|
811
|
+
Identifier. The name of the Exadata Infrastructure resource with the following format:
|
812
|
+
projects/{project}/locations/{region}/cloudExadataInfrastructures/{cloud_exadata_infrastructure}
|
813
|
+
"""
|
814
|
+
return pulumi.get(self, "name")
|
815
|
+
|
816
|
+
@property
|
817
|
+
@pulumi.getter
|
818
|
+
def project(self) -> pulumi.Output[str]:
|
819
|
+
"""
|
820
|
+
The ID of the project in which the resource belongs.
|
821
|
+
If it is not provided, the provider project is used.
|
822
|
+
"""
|
823
|
+
return pulumi.get(self, "project")
|
824
|
+
|
825
|
+
@property
|
826
|
+
@pulumi.getter
|
827
|
+
def properties(self) -> pulumi.Output[Optional['outputs.CloudExadataInfrastructureProperties']]:
|
828
|
+
"""
|
829
|
+
Various properties of Exadata Infrastructure.
|
830
|
+
Structure is documented below.
|
831
|
+
"""
|
832
|
+
return pulumi.get(self, "properties")
|
833
|
+
|
834
|
+
@property
|
835
|
+
@pulumi.getter(name="pulumiLabels")
|
836
|
+
def pulumi_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
837
|
+
"""
|
838
|
+
The combination of labels configured directly on the resource
|
839
|
+
and default labels configured on the provider.
|
840
|
+
"""
|
841
|
+
return pulumi.get(self, "pulumi_labels")
|
842
|
+
|