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