pulumi-gcp 7.5.0a1704283083__py3-none-any.whl → 7.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +99 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
- pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
- pulumi_gcp/clouddeploy/__init__.py +1 -0
- pulumi_gcp/clouddeploy/_inputs.py +239 -0
- pulumi_gcp/clouddeploy/automation.py +1103 -0
- pulumi_gcp/clouddeploy/outputs.py +246 -0
- pulumi_gcp/clouddomains/__init__.py +10 -0
- pulumi_gcp/clouddomains/_inputs.py +1098 -0
- pulumi_gcp/clouddomains/outputs.py +1156 -0
- pulumi_gcp/clouddomains/registration.py +1068 -0
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/composer/_inputs.py +79 -1
- pulumi_gcp/composer/outputs.py +131 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +180 -0
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_reservation.py +212 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/network_firewall_policy.py +20 -22
- pulumi_gcp/compute/outputs.py +325 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
- pulumi_gcp/compute/router_peer.py +54 -0
- pulumi_gcp/compute/vpn_tunnel.py +8 -4
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +23 -0
- pulumi_gcp/container/aws_node_pool.py +7 -7
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +49 -0
- pulumi_gcp/dataflow/pipeline.py +1 -1
- pulumi_gcp/dataproc/_inputs.py +413 -39
- pulumi_gcp/dataproc/metastore_service.py +63 -0
- pulumi_gcp/dataproc/outputs.py +461 -39
- pulumi_gcp/dns/__init__.py +1 -0
- pulumi_gcp/dns/_inputs.py +94 -0
- pulumi_gcp/dns/get_managed_zones.py +89 -0
- pulumi_gcp/dns/outputs.py +62 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
- pulumi_gcp/filestore/__init__.py +1 -0
- pulumi_gcp/filestore/get_instance.py +258 -0
- pulumi_gcp/filestore/instance.py +7 -7
- pulumi_gcp/filestore/outputs.py +126 -0
- pulumi_gcp/gkebackup/backup_plan.py +24 -8
- pulumi_gcp/gkebackup/restore_plan.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
- pulumi_gcp/gkehub/_inputs.py +502 -2
- pulumi_gcp/gkehub/feature.py +34 -0
- pulumi_gcp/gkehub/feature_membership.py +177 -0
- pulumi_gcp/gkehub/membership.py +18 -6
- pulumi_gcp/gkehub/outputs.py +502 -2
- pulumi_gcp/gkeonprem/_inputs.py +21 -25
- pulumi_gcp/gkeonprem/outputs.py +34 -25
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
- pulumi_gcp/integrationconnectors/__init__.py +1 -0
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
- pulumi_gcp/kms/_inputs.py +42 -0
- pulumi_gcp/kms/crypto_key.py +36 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
- pulumi_gcp/kms/outputs.py +62 -0
- pulumi_gcp/logging/__init__.py +2 -0
- pulumi_gcp/logging/folder_settings.py +490 -0
- pulumi_gcp/logging/folder_sink.py +21 -21
- pulumi_gcp/logging/organization_settings.py +484 -0
- pulumi_gcp/logging/organization_sink.py +21 -21
- pulumi_gcp/logging/project_sink.py +7 -14
- pulumi_gcp/netapp/__init__.py +3 -0
- pulumi_gcp/netapp/active_directory.py +1413 -0
- pulumi_gcp/netapp/backup_vault.py +593 -0
- pulumi_gcp/netapp/kmsconfig.py +649 -0
- pulumi_gcp/orgpolicy/policy.py +28 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +29 -37
- pulumi_gcp/serviceaccount/account.py +47 -0
- pulumi_gcp/servicenetworking/connection.py +55 -1
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/ssl_cert.py +1 -1
- pulumi_gcp/sql/user.py +7 -7
- pulumi_gcp/storage/transfer_job.py +24 -5
- pulumi_gcp/vertex/__init__.py +3 -0
- pulumi_gcp/vertex/_inputs.py +339 -0
- pulumi_gcp/vertex/ai_feature_group.py +710 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
- pulumi_gcp/vertex/outputs.py +406 -0
- pulumi_gcp/vmwareengine/__init__.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +84 -0
- pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
- pulumi_gcp/vmwareengine/outputs.py +146 -0
- pulumi_gcp/workflows/workflow.py +7 -7
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1156 @@
|
|
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
|
+
'RegistrationContactSettings',
|
15
|
+
'RegistrationContactSettingsAdminContact',
|
16
|
+
'RegistrationContactSettingsAdminContactPostalAddress',
|
17
|
+
'RegistrationContactSettingsRegistrantContact',
|
18
|
+
'RegistrationContactSettingsRegistrantContactPostalAddress',
|
19
|
+
'RegistrationContactSettingsTechnicalContact',
|
20
|
+
'RegistrationContactSettingsTechnicalContactPostalAddress',
|
21
|
+
'RegistrationDnsSettings',
|
22
|
+
'RegistrationDnsSettingsCustomDns',
|
23
|
+
'RegistrationDnsSettingsCustomDnsDsRecord',
|
24
|
+
'RegistrationDnsSettingsGlueRecord',
|
25
|
+
'RegistrationManagementSettings',
|
26
|
+
'RegistrationYearlyPrice',
|
27
|
+
]
|
28
|
+
|
29
|
+
@pulumi.output_type
|
30
|
+
class RegistrationContactSettings(dict):
|
31
|
+
@staticmethod
|
32
|
+
def __key_warning(key: str):
|
33
|
+
suggest = None
|
34
|
+
if key == "adminContact":
|
35
|
+
suggest = "admin_contact"
|
36
|
+
elif key == "registrantContact":
|
37
|
+
suggest = "registrant_contact"
|
38
|
+
elif key == "technicalContact":
|
39
|
+
suggest = "technical_contact"
|
40
|
+
|
41
|
+
if suggest:
|
42
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationContactSettings. Access the value via the '{suggest}' property getter instead.")
|
43
|
+
|
44
|
+
def __getitem__(self, key: str) -> Any:
|
45
|
+
RegistrationContactSettings.__key_warning(key)
|
46
|
+
return super().__getitem__(key)
|
47
|
+
|
48
|
+
def get(self, key: str, default = None) -> Any:
|
49
|
+
RegistrationContactSettings.__key_warning(key)
|
50
|
+
return super().get(key, default)
|
51
|
+
|
52
|
+
def __init__(__self__, *,
|
53
|
+
admin_contact: 'outputs.RegistrationContactSettingsAdminContact',
|
54
|
+
privacy: str,
|
55
|
+
registrant_contact: 'outputs.RegistrationContactSettingsRegistrantContact',
|
56
|
+
technical_contact: 'outputs.RegistrationContactSettingsTechnicalContact'):
|
57
|
+
"""
|
58
|
+
:param 'RegistrationContactSettingsAdminContactArgs' admin_contact: Caution: Anyone with access to this email address, phone number, and/or postal address can take control of the domain.
|
59
|
+
Warning: For new Registrations, the registrant receives an email confirmation that they must complete within 15 days to
|
60
|
+
avoid domain suspension.
|
61
|
+
Structure is documented below.
|
62
|
+
:param str privacy: Required. Privacy setting for the contacts associated with the Registration.
|
63
|
+
Values are PUBLIC_CONTACT_DATA, PRIVATE_CONTACT_DATA, and REDACTED_CONTACT_DATA
|
64
|
+
:param 'RegistrationContactSettingsRegistrantContactArgs' registrant_contact: Caution: Anyone with access to this email address, phone number, and/or postal address can take control of the domain.
|
65
|
+
Warning: For new Registrations, the registrant receives an email confirmation that they must complete within 15 days to
|
66
|
+
avoid domain suspension.
|
67
|
+
Structure is documented below.
|
68
|
+
:param 'RegistrationContactSettingsTechnicalContactArgs' technical_contact: Caution: Anyone with access to this email address, phone number, and/or postal address can take control of the domain.
|
69
|
+
Warning: For new Registrations, the registrant receives an email confirmation that they must complete within 15 days to
|
70
|
+
avoid domain suspension.
|
71
|
+
Structure is documented below.
|
72
|
+
"""
|
73
|
+
pulumi.set(__self__, "admin_contact", admin_contact)
|
74
|
+
pulumi.set(__self__, "privacy", privacy)
|
75
|
+
pulumi.set(__self__, "registrant_contact", registrant_contact)
|
76
|
+
pulumi.set(__self__, "technical_contact", technical_contact)
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="adminContact")
|
80
|
+
def admin_contact(self) -> 'outputs.RegistrationContactSettingsAdminContact':
|
81
|
+
"""
|
82
|
+
Caution: Anyone with access to this email address, phone number, and/or postal address can take control of the domain.
|
83
|
+
Warning: For new Registrations, the registrant receives an email confirmation that they must complete within 15 days to
|
84
|
+
avoid domain suspension.
|
85
|
+
Structure is documented below.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "admin_contact")
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter
|
91
|
+
def privacy(self) -> str:
|
92
|
+
"""
|
93
|
+
Required. Privacy setting for the contacts associated with the Registration.
|
94
|
+
Values are PUBLIC_CONTACT_DATA, PRIVATE_CONTACT_DATA, and REDACTED_CONTACT_DATA
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "privacy")
|
97
|
+
|
98
|
+
@property
|
99
|
+
@pulumi.getter(name="registrantContact")
|
100
|
+
def registrant_contact(self) -> 'outputs.RegistrationContactSettingsRegistrantContact':
|
101
|
+
"""
|
102
|
+
Caution: Anyone with access to this email address, phone number, and/or postal address can take control of the domain.
|
103
|
+
Warning: For new Registrations, the registrant receives an email confirmation that they must complete within 15 days to
|
104
|
+
avoid domain suspension.
|
105
|
+
Structure is documented below.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "registrant_contact")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="technicalContact")
|
111
|
+
def technical_contact(self) -> 'outputs.RegistrationContactSettingsTechnicalContact':
|
112
|
+
"""
|
113
|
+
Caution: Anyone with access to this email address, phone number, and/or postal address can take control of the domain.
|
114
|
+
Warning: For new Registrations, the registrant receives an email confirmation that they must complete within 15 days to
|
115
|
+
avoid domain suspension.
|
116
|
+
Structure is documented below.
|
117
|
+
"""
|
118
|
+
return pulumi.get(self, "technical_contact")
|
119
|
+
|
120
|
+
|
121
|
+
@pulumi.output_type
|
122
|
+
class RegistrationContactSettingsAdminContact(dict):
|
123
|
+
@staticmethod
|
124
|
+
def __key_warning(key: str):
|
125
|
+
suggest = None
|
126
|
+
if key == "phoneNumber":
|
127
|
+
suggest = "phone_number"
|
128
|
+
elif key == "postalAddress":
|
129
|
+
suggest = "postal_address"
|
130
|
+
elif key == "faxNumber":
|
131
|
+
suggest = "fax_number"
|
132
|
+
|
133
|
+
if suggest:
|
134
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationContactSettingsAdminContact. Access the value via the '{suggest}' property getter instead.")
|
135
|
+
|
136
|
+
def __getitem__(self, key: str) -> Any:
|
137
|
+
RegistrationContactSettingsAdminContact.__key_warning(key)
|
138
|
+
return super().__getitem__(key)
|
139
|
+
|
140
|
+
def get(self, key: str, default = None) -> Any:
|
141
|
+
RegistrationContactSettingsAdminContact.__key_warning(key)
|
142
|
+
return super().get(key, default)
|
143
|
+
|
144
|
+
def __init__(__self__, *,
|
145
|
+
email: str,
|
146
|
+
phone_number: str,
|
147
|
+
postal_address: 'outputs.RegistrationContactSettingsAdminContactPostalAddress',
|
148
|
+
fax_number: Optional[str] = None):
|
149
|
+
"""
|
150
|
+
:param str email: Required. Email address of the contact.
|
151
|
+
:param str phone_number: Required. Phone number of the contact in international format. For example, "+1-800-555-0123".
|
152
|
+
:param 'RegistrationContactSettingsAdminContactPostalAddressArgs' postal_address: Required. Postal address of the contact.
|
153
|
+
Structure is documented below.
|
154
|
+
:param str fax_number: Fax number of the contact in international format. For example, "+1-800-555-0123".
|
155
|
+
"""
|
156
|
+
pulumi.set(__self__, "email", email)
|
157
|
+
pulumi.set(__self__, "phone_number", phone_number)
|
158
|
+
pulumi.set(__self__, "postal_address", postal_address)
|
159
|
+
if fax_number is not None:
|
160
|
+
pulumi.set(__self__, "fax_number", fax_number)
|
161
|
+
|
162
|
+
@property
|
163
|
+
@pulumi.getter
|
164
|
+
def email(self) -> str:
|
165
|
+
"""
|
166
|
+
Required. Email address of the contact.
|
167
|
+
"""
|
168
|
+
return pulumi.get(self, "email")
|
169
|
+
|
170
|
+
@property
|
171
|
+
@pulumi.getter(name="phoneNumber")
|
172
|
+
def phone_number(self) -> str:
|
173
|
+
"""
|
174
|
+
Required. Phone number of the contact in international format. For example, "+1-800-555-0123".
|
175
|
+
"""
|
176
|
+
return pulumi.get(self, "phone_number")
|
177
|
+
|
178
|
+
@property
|
179
|
+
@pulumi.getter(name="postalAddress")
|
180
|
+
def postal_address(self) -> 'outputs.RegistrationContactSettingsAdminContactPostalAddress':
|
181
|
+
"""
|
182
|
+
Required. Postal address of the contact.
|
183
|
+
Structure is documented below.
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "postal_address")
|
186
|
+
|
187
|
+
@property
|
188
|
+
@pulumi.getter(name="faxNumber")
|
189
|
+
def fax_number(self) -> Optional[str]:
|
190
|
+
"""
|
191
|
+
Fax number of the contact in international format. For example, "+1-800-555-0123".
|
192
|
+
"""
|
193
|
+
return pulumi.get(self, "fax_number")
|
194
|
+
|
195
|
+
|
196
|
+
@pulumi.output_type
|
197
|
+
class RegistrationContactSettingsAdminContactPostalAddress(dict):
|
198
|
+
@staticmethod
|
199
|
+
def __key_warning(key: str):
|
200
|
+
suggest = None
|
201
|
+
if key == "regionCode":
|
202
|
+
suggest = "region_code"
|
203
|
+
elif key == "addressLines":
|
204
|
+
suggest = "address_lines"
|
205
|
+
elif key == "administrativeArea":
|
206
|
+
suggest = "administrative_area"
|
207
|
+
elif key == "postalCode":
|
208
|
+
suggest = "postal_code"
|
209
|
+
|
210
|
+
if suggest:
|
211
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationContactSettingsAdminContactPostalAddress. Access the value via the '{suggest}' property getter instead.")
|
212
|
+
|
213
|
+
def __getitem__(self, key: str) -> Any:
|
214
|
+
RegistrationContactSettingsAdminContactPostalAddress.__key_warning(key)
|
215
|
+
return super().__getitem__(key)
|
216
|
+
|
217
|
+
def get(self, key: str, default = None) -> Any:
|
218
|
+
RegistrationContactSettingsAdminContactPostalAddress.__key_warning(key)
|
219
|
+
return super().get(key, default)
|
220
|
+
|
221
|
+
def __init__(__self__, *,
|
222
|
+
region_code: str,
|
223
|
+
address_lines: Optional[Sequence[str]] = None,
|
224
|
+
administrative_area: Optional[str] = None,
|
225
|
+
locality: Optional[str] = None,
|
226
|
+
organization: Optional[str] = None,
|
227
|
+
postal_code: Optional[str] = None,
|
228
|
+
recipients: Optional[Sequence[str]] = None):
|
229
|
+
"""
|
230
|
+
:param str region_code: Required. CLDR region code of the country/region of the address. This is never inferred and it is up to the user to
|
231
|
+
ensure the value is correct. See https://cldr.unicode.org/ and
|
232
|
+
https://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland.
|
233
|
+
:param Sequence[str] address_lines: Unstructured address lines describing the lower levels of an address.
|
234
|
+
Because values in addressLines do not have type information and may sometimes contain multiple values in a single
|
235
|
+
field (e.g. "Austin, TX"), it is important that the line order is clear. The order of address lines should be
|
236
|
+
"envelope order" for the country/region of the address. In places where this can vary (e.g. Japan), address_language
|
237
|
+
is used to make it explicit (e.g. "ja" for large-to-small ordering and "ja-Latn" or "en" for small-to-large). This way,
|
238
|
+
the most specific line of an address can be selected based on the language.
|
239
|
+
:param str administrative_area: Highest administrative subdivision which is used for postal addresses of a country or region. For example, this can be a state,
|
240
|
+
a province, an oblast, or a prefecture. Specifically, for Spain this is the province and not the autonomous community
|
241
|
+
(e.g. "Barcelona" and not "Catalonia"). Many countries don't use an administrative area in postal addresses. E.g. in Switzerland
|
242
|
+
this should be left unpopulated.
|
243
|
+
:param str locality: Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world
|
244
|
+
where localities are not well defined or do not fit into this structure well, leave locality empty and use addressLines.
|
245
|
+
:param str organization: The name of the organization at the address.
|
246
|
+
:param str postal_code: Postal code of the address. Not all countries use or require postal codes to be present, but where they are used,
|
247
|
+
they may trigger additional validation with other parts of the address (e.g. state/zip validation in the U.S.A.).
|
248
|
+
:param Sequence[str] recipients: The recipient at the address. This field may, under certain circumstances, contain multiline information. For example,
|
249
|
+
it might contain "care of" information.
|
250
|
+
|
251
|
+
- - -
|
252
|
+
"""
|
253
|
+
pulumi.set(__self__, "region_code", region_code)
|
254
|
+
if address_lines is not None:
|
255
|
+
pulumi.set(__self__, "address_lines", address_lines)
|
256
|
+
if administrative_area is not None:
|
257
|
+
pulumi.set(__self__, "administrative_area", administrative_area)
|
258
|
+
if locality is not None:
|
259
|
+
pulumi.set(__self__, "locality", locality)
|
260
|
+
if organization is not None:
|
261
|
+
pulumi.set(__self__, "organization", organization)
|
262
|
+
if postal_code is not None:
|
263
|
+
pulumi.set(__self__, "postal_code", postal_code)
|
264
|
+
if recipients is not None:
|
265
|
+
pulumi.set(__self__, "recipients", recipients)
|
266
|
+
|
267
|
+
@property
|
268
|
+
@pulumi.getter(name="regionCode")
|
269
|
+
def region_code(self) -> str:
|
270
|
+
"""
|
271
|
+
Required. CLDR region code of the country/region of the address. This is never inferred and it is up to the user to
|
272
|
+
ensure the value is correct. See https://cldr.unicode.org/ and
|
273
|
+
https://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "region_code")
|
276
|
+
|
277
|
+
@property
|
278
|
+
@pulumi.getter(name="addressLines")
|
279
|
+
def address_lines(self) -> Optional[Sequence[str]]:
|
280
|
+
"""
|
281
|
+
Unstructured address lines describing the lower levels of an address.
|
282
|
+
Because values in addressLines do not have type information and may sometimes contain multiple values in a single
|
283
|
+
field (e.g. "Austin, TX"), it is important that the line order is clear. The order of address lines should be
|
284
|
+
"envelope order" for the country/region of the address. In places where this can vary (e.g. Japan), address_language
|
285
|
+
is used to make it explicit (e.g. "ja" for large-to-small ordering and "ja-Latn" or "en" for small-to-large). This way,
|
286
|
+
the most specific line of an address can be selected based on the language.
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "address_lines")
|
289
|
+
|
290
|
+
@property
|
291
|
+
@pulumi.getter(name="administrativeArea")
|
292
|
+
def administrative_area(self) -> Optional[str]:
|
293
|
+
"""
|
294
|
+
Highest administrative subdivision which is used for postal addresses of a country or region. For example, this can be a state,
|
295
|
+
a province, an oblast, or a prefecture. Specifically, for Spain this is the province and not the autonomous community
|
296
|
+
(e.g. "Barcelona" and not "Catalonia"). Many countries don't use an administrative area in postal addresses. E.g. in Switzerland
|
297
|
+
this should be left unpopulated.
|
298
|
+
"""
|
299
|
+
return pulumi.get(self, "administrative_area")
|
300
|
+
|
301
|
+
@property
|
302
|
+
@pulumi.getter
|
303
|
+
def locality(self) -> Optional[str]:
|
304
|
+
"""
|
305
|
+
Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world
|
306
|
+
where localities are not well defined or do not fit into this structure well, leave locality empty and use addressLines.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "locality")
|
309
|
+
|
310
|
+
@property
|
311
|
+
@pulumi.getter
|
312
|
+
def organization(self) -> Optional[str]:
|
313
|
+
"""
|
314
|
+
The name of the organization at the address.
|
315
|
+
"""
|
316
|
+
return pulumi.get(self, "organization")
|
317
|
+
|
318
|
+
@property
|
319
|
+
@pulumi.getter(name="postalCode")
|
320
|
+
def postal_code(self) -> Optional[str]:
|
321
|
+
"""
|
322
|
+
Postal code of the address. Not all countries use or require postal codes to be present, but where they are used,
|
323
|
+
they may trigger additional validation with other parts of the address (e.g. state/zip validation in the U.S.A.).
|
324
|
+
"""
|
325
|
+
return pulumi.get(self, "postal_code")
|
326
|
+
|
327
|
+
@property
|
328
|
+
@pulumi.getter
|
329
|
+
def recipients(self) -> Optional[Sequence[str]]:
|
330
|
+
"""
|
331
|
+
The recipient at the address. This field may, under certain circumstances, contain multiline information. For example,
|
332
|
+
it might contain "care of" information.
|
333
|
+
|
334
|
+
- - -
|
335
|
+
"""
|
336
|
+
return pulumi.get(self, "recipients")
|
337
|
+
|
338
|
+
|
339
|
+
@pulumi.output_type
|
340
|
+
class RegistrationContactSettingsRegistrantContact(dict):
|
341
|
+
@staticmethod
|
342
|
+
def __key_warning(key: str):
|
343
|
+
suggest = None
|
344
|
+
if key == "phoneNumber":
|
345
|
+
suggest = "phone_number"
|
346
|
+
elif key == "postalAddress":
|
347
|
+
suggest = "postal_address"
|
348
|
+
elif key == "faxNumber":
|
349
|
+
suggest = "fax_number"
|
350
|
+
|
351
|
+
if suggest:
|
352
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationContactSettingsRegistrantContact. Access the value via the '{suggest}' property getter instead.")
|
353
|
+
|
354
|
+
def __getitem__(self, key: str) -> Any:
|
355
|
+
RegistrationContactSettingsRegistrantContact.__key_warning(key)
|
356
|
+
return super().__getitem__(key)
|
357
|
+
|
358
|
+
def get(self, key: str, default = None) -> Any:
|
359
|
+
RegistrationContactSettingsRegistrantContact.__key_warning(key)
|
360
|
+
return super().get(key, default)
|
361
|
+
|
362
|
+
def __init__(__self__, *,
|
363
|
+
email: str,
|
364
|
+
phone_number: str,
|
365
|
+
postal_address: 'outputs.RegistrationContactSettingsRegistrantContactPostalAddress',
|
366
|
+
fax_number: Optional[str] = None):
|
367
|
+
"""
|
368
|
+
:param str email: Required. Email address of the contact.
|
369
|
+
:param str phone_number: Required. Phone number of the contact in international format. For example, "+1-800-555-0123".
|
370
|
+
:param 'RegistrationContactSettingsRegistrantContactPostalAddressArgs' postal_address: Required. Postal address of the contact.
|
371
|
+
Structure is documented below.
|
372
|
+
:param str fax_number: Fax number of the contact in international format. For example, "+1-800-555-0123".
|
373
|
+
"""
|
374
|
+
pulumi.set(__self__, "email", email)
|
375
|
+
pulumi.set(__self__, "phone_number", phone_number)
|
376
|
+
pulumi.set(__self__, "postal_address", postal_address)
|
377
|
+
if fax_number is not None:
|
378
|
+
pulumi.set(__self__, "fax_number", fax_number)
|
379
|
+
|
380
|
+
@property
|
381
|
+
@pulumi.getter
|
382
|
+
def email(self) -> str:
|
383
|
+
"""
|
384
|
+
Required. Email address of the contact.
|
385
|
+
"""
|
386
|
+
return pulumi.get(self, "email")
|
387
|
+
|
388
|
+
@property
|
389
|
+
@pulumi.getter(name="phoneNumber")
|
390
|
+
def phone_number(self) -> str:
|
391
|
+
"""
|
392
|
+
Required. Phone number of the contact in international format. For example, "+1-800-555-0123".
|
393
|
+
"""
|
394
|
+
return pulumi.get(self, "phone_number")
|
395
|
+
|
396
|
+
@property
|
397
|
+
@pulumi.getter(name="postalAddress")
|
398
|
+
def postal_address(self) -> 'outputs.RegistrationContactSettingsRegistrantContactPostalAddress':
|
399
|
+
"""
|
400
|
+
Required. Postal address of the contact.
|
401
|
+
Structure is documented below.
|
402
|
+
"""
|
403
|
+
return pulumi.get(self, "postal_address")
|
404
|
+
|
405
|
+
@property
|
406
|
+
@pulumi.getter(name="faxNumber")
|
407
|
+
def fax_number(self) -> Optional[str]:
|
408
|
+
"""
|
409
|
+
Fax number of the contact in international format. For example, "+1-800-555-0123".
|
410
|
+
"""
|
411
|
+
return pulumi.get(self, "fax_number")
|
412
|
+
|
413
|
+
|
414
|
+
@pulumi.output_type
|
415
|
+
class RegistrationContactSettingsRegistrantContactPostalAddress(dict):
|
416
|
+
@staticmethod
|
417
|
+
def __key_warning(key: str):
|
418
|
+
suggest = None
|
419
|
+
if key == "regionCode":
|
420
|
+
suggest = "region_code"
|
421
|
+
elif key == "addressLines":
|
422
|
+
suggest = "address_lines"
|
423
|
+
elif key == "administrativeArea":
|
424
|
+
suggest = "administrative_area"
|
425
|
+
elif key == "postalCode":
|
426
|
+
suggest = "postal_code"
|
427
|
+
|
428
|
+
if suggest:
|
429
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationContactSettingsRegistrantContactPostalAddress. Access the value via the '{suggest}' property getter instead.")
|
430
|
+
|
431
|
+
def __getitem__(self, key: str) -> Any:
|
432
|
+
RegistrationContactSettingsRegistrantContactPostalAddress.__key_warning(key)
|
433
|
+
return super().__getitem__(key)
|
434
|
+
|
435
|
+
def get(self, key: str, default = None) -> Any:
|
436
|
+
RegistrationContactSettingsRegistrantContactPostalAddress.__key_warning(key)
|
437
|
+
return super().get(key, default)
|
438
|
+
|
439
|
+
def __init__(__self__, *,
|
440
|
+
region_code: str,
|
441
|
+
address_lines: Optional[Sequence[str]] = None,
|
442
|
+
administrative_area: Optional[str] = None,
|
443
|
+
locality: Optional[str] = None,
|
444
|
+
organization: Optional[str] = None,
|
445
|
+
postal_code: Optional[str] = None,
|
446
|
+
recipients: Optional[Sequence[str]] = None):
|
447
|
+
"""
|
448
|
+
:param str region_code: Required. CLDR region code of the country/region of the address. This is never inferred and it is up to the user to
|
449
|
+
ensure the value is correct. See https://cldr.unicode.org/ and
|
450
|
+
https://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland.
|
451
|
+
:param Sequence[str] address_lines: Unstructured address lines describing the lower levels of an address.
|
452
|
+
Because values in addressLines do not have type information and may sometimes contain multiple values in a single
|
453
|
+
field (e.g. "Austin, TX"), it is important that the line order is clear. The order of address lines should be
|
454
|
+
"envelope order" for the country/region of the address. In places where this can vary (e.g. Japan), address_language
|
455
|
+
is used to make it explicit (e.g. "ja" for large-to-small ordering and "ja-Latn" or "en" for small-to-large). This way,
|
456
|
+
the most specific line of an address can be selected based on the language.
|
457
|
+
:param str administrative_area: Highest administrative subdivision which is used for postal addresses of a country or region. For example, this can be a state,
|
458
|
+
a province, an oblast, or a prefecture. Specifically, for Spain this is the province and not the autonomous community
|
459
|
+
(e.g. "Barcelona" and not "Catalonia"). Many countries don't use an administrative area in postal addresses. E.g. in Switzerland
|
460
|
+
this should be left unpopulated.
|
461
|
+
:param str locality: Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world
|
462
|
+
where localities are not well defined or do not fit into this structure well, leave locality empty and use addressLines.
|
463
|
+
:param str organization: The name of the organization at the address.
|
464
|
+
:param str postal_code: Postal code of the address. Not all countries use or require postal codes to be present, but where they are used,
|
465
|
+
they may trigger additional validation with other parts of the address (e.g. state/zip validation in the U.S.A.).
|
466
|
+
:param Sequence[str] recipients: The recipient at the address. This field may, under certain circumstances, contain multiline information. For example,
|
467
|
+
it might contain "care of" information.
|
468
|
+
|
469
|
+
- - -
|
470
|
+
"""
|
471
|
+
pulumi.set(__self__, "region_code", region_code)
|
472
|
+
if address_lines is not None:
|
473
|
+
pulumi.set(__self__, "address_lines", address_lines)
|
474
|
+
if administrative_area is not None:
|
475
|
+
pulumi.set(__self__, "administrative_area", administrative_area)
|
476
|
+
if locality is not None:
|
477
|
+
pulumi.set(__self__, "locality", locality)
|
478
|
+
if organization is not None:
|
479
|
+
pulumi.set(__self__, "organization", organization)
|
480
|
+
if postal_code is not None:
|
481
|
+
pulumi.set(__self__, "postal_code", postal_code)
|
482
|
+
if recipients is not None:
|
483
|
+
pulumi.set(__self__, "recipients", recipients)
|
484
|
+
|
485
|
+
@property
|
486
|
+
@pulumi.getter(name="regionCode")
|
487
|
+
def region_code(self) -> str:
|
488
|
+
"""
|
489
|
+
Required. CLDR region code of the country/region of the address. This is never inferred and it is up to the user to
|
490
|
+
ensure the value is correct. See https://cldr.unicode.org/ and
|
491
|
+
https://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland.
|
492
|
+
"""
|
493
|
+
return pulumi.get(self, "region_code")
|
494
|
+
|
495
|
+
@property
|
496
|
+
@pulumi.getter(name="addressLines")
|
497
|
+
def address_lines(self) -> Optional[Sequence[str]]:
|
498
|
+
"""
|
499
|
+
Unstructured address lines describing the lower levels of an address.
|
500
|
+
Because values in addressLines do not have type information and may sometimes contain multiple values in a single
|
501
|
+
field (e.g. "Austin, TX"), it is important that the line order is clear. The order of address lines should be
|
502
|
+
"envelope order" for the country/region of the address. In places where this can vary (e.g. Japan), address_language
|
503
|
+
is used to make it explicit (e.g. "ja" for large-to-small ordering and "ja-Latn" or "en" for small-to-large). This way,
|
504
|
+
the most specific line of an address can be selected based on the language.
|
505
|
+
"""
|
506
|
+
return pulumi.get(self, "address_lines")
|
507
|
+
|
508
|
+
@property
|
509
|
+
@pulumi.getter(name="administrativeArea")
|
510
|
+
def administrative_area(self) -> Optional[str]:
|
511
|
+
"""
|
512
|
+
Highest administrative subdivision which is used for postal addresses of a country or region. For example, this can be a state,
|
513
|
+
a province, an oblast, or a prefecture. Specifically, for Spain this is the province and not the autonomous community
|
514
|
+
(e.g. "Barcelona" and not "Catalonia"). Many countries don't use an administrative area in postal addresses. E.g. in Switzerland
|
515
|
+
this should be left unpopulated.
|
516
|
+
"""
|
517
|
+
return pulumi.get(self, "administrative_area")
|
518
|
+
|
519
|
+
@property
|
520
|
+
@pulumi.getter
|
521
|
+
def locality(self) -> Optional[str]:
|
522
|
+
"""
|
523
|
+
Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world
|
524
|
+
where localities are not well defined or do not fit into this structure well, leave locality empty and use addressLines.
|
525
|
+
"""
|
526
|
+
return pulumi.get(self, "locality")
|
527
|
+
|
528
|
+
@property
|
529
|
+
@pulumi.getter
|
530
|
+
def organization(self) -> Optional[str]:
|
531
|
+
"""
|
532
|
+
The name of the organization at the address.
|
533
|
+
"""
|
534
|
+
return pulumi.get(self, "organization")
|
535
|
+
|
536
|
+
@property
|
537
|
+
@pulumi.getter(name="postalCode")
|
538
|
+
def postal_code(self) -> Optional[str]:
|
539
|
+
"""
|
540
|
+
Postal code of the address. Not all countries use or require postal codes to be present, but where they are used,
|
541
|
+
they may trigger additional validation with other parts of the address (e.g. state/zip validation in the U.S.A.).
|
542
|
+
"""
|
543
|
+
return pulumi.get(self, "postal_code")
|
544
|
+
|
545
|
+
@property
|
546
|
+
@pulumi.getter
|
547
|
+
def recipients(self) -> Optional[Sequence[str]]:
|
548
|
+
"""
|
549
|
+
The recipient at the address. This field may, under certain circumstances, contain multiline information. For example,
|
550
|
+
it might contain "care of" information.
|
551
|
+
|
552
|
+
- - -
|
553
|
+
"""
|
554
|
+
return pulumi.get(self, "recipients")
|
555
|
+
|
556
|
+
|
557
|
+
@pulumi.output_type
|
558
|
+
class RegistrationContactSettingsTechnicalContact(dict):
|
559
|
+
@staticmethod
|
560
|
+
def __key_warning(key: str):
|
561
|
+
suggest = None
|
562
|
+
if key == "phoneNumber":
|
563
|
+
suggest = "phone_number"
|
564
|
+
elif key == "postalAddress":
|
565
|
+
suggest = "postal_address"
|
566
|
+
elif key == "faxNumber":
|
567
|
+
suggest = "fax_number"
|
568
|
+
|
569
|
+
if suggest:
|
570
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationContactSettingsTechnicalContact. Access the value via the '{suggest}' property getter instead.")
|
571
|
+
|
572
|
+
def __getitem__(self, key: str) -> Any:
|
573
|
+
RegistrationContactSettingsTechnicalContact.__key_warning(key)
|
574
|
+
return super().__getitem__(key)
|
575
|
+
|
576
|
+
def get(self, key: str, default = None) -> Any:
|
577
|
+
RegistrationContactSettingsTechnicalContact.__key_warning(key)
|
578
|
+
return super().get(key, default)
|
579
|
+
|
580
|
+
def __init__(__self__, *,
|
581
|
+
email: str,
|
582
|
+
phone_number: str,
|
583
|
+
postal_address: 'outputs.RegistrationContactSettingsTechnicalContactPostalAddress',
|
584
|
+
fax_number: Optional[str] = None):
|
585
|
+
"""
|
586
|
+
:param str email: Required. Email address of the contact.
|
587
|
+
:param str phone_number: Required. Phone number of the contact in international format. For example, "+1-800-555-0123".
|
588
|
+
:param 'RegistrationContactSettingsTechnicalContactPostalAddressArgs' postal_address: Required. Postal address of the contact.
|
589
|
+
Structure is documented below.
|
590
|
+
:param str fax_number: Fax number of the contact in international format. For example, "+1-800-555-0123".
|
591
|
+
"""
|
592
|
+
pulumi.set(__self__, "email", email)
|
593
|
+
pulumi.set(__self__, "phone_number", phone_number)
|
594
|
+
pulumi.set(__self__, "postal_address", postal_address)
|
595
|
+
if fax_number is not None:
|
596
|
+
pulumi.set(__self__, "fax_number", fax_number)
|
597
|
+
|
598
|
+
@property
|
599
|
+
@pulumi.getter
|
600
|
+
def email(self) -> str:
|
601
|
+
"""
|
602
|
+
Required. Email address of the contact.
|
603
|
+
"""
|
604
|
+
return pulumi.get(self, "email")
|
605
|
+
|
606
|
+
@property
|
607
|
+
@pulumi.getter(name="phoneNumber")
|
608
|
+
def phone_number(self) -> str:
|
609
|
+
"""
|
610
|
+
Required. Phone number of the contact in international format. For example, "+1-800-555-0123".
|
611
|
+
"""
|
612
|
+
return pulumi.get(self, "phone_number")
|
613
|
+
|
614
|
+
@property
|
615
|
+
@pulumi.getter(name="postalAddress")
|
616
|
+
def postal_address(self) -> 'outputs.RegistrationContactSettingsTechnicalContactPostalAddress':
|
617
|
+
"""
|
618
|
+
Required. Postal address of the contact.
|
619
|
+
Structure is documented below.
|
620
|
+
"""
|
621
|
+
return pulumi.get(self, "postal_address")
|
622
|
+
|
623
|
+
@property
|
624
|
+
@pulumi.getter(name="faxNumber")
|
625
|
+
def fax_number(self) -> Optional[str]:
|
626
|
+
"""
|
627
|
+
Fax number of the contact in international format. For example, "+1-800-555-0123".
|
628
|
+
"""
|
629
|
+
return pulumi.get(self, "fax_number")
|
630
|
+
|
631
|
+
|
632
|
+
@pulumi.output_type
|
633
|
+
class RegistrationContactSettingsTechnicalContactPostalAddress(dict):
|
634
|
+
@staticmethod
|
635
|
+
def __key_warning(key: str):
|
636
|
+
suggest = None
|
637
|
+
if key == "regionCode":
|
638
|
+
suggest = "region_code"
|
639
|
+
elif key == "addressLines":
|
640
|
+
suggest = "address_lines"
|
641
|
+
elif key == "administrativeArea":
|
642
|
+
suggest = "administrative_area"
|
643
|
+
elif key == "postalCode":
|
644
|
+
suggest = "postal_code"
|
645
|
+
|
646
|
+
if suggest:
|
647
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationContactSettingsTechnicalContactPostalAddress. Access the value via the '{suggest}' property getter instead.")
|
648
|
+
|
649
|
+
def __getitem__(self, key: str) -> Any:
|
650
|
+
RegistrationContactSettingsTechnicalContactPostalAddress.__key_warning(key)
|
651
|
+
return super().__getitem__(key)
|
652
|
+
|
653
|
+
def get(self, key: str, default = None) -> Any:
|
654
|
+
RegistrationContactSettingsTechnicalContactPostalAddress.__key_warning(key)
|
655
|
+
return super().get(key, default)
|
656
|
+
|
657
|
+
def __init__(__self__, *,
|
658
|
+
region_code: str,
|
659
|
+
address_lines: Optional[Sequence[str]] = None,
|
660
|
+
administrative_area: Optional[str] = None,
|
661
|
+
locality: Optional[str] = None,
|
662
|
+
organization: Optional[str] = None,
|
663
|
+
postal_code: Optional[str] = None,
|
664
|
+
recipients: Optional[Sequence[str]] = None):
|
665
|
+
"""
|
666
|
+
:param str region_code: Required. CLDR region code of the country/region of the address. This is never inferred and it is up to the user to
|
667
|
+
ensure the value is correct. See https://cldr.unicode.org/ and
|
668
|
+
https://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland.
|
669
|
+
:param Sequence[str] address_lines: Unstructured address lines describing the lower levels of an address.
|
670
|
+
Because values in addressLines do not have type information and may sometimes contain multiple values in a single
|
671
|
+
field (e.g. "Austin, TX"), it is important that the line order is clear. The order of address lines should be
|
672
|
+
"envelope order" for the country/region of the address. In places where this can vary (e.g. Japan), address_language
|
673
|
+
is used to make it explicit (e.g. "ja" for large-to-small ordering and "ja-Latn" or "en" for small-to-large). This way,
|
674
|
+
the most specific line of an address can be selected based on the language.
|
675
|
+
:param str administrative_area: Highest administrative subdivision which is used for postal addresses of a country or region. For example, this can be a state,
|
676
|
+
a province, an oblast, or a prefecture. Specifically, for Spain this is the province and not the autonomous community
|
677
|
+
(e.g. "Barcelona" and not "Catalonia"). Many countries don't use an administrative area in postal addresses. E.g. in Switzerland
|
678
|
+
this should be left unpopulated.
|
679
|
+
:param str locality: Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world
|
680
|
+
where localities are not well defined or do not fit into this structure well, leave locality empty and use addressLines.
|
681
|
+
:param str organization: The name of the organization at the address.
|
682
|
+
:param str postal_code: Postal code of the address. Not all countries use or require postal codes to be present, but where they are used,
|
683
|
+
they may trigger additional validation with other parts of the address (e.g. state/zip validation in the U.S.A.).
|
684
|
+
:param Sequence[str] recipients: The recipient at the address. This field may, under certain circumstances, contain multiline information. For example,
|
685
|
+
it might contain "care of" information.
|
686
|
+
|
687
|
+
- - -
|
688
|
+
"""
|
689
|
+
pulumi.set(__self__, "region_code", region_code)
|
690
|
+
if address_lines is not None:
|
691
|
+
pulumi.set(__self__, "address_lines", address_lines)
|
692
|
+
if administrative_area is not None:
|
693
|
+
pulumi.set(__self__, "administrative_area", administrative_area)
|
694
|
+
if locality is not None:
|
695
|
+
pulumi.set(__self__, "locality", locality)
|
696
|
+
if organization is not None:
|
697
|
+
pulumi.set(__self__, "organization", organization)
|
698
|
+
if postal_code is not None:
|
699
|
+
pulumi.set(__self__, "postal_code", postal_code)
|
700
|
+
if recipients is not None:
|
701
|
+
pulumi.set(__self__, "recipients", recipients)
|
702
|
+
|
703
|
+
@property
|
704
|
+
@pulumi.getter(name="regionCode")
|
705
|
+
def region_code(self) -> str:
|
706
|
+
"""
|
707
|
+
Required. CLDR region code of the country/region of the address. This is never inferred and it is up to the user to
|
708
|
+
ensure the value is correct. See https://cldr.unicode.org/ and
|
709
|
+
https://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland.
|
710
|
+
"""
|
711
|
+
return pulumi.get(self, "region_code")
|
712
|
+
|
713
|
+
@property
|
714
|
+
@pulumi.getter(name="addressLines")
|
715
|
+
def address_lines(self) -> Optional[Sequence[str]]:
|
716
|
+
"""
|
717
|
+
Unstructured address lines describing the lower levels of an address.
|
718
|
+
Because values in addressLines do not have type information and may sometimes contain multiple values in a single
|
719
|
+
field (e.g. "Austin, TX"), it is important that the line order is clear. The order of address lines should be
|
720
|
+
"envelope order" for the country/region of the address. In places where this can vary (e.g. Japan), address_language
|
721
|
+
is used to make it explicit (e.g. "ja" for large-to-small ordering and "ja-Latn" or "en" for small-to-large). This way,
|
722
|
+
the most specific line of an address can be selected based on the language.
|
723
|
+
"""
|
724
|
+
return pulumi.get(self, "address_lines")
|
725
|
+
|
726
|
+
@property
|
727
|
+
@pulumi.getter(name="administrativeArea")
|
728
|
+
def administrative_area(self) -> Optional[str]:
|
729
|
+
"""
|
730
|
+
Highest administrative subdivision which is used for postal addresses of a country or region. For example, this can be a state,
|
731
|
+
a province, an oblast, or a prefecture. Specifically, for Spain this is the province and not the autonomous community
|
732
|
+
(e.g. "Barcelona" and not "Catalonia"). Many countries don't use an administrative area in postal addresses. E.g. in Switzerland
|
733
|
+
this should be left unpopulated.
|
734
|
+
"""
|
735
|
+
return pulumi.get(self, "administrative_area")
|
736
|
+
|
737
|
+
@property
|
738
|
+
@pulumi.getter
|
739
|
+
def locality(self) -> Optional[str]:
|
740
|
+
"""
|
741
|
+
Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world
|
742
|
+
where localities are not well defined or do not fit into this structure well, leave locality empty and use addressLines.
|
743
|
+
"""
|
744
|
+
return pulumi.get(self, "locality")
|
745
|
+
|
746
|
+
@property
|
747
|
+
@pulumi.getter
|
748
|
+
def organization(self) -> Optional[str]:
|
749
|
+
"""
|
750
|
+
The name of the organization at the address.
|
751
|
+
"""
|
752
|
+
return pulumi.get(self, "organization")
|
753
|
+
|
754
|
+
@property
|
755
|
+
@pulumi.getter(name="postalCode")
|
756
|
+
def postal_code(self) -> Optional[str]:
|
757
|
+
"""
|
758
|
+
Postal code of the address. Not all countries use or require postal codes to be present, but where they are used,
|
759
|
+
they may trigger additional validation with other parts of the address (e.g. state/zip validation in the U.S.A.).
|
760
|
+
"""
|
761
|
+
return pulumi.get(self, "postal_code")
|
762
|
+
|
763
|
+
@property
|
764
|
+
@pulumi.getter
|
765
|
+
def recipients(self) -> Optional[Sequence[str]]:
|
766
|
+
"""
|
767
|
+
The recipient at the address. This field may, under certain circumstances, contain multiline information. For example,
|
768
|
+
it might contain "care of" information.
|
769
|
+
|
770
|
+
- - -
|
771
|
+
"""
|
772
|
+
return pulumi.get(self, "recipients")
|
773
|
+
|
774
|
+
|
775
|
+
@pulumi.output_type
|
776
|
+
class RegistrationDnsSettings(dict):
|
777
|
+
@staticmethod
|
778
|
+
def __key_warning(key: str):
|
779
|
+
suggest = None
|
780
|
+
if key == "customDns":
|
781
|
+
suggest = "custom_dns"
|
782
|
+
elif key == "glueRecords":
|
783
|
+
suggest = "glue_records"
|
784
|
+
|
785
|
+
if suggest:
|
786
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationDnsSettings. Access the value via the '{suggest}' property getter instead.")
|
787
|
+
|
788
|
+
def __getitem__(self, key: str) -> Any:
|
789
|
+
RegistrationDnsSettings.__key_warning(key)
|
790
|
+
return super().__getitem__(key)
|
791
|
+
|
792
|
+
def get(self, key: str, default = None) -> Any:
|
793
|
+
RegistrationDnsSettings.__key_warning(key)
|
794
|
+
return super().get(key, default)
|
795
|
+
|
796
|
+
def __init__(__self__, *,
|
797
|
+
custom_dns: Optional['outputs.RegistrationDnsSettingsCustomDns'] = None,
|
798
|
+
glue_records: Optional[Sequence['outputs.RegistrationDnsSettingsGlueRecord']] = None):
|
799
|
+
"""
|
800
|
+
:param 'RegistrationDnsSettingsCustomDnsArgs' custom_dns: Configuration for an arbitrary DNS provider.
|
801
|
+
Structure is documented below.
|
802
|
+
:param Sequence['RegistrationDnsSettingsGlueRecordArgs'] glue_records: The list of glue records for this Registration. Commonly empty.
|
803
|
+
Structure is documented below.
|
804
|
+
"""
|
805
|
+
if custom_dns is not None:
|
806
|
+
pulumi.set(__self__, "custom_dns", custom_dns)
|
807
|
+
if glue_records is not None:
|
808
|
+
pulumi.set(__self__, "glue_records", glue_records)
|
809
|
+
|
810
|
+
@property
|
811
|
+
@pulumi.getter(name="customDns")
|
812
|
+
def custom_dns(self) -> Optional['outputs.RegistrationDnsSettingsCustomDns']:
|
813
|
+
"""
|
814
|
+
Configuration for an arbitrary DNS provider.
|
815
|
+
Structure is documented below.
|
816
|
+
"""
|
817
|
+
return pulumi.get(self, "custom_dns")
|
818
|
+
|
819
|
+
@property
|
820
|
+
@pulumi.getter(name="glueRecords")
|
821
|
+
def glue_records(self) -> Optional[Sequence['outputs.RegistrationDnsSettingsGlueRecord']]:
|
822
|
+
"""
|
823
|
+
The list of glue records for this Registration. Commonly empty.
|
824
|
+
Structure is documented below.
|
825
|
+
"""
|
826
|
+
return pulumi.get(self, "glue_records")
|
827
|
+
|
828
|
+
|
829
|
+
@pulumi.output_type
|
830
|
+
class RegistrationDnsSettingsCustomDns(dict):
|
831
|
+
@staticmethod
|
832
|
+
def __key_warning(key: str):
|
833
|
+
suggest = None
|
834
|
+
if key == "nameServers":
|
835
|
+
suggest = "name_servers"
|
836
|
+
elif key == "dsRecords":
|
837
|
+
suggest = "ds_records"
|
838
|
+
|
839
|
+
if suggest:
|
840
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationDnsSettingsCustomDns. Access the value via the '{suggest}' property getter instead.")
|
841
|
+
|
842
|
+
def __getitem__(self, key: str) -> Any:
|
843
|
+
RegistrationDnsSettingsCustomDns.__key_warning(key)
|
844
|
+
return super().__getitem__(key)
|
845
|
+
|
846
|
+
def get(self, key: str, default = None) -> Any:
|
847
|
+
RegistrationDnsSettingsCustomDns.__key_warning(key)
|
848
|
+
return super().get(key, default)
|
849
|
+
|
850
|
+
def __init__(__self__, *,
|
851
|
+
name_servers: Sequence[str],
|
852
|
+
ds_records: Optional[Sequence['outputs.RegistrationDnsSettingsCustomDnsDsRecord']] = None):
|
853
|
+
"""
|
854
|
+
:param Sequence[str] name_servers: Required. A list of name servers that store the DNS zone for this domain. Each name server is a domain
|
855
|
+
name, with Unicode domain names expressed in Punycode format.
|
856
|
+
:param Sequence['RegistrationDnsSettingsCustomDnsDsRecordArgs'] ds_records: The list of DS records for this domain, which are used to enable DNSSEC. The domain's DNS provider can provide
|
857
|
+
the values to set here. If this field is empty, DNSSEC is disabled.
|
858
|
+
Structure is documented below.
|
859
|
+
"""
|
860
|
+
pulumi.set(__self__, "name_servers", name_servers)
|
861
|
+
if ds_records is not None:
|
862
|
+
pulumi.set(__self__, "ds_records", ds_records)
|
863
|
+
|
864
|
+
@property
|
865
|
+
@pulumi.getter(name="nameServers")
|
866
|
+
def name_servers(self) -> Sequence[str]:
|
867
|
+
"""
|
868
|
+
Required. A list of name servers that store the DNS zone for this domain. Each name server is a domain
|
869
|
+
name, with Unicode domain names expressed in Punycode format.
|
870
|
+
"""
|
871
|
+
return pulumi.get(self, "name_servers")
|
872
|
+
|
873
|
+
@property
|
874
|
+
@pulumi.getter(name="dsRecords")
|
875
|
+
def ds_records(self) -> Optional[Sequence['outputs.RegistrationDnsSettingsCustomDnsDsRecord']]:
|
876
|
+
"""
|
877
|
+
The list of DS records for this domain, which are used to enable DNSSEC. The domain's DNS provider can provide
|
878
|
+
the values to set here. If this field is empty, DNSSEC is disabled.
|
879
|
+
Structure is documented below.
|
880
|
+
"""
|
881
|
+
return pulumi.get(self, "ds_records")
|
882
|
+
|
883
|
+
|
884
|
+
@pulumi.output_type
|
885
|
+
class RegistrationDnsSettingsCustomDnsDsRecord(dict):
|
886
|
+
@staticmethod
|
887
|
+
def __key_warning(key: str):
|
888
|
+
suggest = None
|
889
|
+
if key == "digestType":
|
890
|
+
suggest = "digest_type"
|
891
|
+
elif key == "keyTag":
|
892
|
+
suggest = "key_tag"
|
893
|
+
|
894
|
+
if suggest:
|
895
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationDnsSettingsCustomDnsDsRecord. Access the value via the '{suggest}' property getter instead.")
|
896
|
+
|
897
|
+
def __getitem__(self, key: str) -> Any:
|
898
|
+
RegistrationDnsSettingsCustomDnsDsRecord.__key_warning(key)
|
899
|
+
return super().__getitem__(key)
|
900
|
+
|
901
|
+
def get(self, key: str, default = None) -> Any:
|
902
|
+
RegistrationDnsSettingsCustomDnsDsRecord.__key_warning(key)
|
903
|
+
return super().get(key, default)
|
904
|
+
|
905
|
+
def __init__(__self__, *,
|
906
|
+
algorithm: Optional[str] = None,
|
907
|
+
digest: Optional[str] = None,
|
908
|
+
digest_type: Optional[str] = None,
|
909
|
+
key_tag: Optional[int] = None):
|
910
|
+
"""
|
911
|
+
:param str algorithm: The algorithm used to generate the referenced DNSKEY.
|
912
|
+
:param str digest: The digest generated from the referenced DNSKEY.
|
913
|
+
:param str digest_type: The hash function used to generate the digest of the referenced DNSKEY.
|
914
|
+
:param int key_tag: The key tag of the record. Must be set in range 0 -- 65535.
|
915
|
+
"""
|
916
|
+
if algorithm is not None:
|
917
|
+
pulumi.set(__self__, "algorithm", algorithm)
|
918
|
+
if digest is not None:
|
919
|
+
pulumi.set(__self__, "digest", digest)
|
920
|
+
if digest_type is not None:
|
921
|
+
pulumi.set(__self__, "digest_type", digest_type)
|
922
|
+
if key_tag is not None:
|
923
|
+
pulumi.set(__self__, "key_tag", key_tag)
|
924
|
+
|
925
|
+
@property
|
926
|
+
@pulumi.getter
|
927
|
+
def algorithm(self) -> Optional[str]:
|
928
|
+
"""
|
929
|
+
The algorithm used to generate the referenced DNSKEY.
|
930
|
+
"""
|
931
|
+
return pulumi.get(self, "algorithm")
|
932
|
+
|
933
|
+
@property
|
934
|
+
@pulumi.getter
|
935
|
+
def digest(self) -> Optional[str]:
|
936
|
+
"""
|
937
|
+
The digest generated from the referenced DNSKEY.
|
938
|
+
"""
|
939
|
+
return pulumi.get(self, "digest")
|
940
|
+
|
941
|
+
@property
|
942
|
+
@pulumi.getter(name="digestType")
|
943
|
+
def digest_type(self) -> Optional[str]:
|
944
|
+
"""
|
945
|
+
The hash function used to generate the digest of the referenced DNSKEY.
|
946
|
+
"""
|
947
|
+
return pulumi.get(self, "digest_type")
|
948
|
+
|
949
|
+
@property
|
950
|
+
@pulumi.getter(name="keyTag")
|
951
|
+
def key_tag(self) -> Optional[int]:
|
952
|
+
"""
|
953
|
+
The key tag of the record. Must be set in range 0 -- 65535.
|
954
|
+
"""
|
955
|
+
return pulumi.get(self, "key_tag")
|
956
|
+
|
957
|
+
|
958
|
+
@pulumi.output_type
|
959
|
+
class RegistrationDnsSettingsGlueRecord(dict):
|
960
|
+
@staticmethod
|
961
|
+
def __key_warning(key: str):
|
962
|
+
suggest = None
|
963
|
+
if key == "hostName":
|
964
|
+
suggest = "host_name"
|
965
|
+
elif key == "ipv4Addresses":
|
966
|
+
suggest = "ipv4_addresses"
|
967
|
+
elif key == "ipv6Addresses":
|
968
|
+
suggest = "ipv6_addresses"
|
969
|
+
|
970
|
+
if suggest:
|
971
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationDnsSettingsGlueRecord. Access the value via the '{suggest}' property getter instead.")
|
972
|
+
|
973
|
+
def __getitem__(self, key: str) -> Any:
|
974
|
+
RegistrationDnsSettingsGlueRecord.__key_warning(key)
|
975
|
+
return super().__getitem__(key)
|
976
|
+
|
977
|
+
def get(self, key: str, default = None) -> Any:
|
978
|
+
RegistrationDnsSettingsGlueRecord.__key_warning(key)
|
979
|
+
return super().get(key, default)
|
980
|
+
|
981
|
+
def __init__(__self__, *,
|
982
|
+
host_name: str,
|
983
|
+
ipv4_addresses: Optional[Sequence[str]] = None,
|
984
|
+
ipv6_addresses: Optional[Sequence[str]] = None):
|
985
|
+
"""
|
986
|
+
:param str host_name: Required. Domain name of the host in Punycode format.
|
987
|
+
:param Sequence[str] ipv4_addresses: List of IPv4 addresses corresponding to this host in the standard decimal format (e.g. 198.51.100.1).
|
988
|
+
At least one of ipv4_address and ipv6_address must be set.
|
989
|
+
:param Sequence[str] ipv6_addresses: List of IPv4 addresses corresponding to this host in the standard decimal format (e.g. 198.51.100.1).
|
990
|
+
At least one of ipv4_address and ipv6_address must be set.
|
991
|
+
"""
|
992
|
+
pulumi.set(__self__, "host_name", host_name)
|
993
|
+
if ipv4_addresses is not None:
|
994
|
+
pulumi.set(__self__, "ipv4_addresses", ipv4_addresses)
|
995
|
+
if ipv6_addresses is not None:
|
996
|
+
pulumi.set(__self__, "ipv6_addresses", ipv6_addresses)
|
997
|
+
|
998
|
+
@property
|
999
|
+
@pulumi.getter(name="hostName")
|
1000
|
+
def host_name(self) -> str:
|
1001
|
+
"""
|
1002
|
+
Required. Domain name of the host in Punycode format.
|
1003
|
+
"""
|
1004
|
+
return pulumi.get(self, "host_name")
|
1005
|
+
|
1006
|
+
@property
|
1007
|
+
@pulumi.getter(name="ipv4Addresses")
|
1008
|
+
def ipv4_addresses(self) -> Optional[Sequence[str]]:
|
1009
|
+
"""
|
1010
|
+
List of IPv4 addresses corresponding to this host in the standard decimal format (e.g. 198.51.100.1).
|
1011
|
+
At least one of ipv4_address and ipv6_address must be set.
|
1012
|
+
"""
|
1013
|
+
return pulumi.get(self, "ipv4_addresses")
|
1014
|
+
|
1015
|
+
@property
|
1016
|
+
@pulumi.getter(name="ipv6Addresses")
|
1017
|
+
def ipv6_addresses(self) -> Optional[Sequence[str]]:
|
1018
|
+
"""
|
1019
|
+
List of IPv4 addresses corresponding to this host in the standard decimal format (e.g. 198.51.100.1).
|
1020
|
+
At least one of ipv4_address and ipv6_address must be set.
|
1021
|
+
"""
|
1022
|
+
return pulumi.get(self, "ipv6_addresses")
|
1023
|
+
|
1024
|
+
|
1025
|
+
@pulumi.output_type
|
1026
|
+
class RegistrationManagementSettings(dict):
|
1027
|
+
@staticmethod
|
1028
|
+
def __key_warning(key: str):
|
1029
|
+
suggest = None
|
1030
|
+
if key == "preferredRenewalMethod":
|
1031
|
+
suggest = "preferred_renewal_method"
|
1032
|
+
elif key == "renewalMethod":
|
1033
|
+
suggest = "renewal_method"
|
1034
|
+
elif key == "transferLockState":
|
1035
|
+
suggest = "transfer_lock_state"
|
1036
|
+
|
1037
|
+
if suggest:
|
1038
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationManagementSettings. Access the value via the '{suggest}' property getter instead.")
|
1039
|
+
|
1040
|
+
def __getitem__(self, key: str) -> Any:
|
1041
|
+
RegistrationManagementSettings.__key_warning(key)
|
1042
|
+
return super().__getitem__(key)
|
1043
|
+
|
1044
|
+
def get(self, key: str, default = None) -> Any:
|
1045
|
+
RegistrationManagementSettings.__key_warning(key)
|
1046
|
+
return super().get(key, default)
|
1047
|
+
|
1048
|
+
def __init__(__self__, *,
|
1049
|
+
preferred_renewal_method: Optional[str] = None,
|
1050
|
+
renewal_method: Optional[str] = None,
|
1051
|
+
transfer_lock_state: Optional[str] = None):
|
1052
|
+
"""
|
1053
|
+
:param str preferred_renewal_method: The desired renewal method for this Registration. The actual renewalMethod is automatically updated to reflect this choice.
|
1054
|
+
If unset or equal to RENEWAL_METHOD_UNSPECIFIED, the actual renewalMethod is treated as if it were set to AUTOMATIC_RENEWAL.
|
1055
|
+
You cannot use RENEWAL_DISABLED during resource creation, and you can update the renewal status only when the Registration
|
1056
|
+
resource has state ACTIVE or SUSPENDED.
|
1057
|
+
When preferredRenewalMethod is set to AUTOMATIC_RENEWAL, the actual renewalMethod can be set to RENEWAL_DISABLED in case of
|
1058
|
+
problems with the billing account or reported domain abuse. In such cases, check the issues field on the Registration. After
|
1059
|
+
the problem is resolved, the renewalMethod is automatically updated to preferredRenewalMethod in a few hours.
|
1060
|
+
:param str renewal_method: (Output)
|
1061
|
+
Output only. The actual renewal method for this Registration. When preferredRenewalMethod is set to AUTOMATIC_RENEWAL,
|
1062
|
+
the actual renewalMethod can be equal to RENEWAL_DISABLED—for example, when there are problems with the billing account
|
1063
|
+
or reported domain abuse. In such cases, check the issues field on the Registration. After the problem is resolved, the
|
1064
|
+
renewalMethod is automatically updated to preferredRenewalMethod in a few hours.
|
1065
|
+
:param str transfer_lock_state: Controls whether the domain can be transferred to another registrar. Values are UNLOCKED or LOCKED.
|
1066
|
+
"""
|
1067
|
+
if preferred_renewal_method is not None:
|
1068
|
+
pulumi.set(__self__, "preferred_renewal_method", preferred_renewal_method)
|
1069
|
+
if renewal_method is not None:
|
1070
|
+
pulumi.set(__self__, "renewal_method", renewal_method)
|
1071
|
+
if transfer_lock_state is not None:
|
1072
|
+
pulumi.set(__self__, "transfer_lock_state", transfer_lock_state)
|
1073
|
+
|
1074
|
+
@property
|
1075
|
+
@pulumi.getter(name="preferredRenewalMethod")
|
1076
|
+
def preferred_renewal_method(self) -> Optional[str]:
|
1077
|
+
"""
|
1078
|
+
The desired renewal method for this Registration. The actual renewalMethod is automatically updated to reflect this choice.
|
1079
|
+
If unset or equal to RENEWAL_METHOD_UNSPECIFIED, the actual renewalMethod is treated as if it were set to AUTOMATIC_RENEWAL.
|
1080
|
+
You cannot use RENEWAL_DISABLED during resource creation, and you can update the renewal status only when the Registration
|
1081
|
+
resource has state ACTIVE or SUSPENDED.
|
1082
|
+
When preferredRenewalMethod is set to AUTOMATIC_RENEWAL, the actual renewalMethod can be set to RENEWAL_DISABLED in case of
|
1083
|
+
problems with the billing account or reported domain abuse. In such cases, check the issues field on the Registration. After
|
1084
|
+
the problem is resolved, the renewalMethod is automatically updated to preferredRenewalMethod in a few hours.
|
1085
|
+
"""
|
1086
|
+
return pulumi.get(self, "preferred_renewal_method")
|
1087
|
+
|
1088
|
+
@property
|
1089
|
+
@pulumi.getter(name="renewalMethod")
|
1090
|
+
def renewal_method(self) -> Optional[str]:
|
1091
|
+
"""
|
1092
|
+
(Output)
|
1093
|
+
Output only. The actual renewal method for this Registration. When preferredRenewalMethod is set to AUTOMATIC_RENEWAL,
|
1094
|
+
the actual renewalMethod can be equal to RENEWAL_DISABLED—for example, when there are problems with the billing account
|
1095
|
+
or reported domain abuse. In such cases, check the issues field on the Registration. After the problem is resolved, the
|
1096
|
+
renewalMethod is automatically updated to preferredRenewalMethod in a few hours.
|
1097
|
+
"""
|
1098
|
+
return pulumi.get(self, "renewal_method")
|
1099
|
+
|
1100
|
+
@property
|
1101
|
+
@pulumi.getter(name="transferLockState")
|
1102
|
+
def transfer_lock_state(self) -> Optional[str]:
|
1103
|
+
"""
|
1104
|
+
Controls whether the domain can be transferred to another registrar. Values are UNLOCKED or LOCKED.
|
1105
|
+
"""
|
1106
|
+
return pulumi.get(self, "transfer_lock_state")
|
1107
|
+
|
1108
|
+
|
1109
|
+
@pulumi.output_type
|
1110
|
+
class RegistrationYearlyPrice(dict):
|
1111
|
+
@staticmethod
|
1112
|
+
def __key_warning(key: str):
|
1113
|
+
suggest = None
|
1114
|
+
if key == "currencyCode":
|
1115
|
+
suggest = "currency_code"
|
1116
|
+
|
1117
|
+
if suggest:
|
1118
|
+
pulumi.log.warn(f"Key '{key}' not found in RegistrationYearlyPrice. Access the value via the '{suggest}' property getter instead.")
|
1119
|
+
|
1120
|
+
def __getitem__(self, key: str) -> Any:
|
1121
|
+
RegistrationYearlyPrice.__key_warning(key)
|
1122
|
+
return super().__getitem__(key)
|
1123
|
+
|
1124
|
+
def get(self, key: str, default = None) -> Any:
|
1125
|
+
RegistrationYearlyPrice.__key_warning(key)
|
1126
|
+
return super().get(key, default)
|
1127
|
+
|
1128
|
+
def __init__(__self__, *,
|
1129
|
+
currency_code: Optional[str] = None,
|
1130
|
+
units: Optional[str] = None):
|
1131
|
+
"""
|
1132
|
+
:param str currency_code: The three-letter currency code defined in ISO 4217.
|
1133
|
+
:param str units: The whole units of the amount. For example if currencyCode is "USD", then 1 unit is one US dollar.
|
1134
|
+
"""
|
1135
|
+
if currency_code is not None:
|
1136
|
+
pulumi.set(__self__, "currency_code", currency_code)
|
1137
|
+
if units is not None:
|
1138
|
+
pulumi.set(__self__, "units", units)
|
1139
|
+
|
1140
|
+
@property
|
1141
|
+
@pulumi.getter(name="currencyCode")
|
1142
|
+
def currency_code(self) -> Optional[str]:
|
1143
|
+
"""
|
1144
|
+
The three-letter currency code defined in ISO 4217.
|
1145
|
+
"""
|
1146
|
+
return pulumi.get(self, "currency_code")
|
1147
|
+
|
1148
|
+
@property
|
1149
|
+
@pulumi.getter
|
1150
|
+
def units(self) -> Optional[str]:
|
1151
|
+
"""
|
1152
|
+
The whole units of the amount. For example if currencyCode is "USD", then 1 unit is one US dollar.
|
1153
|
+
"""
|
1154
|
+
return pulumi.get(self, "units")
|
1155
|
+
|
1156
|
+
|