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.
Files changed (101) hide show
  1. pulumi_gcp/__init__.py +99 -0
  2. pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
  3. pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
  4. pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
  5. pulumi_gcp/clouddeploy/__init__.py +1 -0
  6. pulumi_gcp/clouddeploy/_inputs.py +239 -0
  7. pulumi_gcp/clouddeploy/automation.py +1103 -0
  8. pulumi_gcp/clouddeploy/outputs.py +246 -0
  9. pulumi_gcp/clouddomains/__init__.py +10 -0
  10. pulumi_gcp/clouddomains/_inputs.py +1098 -0
  11. pulumi_gcp/clouddomains/outputs.py +1156 -0
  12. pulumi_gcp/clouddomains/registration.py +1068 -0
  13. pulumi_gcp/cloudrunv2/job.py +4 -4
  14. pulumi_gcp/composer/_inputs.py +79 -1
  15. pulumi_gcp/composer/outputs.py +131 -4
  16. pulumi_gcp/compute/__init__.py +1 -0
  17. pulumi_gcp/compute/_inputs.py +180 -0
  18. pulumi_gcp/compute/get_instance_template.py +11 -1
  19. pulumi_gcp/compute/get_region_instance_template.py +11 -1
  20. pulumi_gcp/compute/get_reservation.py +212 -0
  21. pulumi_gcp/compute/instance_template.py +47 -0
  22. pulumi_gcp/compute/network_firewall_policy.py +20 -22
  23. pulumi_gcp/compute/outputs.py +325 -0
  24. pulumi_gcp/compute/region_instance_template.py +47 -0
  25. pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
  26. pulumi_gcp/compute/router_peer.py +54 -0
  27. pulumi_gcp/compute/vpn_tunnel.py +8 -4
  28. pulumi_gcp/config/__init__.pyi +2 -0
  29. pulumi_gcp/config/vars.py +4 -0
  30. pulumi_gcp/container/_inputs.py +23 -0
  31. pulumi_gcp/container/aws_node_pool.py +7 -7
  32. pulumi_gcp/container/cluster.py +68 -14
  33. pulumi_gcp/container/get_cluster.py +11 -1
  34. pulumi_gcp/container/outputs.py +49 -0
  35. pulumi_gcp/dataflow/pipeline.py +1 -1
  36. pulumi_gcp/dataproc/_inputs.py +413 -39
  37. pulumi_gcp/dataproc/metastore_service.py +63 -0
  38. pulumi_gcp/dataproc/outputs.py +461 -39
  39. pulumi_gcp/dns/__init__.py +1 -0
  40. pulumi_gcp/dns/_inputs.py +94 -0
  41. pulumi_gcp/dns/get_managed_zones.py +89 -0
  42. pulumi_gcp/dns/outputs.py +62 -0
  43. pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
  44. pulumi_gcp/filestore/__init__.py +1 -0
  45. pulumi_gcp/filestore/get_instance.py +258 -0
  46. pulumi_gcp/filestore/instance.py +7 -7
  47. pulumi_gcp/filestore/outputs.py +126 -0
  48. pulumi_gcp/gkebackup/backup_plan.py +24 -8
  49. pulumi_gcp/gkebackup/restore_plan.py +36 -12
  50. pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
  51. pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
  52. pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
  53. pulumi_gcp/gkehub/_inputs.py +502 -2
  54. pulumi_gcp/gkehub/feature.py +34 -0
  55. pulumi_gcp/gkehub/feature_membership.py +177 -0
  56. pulumi_gcp/gkehub/membership.py +18 -6
  57. pulumi_gcp/gkehub/outputs.py +502 -2
  58. pulumi_gcp/gkeonprem/_inputs.py +21 -25
  59. pulumi_gcp/gkeonprem/outputs.py +34 -25
  60. pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
  61. pulumi_gcp/integrationconnectors/__init__.py +1 -0
  62. pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
  63. pulumi_gcp/kms/_inputs.py +42 -0
  64. pulumi_gcp/kms/crypto_key.py +36 -0
  65. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  66. pulumi_gcp/kms/outputs.py +62 -0
  67. pulumi_gcp/logging/__init__.py +2 -0
  68. pulumi_gcp/logging/folder_settings.py +490 -0
  69. pulumi_gcp/logging/folder_sink.py +21 -21
  70. pulumi_gcp/logging/organization_settings.py +484 -0
  71. pulumi_gcp/logging/organization_sink.py +21 -21
  72. pulumi_gcp/logging/project_sink.py +7 -14
  73. pulumi_gcp/netapp/__init__.py +3 -0
  74. pulumi_gcp/netapp/active_directory.py +1413 -0
  75. pulumi_gcp/netapp/backup_vault.py +593 -0
  76. pulumi_gcp/netapp/kmsconfig.py +649 -0
  77. pulumi_gcp/orgpolicy/policy.py +28 -0
  78. pulumi_gcp/provider.py +20 -0
  79. pulumi_gcp/pubsub/subscription.py +29 -37
  80. pulumi_gcp/serviceaccount/account.py +47 -0
  81. pulumi_gcp/servicenetworking/connection.py +55 -1
  82. pulumi_gcp/sql/database_instance.py +2 -2
  83. pulumi_gcp/sql/ssl_cert.py +1 -1
  84. pulumi_gcp/sql/user.py +7 -7
  85. pulumi_gcp/storage/transfer_job.py +24 -5
  86. pulumi_gcp/vertex/__init__.py +3 -0
  87. pulumi_gcp/vertex/_inputs.py +339 -0
  88. pulumi_gcp/vertex/ai_feature_group.py +710 -0
  89. pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
  90. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
  91. pulumi_gcp/vertex/outputs.py +406 -0
  92. pulumi_gcp/vmwareengine/__init__.py +2 -0
  93. pulumi_gcp/vmwareengine/_inputs.py +84 -0
  94. pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
  95. pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
  96. pulumi_gcp/vmwareengine/outputs.py +146 -0
  97. pulumi_gcp/workflows/workflow.py +7 -7
  98. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
  100. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
  101. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1068 @@
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
+ from ._inputs import *
13
+
14
+ __all__ = ['RegistrationArgs', 'Registration']
15
+
16
+ @pulumi.input_type
17
+ class RegistrationArgs:
18
+ def __init__(__self__, *,
19
+ contact_settings: pulumi.Input['RegistrationContactSettingsArgs'],
20
+ domain_name: pulumi.Input[str],
21
+ location: pulumi.Input[str],
22
+ yearly_price: pulumi.Input['RegistrationYearlyPriceArgs'],
23
+ contact_notices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
24
+ dns_settings: Optional[pulumi.Input['RegistrationDnsSettingsArgs']] = None,
25
+ domain_notices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
26
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
27
+ management_settings: Optional[pulumi.Input['RegistrationManagementSettingsArgs']] = None,
28
+ project: Optional[pulumi.Input[str]] = None):
29
+ """
30
+ The set of arguments for constructing a Registration resource.
31
+ :param pulumi.Input['RegistrationContactSettingsArgs'] contact_settings: Required. Settings for contact information linked to the Registration.
32
+ Structure is documented below.
33
+ :param pulumi.Input[str] domain_name: Required. The domain name. Unicode domain names must be expressed in Punycode format.
34
+ :param pulumi.Input[str] location: The location for the resource
35
+ :param pulumi.Input['RegistrationYearlyPriceArgs'] yearly_price: Required. Yearly price to register or renew the domain. The value that should be put here can be obtained from
36
+ registrations.retrieveRegisterParameters or registrations.searchDomains calls.
37
+ Structure is documented below.
38
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] contact_notices: The list of contact notices that the caller acknowledges. Possible value is PUBLIC_CONTACT_DATA_ACKNOWLEDGEMENT
39
+ :param pulumi.Input['RegistrationDnsSettingsArgs'] dns_settings: Settings controlling the DNS configuration of the Registration.
40
+ Structure is documented below.
41
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] domain_notices: The list of domain notices that you acknowledge. Possible value is HSTS_PRELOADED
42
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Set of labels associated with the Registration.
43
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
44
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
45
+ :param pulumi.Input['RegistrationManagementSettingsArgs'] management_settings: Settings for management of the Registration, including renewal, billing, and transfer
46
+ Structure is documented below.
47
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
48
+ If it is not provided, the provider project is used.
49
+ """
50
+ pulumi.set(__self__, "contact_settings", contact_settings)
51
+ pulumi.set(__self__, "domain_name", domain_name)
52
+ pulumi.set(__self__, "location", location)
53
+ pulumi.set(__self__, "yearly_price", yearly_price)
54
+ if contact_notices is not None:
55
+ pulumi.set(__self__, "contact_notices", contact_notices)
56
+ if dns_settings is not None:
57
+ pulumi.set(__self__, "dns_settings", dns_settings)
58
+ if domain_notices is not None:
59
+ pulumi.set(__self__, "domain_notices", domain_notices)
60
+ if labels is not None:
61
+ pulumi.set(__self__, "labels", labels)
62
+ if management_settings is not None:
63
+ pulumi.set(__self__, "management_settings", management_settings)
64
+ if project is not None:
65
+ pulumi.set(__self__, "project", project)
66
+
67
+ @property
68
+ @pulumi.getter(name="contactSettings")
69
+ def contact_settings(self) -> pulumi.Input['RegistrationContactSettingsArgs']:
70
+ """
71
+ Required. Settings for contact information linked to the Registration.
72
+ Structure is documented below.
73
+ """
74
+ return pulumi.get(self, "contact_settings")
75
+
76
+ @contact_settings.setter
77
+ def contact_settings(self, value: pulumi.Input['RegistrationContactSettingsArgs']):
78
+ pulumi.set(self, "contact_settings", value)
79
+
80
+ @property
81
+ @pulumi.getter(name="domainName")
82
+ def domain_name(self) -> pulumi.Input[str]:
83
+ """
84
+ Required. The domain name. Unicode domain names must be expressed in Punycode format.
85
+ """
86
+ return pulumi.get(self, "domain_name")
87
+
88
+ @domain_name.setter
89
+ def domain_name(self, value: pulumi.Input[str]):
90
+ pulumi.set(self, "domain_name", value)
91
+
92
+ @property
93
+ @pulumi.getter
94
+ def location(self) -> pulumi.Input[str]:
95
+ """
96
+ The location for the resource
97
+ """
98
+ return pulumi.get(self, "location")
99
+
100
+ @location.setter
101
+ def location(self, value: pulumi.Input[str]):
102
+ pulumi.set(self, "location", value)
103
+
104
+ @property
105
+ @pulumi.getter(name="yearlyPrice")
106
+ def yearly_price(self) -> pulumi.Input['RegistrationYearlyPriceArgs']:
107
+ """
108
+ Required. Yearly price to register or renew the domain. The value that should be put here can be obtained from
109
+ registrations.retrieveRegisterParameters or registrations.searchDomains calls.
110
+ Structure is documented below.
111
+ """
112
+ return pulumi.get(self, "yearly_price")
113
+
114
+ @yearly_price.setter
115
+ def yearly_price(self, value: pulumi.Input['RegistrationYearlyPriceArgs']):
116
+ pulumi.set(self, "yearly_price", value)
117
+
118
+ @property
119
+ @pulumi.getter(name="contactNotices")
120
+ def contact_notices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
121
+ """
122
+ The list of contact notices that the caller acknowledges. Possible value is PUBLIC_CONTACT_DATA_ACKNOWLEDGEMENT
123
+ """
124
+ return pulumi.get(self, "contact_notices")
125
+
126
+ @contact_notices.setter
127
+ def contact_notices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
128
+ pulumi.set(self, "contact_notices", value)
129
+
130
+ @property
131
+ @pulumi.getter(name="dnsSettings")
132
+ def dns_settings(self) -> Optional[pulumi.Input['RegistrationDnsSettingsArgs']]:
133
+ """
134
+ Settings controlling the DNS configuration of the Registration.
135
+ Structure is documented below.
136
+ """
137
+ return pulumi.get(self, "dns_settings")
138
+
139
+ @dns_settings.setter
140
+ def dns_settings(self, value: Optional[pulumi.Input['RegistrationDnsSettingsArgs']]):
141
+ pulumi.set(self, "dns_settings", value)
142
+
143
+ @property
144
+ @pulumi.getter(name="domainNotices")
145
+ def domain_notices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
146
+ """
147
+ The list of domain notices that you acknowledge. Possible value is HSTS_PRELOADED
148
+ """
149
+ return pulumi.get(self, "domain_notices")
150
+
151
+ @domain_notices.setter
152
+ def domain_notices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
153
+ pulumi.set(self, "domain_notices", value)
154
+
155
+ @property
156
+ @pulumi.getter
157
+ def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
158
+ """
159
+ Set of labels associated with the Registration.
160
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
161
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
162
+ """
163
+ return pulumi.get(self, "labels")
164
+
165
+ @labels.setter
166
+ def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
167
+ pulumi.set(self, "labels", value)
168
+
169
+ @property
170
+ @pulumi.getter(name="managementSettings")
171
+ def management_settings(self) -> Optional[pulumi.Input['RegistrationManagementSettingsArgs']]:
172
+ """
173
+ Settings for management of the Registration, including renewal, billing, and transfer
174
+ Structure is documented below.
175
+ """
176
+ return pulumi.get(self, "management_settings")
177
+
178
+ @management_settings.setter
179
+ def management_settings(self, value: Optional[pulumi.Input['RegistrationManagementSettingsArgs']]):
180
+ pulumi.set(self, "management_settings", value)
181
+
182
+ @property
183
+ @pulumi.getter
184
+ def project(self) -> Optional[pulumi.Input[str]]:
185
+ """
186
+ The ID of the project in which the resource belongs.
187
+ If it is not provided, the provider project is used.
188
+ """
189
+ return pulumi.get(self, "project")
190
+
191
+ @project.setter
192
+ def project(self, value: Optional[pulumi.Input[str]]):
193
+ pulumi.set(self, "project", value)
194
+
195
+
196
+ @pulumi.input_type
197
+ class _RegistrationState:
198
+ def __init__(__self__, *,
199
+ contact_notices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
200
+ contact_settings: Optional[pulumi.Input['RegistrationContactSettingsArgs']] = None,
201
+ create_time: Optional[pulumi.Input[str]] = None,
202
+ dns_settings: Optional[pulumi.Input['RegistrationDnsSettingsArgs']] = None,
203
+ domain_name: Optional[pulumi.Input[str]] = None,
204
+ domain_notices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
205
+ effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
206
+ expire_time: Optional[pulumi.Input[str]] = None,
207
+ issues: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
208
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
209
+ location: Optional[pulumi.Input[str]] = None,
210
+ management_settings: Optional[pulumi.Input['RegistrationManagementSettingsArgs']] = None,
211
+ name: Optional[pulumi.Input[str]] = None,
212
+ project: Optional[pulumi.Input[str]] = None,
213
+ pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
214
+ register_failure_reason: Optional[pulumi.Input[str]] = None,
215
+ state: Optional[pulumi.Input[str]] = None,
216
+ supported_privacies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
217
+ yearly_price: Optional[pulumi.Input['RegistrationYearlyPriceArgs']] = None):
218
+ """
219
+ Input properties used for looking up and filtering Registration resources.
220
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] contact_notices: The list of contact notices that the caller acknowledges. Possible value is PUBLIC_CONTACT_DATA_ACKNOWLEDGEMENT
221
+ :param pulumi.Input['RegistrationContactSettingsArgs'] contact_settings: Required. Settings for contact information linked to the Registration.
222
+ Structure is documented below.
223
+ :param pulumi.Input[str] create_time: Output only. Time at which the automation was created.
224
+ :param pulumi.Input['RegistrationDnsSettingsArgs'] dns_settings: Settings controlling the DNS configuration of the Registration.
225
+ Structure is documented below.
226
+ :param pulumi.Input[str] domain_name: Required. The domain name. Unicode domain names must be expressed in Punycode format.
227
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] domain_notices: The list of domain notices that you acknowledge. Possible value is HSTS_PRELOADED
228
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
229
+ :param pulumi.Input[str] expire_time: Output only. Time at which the automation was updated.
230
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] issues: Output only. The set of issues with the Registration that require attention.
231
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Set of labels associated with the Registration.
232
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
233
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
234
+ :param pulumi.Input[str] location: The location for the resource
235
+ :param pulumi.Input['RegistrationManagementSettingsArgs'] management_settings: Settings for management of the Registration, including renewal, billing, and transfer
236
+ Structure is documented below.
237
+ :param pulumi.Input[str] name: Output only. Name of the Registration resource, in the format projects/*/locations/*/registrations/<domain_name>.
238
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
239
+ If it is not provided, the provider project is used.
240
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
241
+ and default labels configured on the provider.
242
+ :param pulumi.Input[str] register_failure_reason: Output only. The reason the domain registration failed. Only set for domains in REGISTRATION_FAILED state.
243
+ :param pulumi.Input[str] state: Output only. The current state of the Registration.
244
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] supported_privacies: Output only. Set of options for the contactSettings.privacy field that this Registration supports.
245
+ :param pulumi.Input['RegistrationYearlyPriceArgs'] yearly_price: Required. Yearly price to register or renew the domain. The value that should be put here can be obtained from
246
+ registrations.retrieveRegisterParameters or registrations.searchDomains calls.
247
+ Structure is documented below.
248
+ """
249
+ if contact_notices is not None:
250
+ pulumi.set(__self__, "contact_notices", contact_notices)
251
+ if contact_settings is not None:
252
+ pulumi.set(__self__, "contact_settings", contact_settings)
253
+ if create_time is not None:
254
+ pulumi.set(__self__, "create_time", create_time)
255
+ if dns_settings is not None:
256
+ pulumi.set(__self__, "dns_settings", dns_settings)
257
+ if domain_name is not None:
258
+ pulumi.set(__self__, "domain_name", domain_name)
259
+ if domain_notices is not None:
260
+ pulumi.set(__self__, "domain_notices", domain_notices)
261
+ if effective_labels is not None:
262
+ pulumi.set(__self__, "effective_labels", effective_labels)
263
+ if expire_time is not None:
264
+ pulumi.set(__self__, "expire_time", expire_time)
265
+ if issues is not None:
266
+ pulumi.set(__self__, "issues", issues)
267
+ if labels is not None:
268
+ pulumi.set(__self__, "labels", labels)
269
+ if location is not None:
270
+ pulumi.set(__self__, "location", location)
271
+ if management_settings is not None:
272
+ pulumi.set(__self__, "management_settings", management_settings)
273
+ if name is not None:
274
+ pulumi.set(__self__, "name", name)
275
+ if project is not None:
276
+ pulumi.set(__self__, "project", project)
277
+ if pulumi_labels is not None:
278
+ pulumi.set(__self__, "pulumi_labels", pulumi_labels)
279
+ if register_failure_reason is not None:
280
+ pulumi.set(__self__, "register_failure_reason", register_failure_reason)
281
+ if state is not None:
282
+ pulumi.set(__self__, "state", state)
283
+ if supported_privacies is not None:
284
+ pulumi.set(__self__, "supported_privacies", supported_privacies)
285
+ if yearly_price is not None:
286
+ pulumi.set(__self__, "yearly_price", yearly_price)
287
+
288
+ @property
289
+ @pulumi.getter(name="contactNotices")
290
+ def contact_notices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
291
+ """
292
+ The list of contact notices that the caller acknowledges. Possible value is PUBLIC_CONTACT_DATA_ACKNOWLEDGEMENT
293
+ """
294
+ return pulumi.get(self, "contact_notices")
295
+
296
+ @contact_notices.setter
297
+ def contact_notices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
298
+ pulumi.set(self, "contact_notices", value)
299
+
300
+ @property
301
+ @pulumi.getter(name="contactSettings")
302
+ def contact_settings(self) -> Optional[pulumi.Input['RegistrationContactSettingsArgs']]:
303
+ """
304
+ Required. Settings for contact information linked to the Registration.
305
+ Structure is documented below.
306
+ """
307
+ return pulumi.get(self, "contact_settings")
308
+
309
+ @contact_settings.setter
310
+ def contact_settings(self, value: Optional[pulumi.Input['RegistrationContactSettingsArgs']]):
311
+ pulumi.set(self, "contact_settings", value)
312
+
313
+ @property
314
+ @pulumi.getter(name="createTime")
315
+ def create_time(self) -> Optional[pulumi.Input[str]]:
316
+ """
317
+ Output only. Time at which the automation was created.
318
+ """
319
+ return pulumi.get(self, "create_time")
320
+
321
+ @create_time.setter
322
+ def create_time(self, value: Optional[pulumi.Input[str]]):
323
+ pulumi.set(self, "create_time", value)
324
+
325
+ @property
326
+ @pulumi.getter(name="dnsSettings")
327
+ def dns_settings(self) -> Optional[pulumi.Input['RegistrationDnsSettingsArgs']]:
328
+ """
329
+ Settings controlling the DNS configuration of the Registration.
330
+ Structure is documented below.
331
+ """
332
+ return pulumi.get(self, "dns_settings")
333
+
334
+ @dns_settings.setter
335
+ def dns_settings(self, value: Optional[pulumi.Input['RegistrationDnsSettingsArgs']]):
336
+ pulumi.set(self, "dns_settings", value)
337
+
338
+ @property
339
+ @pulumi.getter(name="domainName")
340
+ def domain_name(self) -> Optional[pulumi.Input[str]]:
341
+ """
342
+ Required. The domain name. Unicode domain names must be expressed in Punycode format.
343
+ """
344
+ return pulumi.get(self, "domain_name")
345
+
346
+ @domain_name.setter
347
+ def domain_name(self, value: Optional[pulumi.Input[str]]):
348
+ pulumi.set(self, "domain_name", value)
349
+
350
+ @property
351
+ @pulumi.getter(name="domainNotices")
352
+ def domain_notices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
353
+ """
354
+ The list of domain notices that you acknowledge. Possible value is HSTS_PRELOADED
355
+ """
356
+ return pulumi.get(self, "domain_notices")
357
+
358
+ @domain_notices.setter
359
+ def domain_notices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
360
+ pulumi.set(self, "domain_notices", value)
361
+
362
+ @property
363
+ @pulumi.getter(name="effectiveLabels")
364
+ def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
365
+ """
366
+ All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
367
+ """
368
+ return pulumi.get(self, "effective_labels")
369
+
370
+ @effective_labels.setter
371
+ def effective_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
372
+ pulumi.set(self, "effective_labels", value)
373
+
374
+ @property
375
+ @pulumi.getter(name="expireTime")
376
+ def expire_time(self) -> Optional[pulumi.Input[str]]:
377
+ """
378
+ Output only. Time at which the automation was updated.
379
+ """
380
+ return pulumi.get(self, "expire_time")
381
+
382
+ @expire_time.setter
383
+ def expire_time(self, value: Optional[pulumi.Input[str]]):
384
+ pulumi.set(self, "expire_time", value)
385
+
386
+ @property
387
+ @pulumi.getter
388
+ def issues(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
389
+ """
390
+ Output only. The set of issues with the Registration that require attention.
391
+ """
392
+ return pulumi.get(self, "issues")
393
+
394
+ @issues.setter
395
+ def issues(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
396
+ pulumi.set(self, "issues", value)
397
+
398
+ @property
399
+ @pulumi.getter
400
+ def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
401
+ """
402
+ Set of labels associated with the Registration.
403
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
404
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
405
+ """
406
+ return pulumi.get(self, "labels")
407
+
408
+ @labels.setter
409
+ def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
410
+ pulumi.set(self, "labels", value)
411
+
412
+ @property
413
+ @pulumi.getter
414
+ def location(self) -> Optional[pulumi.Input[str]]:
415
+ """
416
+ The location for the resource
417
+ """
418
+ return pulumi.get(self, "location")
419
+
420
+ @location.setter
421
+ def location(self, value: Optional[pulumi.Input[str]]):
422
+ pulumi.set(self, "location", value)
423
+
424
+ @property
425
+ @pulumi.getter(name="managementSettings")
426
+ def management_settings(self) -> Optional[pulumi.Input['RegistrationManagementSettingsArgs']]:
427
+ """
428
+ Settings for management of the Registration, including renewal, billing, and transfer
429
+ Structure is documented below.
430
+ """
431
+ return pulumi.get(self, "management_settings")
432
+
433
+ @management_settings.setter
434
+ def management_settings(self, value: Optional[pulumi.Input['RegistrationManagementSettingsArgs']]):
435
+ pulumi.set(self, "management_settings", value)
436
+
437
+ @property
438
+ @pulumi.getter
439
+ def name(self) -> Optional[pulumi.Input[str]]:
440
+ """
441
+ Output only. Name of the Registration resource, in the format projects/*/locations/*/registrations/<domain_name>.
442
+ """
443
+ return pulumi.get(self, "name")
444
+
445
+ @name.setter
446
+ def name(self, value: Optional[pulumi.Input[str]]):
447
+ pulumi.set(self, "name", value)
448
+
449
+ @property
450
+ @pulumi.getter
451
+ def project(self) -> Optional[pulumi.Input[str]]:
452
+ """
453
+ The ID of the project in which the resource belongs.
454
+ If it is not provided, the provider project is used.
455
+ """
456
+ return pulumi.get(self, "project")
457
+
458
+ @project.setter
459
+ def project(self, value: Optional[pulumi.Input[str]]):
460
+ pulumi.set(self, "project", value)
461
+
462
+ @property
463
+ @pulumi.getter(name="pulumiLabels")
464
+ def pulumi_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
465
+ """
466
+ The combination of labels configured directly on the resource
467
+ and default labels configured on the provider.
468
+ """
469
+ return pulumi.get(self, "pulumi_labels")
470
+
471
+ @pulumi_labels.setter
472
+ def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
473
+ pulumi.set(self, "pulumi_labels", value)
474
+
475
+ @property
476
+ @pulumi.getter(name="registerFailureReason")
477
+ def register_failure_reason(self) -> Optional[pulumi.Input[str]]:
478
+ """
479
+ Output only. The reason the domain registration failed. Only set for domains in REGISTRATION_FAILED state.
480
+ """
481
+ return pulumi.get(self, "register_failure_reason")
482
+
483
+ @register_failure_reason.setter
484
+ def register_failure_reason(self, value: Optional[pulumi.Input[str]]):
485
+ pulumi.set(self, "register_failure_reason", value)
486
+
487
+ @property
488
+ @pulumi.getter
489
+ def state(self) -> Optional[pulumi.Input[str]]:
490
+ """
491
+ Output only. The current state of the Registration.
492
+ """
493
+ return pulumi.get(self, "state")
494
+
495
+ @state.setter
496
+ def state(self, value: Optional[pulumi.Input[str]]):
497
+ pulumi.set(self, "state", value)
498
+
499
+ @property
500
+ @pulumi.getter(name="supportedPrivacies")
501
+ def supported_privacies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
502
+ """
503
+ Output only. Set of options for the contactSettings.privacy field that this Registration supports.
504
+ """
505
+ return pulumi.get(self, "supported_privacies")
506
+
507
+ @supported_privacies.setter
508
+ def supported_privacies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
509
+ pulumi.set(self, "supported_privacies", value)
510
+
511
+ @property
512
+ @pulumi.getter(name="yearlyPrice")
513
+ def yearly_price(self) -> Optional[pulumi.Input['RegistrationYearlyPriceArgs']]:
514
+ """
515
+ Required. Yearly price to register or renew the domain. The value that should be put here can be obtained from
516
+ registrations.retrieveRegisterParameters or registrations.searchDomains calls.
517
+ Structure is documented below.
518
+ """
519
+ return pulumi.get(self, "yearly_price")
520
+
521
+ @yearly_price.setter
522
+ def yearly_price(self, value: Optional[pulumi.Input['RegistrationYearlyPriceArgs']]):
523
+ pulumi.set(self, "yearly_price", value)
524
+
525
+
526
+ class Registration(pulumi.CustomResource):
527
+ @overload
528
+ def __init__(__self__,
529
+ resource_name: str,
530
+ opts: Optional[pulumi.ResourceOptions] = None,
531
+ contact_notices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
532
+ contact_settings: Optional[pulumi.Input[pulumi.InputType['RegistrationContactSettingsArgs']]] = None,
533
+ dns_settings: Optional[pulumi.Input[pulumi.InputType['RegistrationDnsSettingsArgs']]] = None,
534
+ domain_name: Optional[pulumi.Input[str]] = None,
535
+ domain_notices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
536
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
537
+ location: Optional[pulumi.Input[str]] = None,
538
+ management_settings: Optional[pulumi.Input[pulumi.InputType['RegistrationManagementSettingsArgs']]] = None,
539
+ project: Optional[pulumi.Input[str]] = None,
540
+ yearly_price: Optional[pulumi.Input[pulumi.InputType['RegistrationYearlyPriceArgs']]] = None,
541
+ __props__=None):
542
+ """
543
+ ## Example Usage
544
+ ### Clouddomains Registration Full
545
+
546
+ ```python
547
+ import pulumi
548
+ import pulumi_gcp as gcp
549
+
550
+ my_registration = gcp.clouddomains.Registration("myRegistration",
551
+ contact_settings=gcp.clouddomains.RegistrationContactSettingsArgs(
552
+ admin_contact=gcp.clouddomains.RegistrationContactSettingsAdminContactArgs(
553
+ email="user@example.com",
554
+ phone_number="+12345000000",
555
+ postal_address=gcp.clouddomains.RegistrationContactSettingsAdminContactPostalAddressArgs(
556
+ address_lines=["1234 Example street"],
557
+ administrative_area="CA",
558
+ locality="Example City",
559
+ postal_code="95050",
560
+ recipients=["example recipient"],
561
+ region_code="US",
562
+ ),
563
+ ),
564
+ privacy="REDACTED_CONTACT_DATA",
565
+ registrant_contact=gcp.clouddomains.RegistrationContactSettingsRegistrantContactArgs(
566
+ email="user@example.com",
567
+ phone_number="+12345000000",
568
+ postal_address=gcp.clouddomains.RegistrationContactSettingsRegistrantContactPostalAddressArgs(
569
+ address_lines=["1234 Example street"],
570
+ administrative_area="CA",
571
+ locality="Example City",
572
+ postal_code="95050",
573
+ recipients=["example recipient"],
574
+ region_code="US",
575
+ ),
576
+ ),
577
+ technical_contact=gcp.clouddomains.RegistrationContactSettingsTechnicalContactArgs(
578
+ email="user@example.com",
579
+ phone_number="+12345000000",
580
+ postal_address=gcp.clouddomains.RegistrationContactSettingsTechnicalContactPostalAddressArgs(
581
+ address_lines=["1234 Example street"],
582
+ administrative_area="CA",
583
+ locality="Example City",
584
+ postal_code="95050",
585
+ recipients=["example recipient"],
586
+ region_code="US",
587
+ ),
588
+ ),
589
+ ),
590
+ dns_settings=gcp.clouddomains.RegistrationDnsSettingsArgs(
591
+ custom_dns=gcp.clouddomains.RegistrationDnsSettingsCustomDnsArgs(
592
+ name_servers=[
593
+ "ns-cloud-a1.googledomains.com.",
594
+ "ns-cloud-a2.googledomains.com.",
595
+ "ns-cloud-a3.googledomains.com.",
596
+ "ns-cloud-a4.googledomains.com.",
597
+ ],
598
+ ),
599
+ ),
600
+ domain_name="example-domain.com",
601
+ labels={
602
+ "labelkey": "labelvalue",
603
+ },
604
+ location="global",
605
+ yearly_price=gcp.clouddomains.RegistrationYearlyPriceArgs(
606
+ currency_code="USD",
607
+ units="12",
608
+ ))
609
+ ```
610
+
611
+ ## Import
612
+
613
+ Registration can be imported using any of these accepted formats* `projects/{{project}}/locations/{{location}}/registrations/{{domain_name}}` * `{{project}}/{{location}}/{{domain_name}}` * `{{location}}/{{domain_name}}` In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import Registration using one of the formats above. For exampletf import {
614
+
615
+ id = "projects/{{project}}/locations/{{location}}/registrations/{{domain_name}}"
616
+
617
+ to = google_clouddomains_registration.default }
618
+
619
+ ```sh
620
+ $ pulumi import gcp:clouddomains/registration:Registration When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), Registration can be imported using one of the formats above. For example
621
+ ```
622
+
623
+ ```sh
624
+ $ pulumi import gcp:clouddomains/registration:Registration default projects/{{project}}/locations/{{location}}/registrations/{{domain_name}}
625
+ ```
626
+
627
+ ```sh
628
+ $ pulumi import gcp:clouddomains/registration:Registration default {{project}}/{{location}}/{{domain_name}}
629
+ ```
630
+
631
+ ```sh
632
+ $ pulumi import gcp:clouddomains/registration:Registration default {{location}}/{{domain_name}}
633
+ ```
634
+
635
+ :param str resource_name: The name of the resource.
636
+ :param pulumi.ResourceOptions opts: Options for the resource.
637
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] contact_notices: The list of contact notices that the caller acknowledges. Possible value is PUBLIC_CONTACT_DATA_ACKNOWLEDGEMENT
638
+ :param pulumi.Input[pulumi.InputType['RegistrationContactSettingsArgs']] contact_settings: Required. Settings for contact information linked to the Registration.
639
+ Structure is documented below.
640
+ :param pulumi.Input[pulumi.InputType['RegistrationDnsSettingsArgs']] dns_settings: Settings controlling the DNS configuration of the Registration.
641
+ Structure is documented below.
642
+ :param pulumi.Input[str] domain_name: Required. The domain name. Unicode domain names must be expressed in Punycode format.
643
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] domain_notices: The list of domain notices that you acknowledge. Possible value is HSTS_PRELOADED
644
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Set of labels associated with the Registration.
645
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
646
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
647
+ :param pulumi.Input[str] location: The location for the resource
648
+ :param pulumi.Input[pulumi.InputType['RegistrationManagementSettingsArgs']] management_settings: Settings for management of the Registration, including renewal, billing, and transfer
649
+ Structure is documented below.
650
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
651
+ If it is not provided, the provider project is used.
652
+ :param pulumi.Input[pulumi.InputType['RegistrationYearlyPriceArgs']] yearly_price: Required. Yearly price to register or renew the domain. The value that should be put here can be obtained from
653
+ registrations.retrieveRegisterParameters or registrations.searchDomains calls.
654
+ Structure is documented below.
655
+ """
656
+ ...
657
+ @overload
658
+ def __init__(__self__,
659
+ resource_name: str,
660
+ args: RegistrationArgs,
661
+ opts: Optional[pulumi.ResourceOptions] = None):
662
+ """
663
+ ## Example Usage
664
+ ### Clouddomains Registration Full
665
+
666
+ ```python
667
+ import pulumi
668
+ import pulumi_gcp as gcp
669
+
670
+ my_registration = gcp.clouddomains.Registration("myRegistration",
671
+ contact_settings=gcp.clouddomains.RegistrationContactSettingsArgs(
672
+ admin_contact=gcp.clouddomains.RegistrationContactSettingsAdminContactArgs(
673
+ email="user@example.com",
674
+ phone_number="+12345000000",
675
+ postal_address=gcp.clouddomains.RegistrationContactSettingsAdminContactPostalAddressArgs(
676
+ address_lines=["1234 Example street"],
677
+ administrative_area="CA",
678
+ locality="Example City",
679
+ postal_code="95050",
680
+ recipients=["example recipient"],
681
+ region_code="US",
682
+ ),
683
+ ),
684
+ privacy="REDACTED_CONTACT_DATA",
685
+ registrant_contact=gcp.clouddomains.RegistrationContactSettingsRegistrantContactArgs(
686
+ email="user@example.com",
687
+ phone_number="+12345000000",
688
+ postal_address=gcp.clouddomains.RegistrationContactSettingsRegistrantContactPostalAddressArgs(
689
+ address_lines=["1234 Example street"],
690
+ administrative_area="CA",
691
+ locality="Example City",
692
+ postal_code="95050",
693
+ recipients=["example recipient"],
694
+ region_code="US",
695
+ ),
696
+ ),
697
+ technical_contact=gcp.clouddomains.RegistrationContactSettingsTechnicalContactArgs(
698
+ email="user@example.com",
699
+ phone_number="+12345000000",
700
+ postal_address=gcp.clouddomains.RegistrationContactSettingsTechnicalContactPostalAddressArgs(
701
+ address_lines=["1234 Example street"],
702
+ administrative_area="CA",
703
+ locality="Example City",
704
+ postal_code="95050",
705
+ recipients=["example recipient"],
706
+ region_code="US",
707
+ ),
708
+ ),
709
+ ),
710
+ dns_settings=gcp.clouddomains.RegistrationDnsSettingsArgs(
711
+ custom_dns=gcp.clouddomains.RegistrationDnsSettingsCustomDnsArgs(
712
+ name_servers=[
713
+ "ns-cloud-a1.googledomains.com.",
714
+ "ns-cloud-a2.googledomains.com.",
715
+ "ns-cloud-a3.googledomains.com.",
716
+ "ns-cloud-a4.googledomains.com.",
717
+ ],
718
+ ),
719
+ ),
720
+ domain_name="example-domain.com",
721
+ labels={
722
+ "labelkey": "labelvalue",
723
+ },
724
+ location="global",
725
+ yearly_price=gcp.clouddomains.RegistrationYearlyPriceArgs(
726
+ currency_code="USD",
727
+ units="12",
728
+ ))
729
+ ```
730
+
731
+ ## Import
732
+
733
+ Registration can be imported using any of these accepted formats* `projects/{{project}}/locations/{{location}}/registrations/{{domain_name}}` * `{{project}}/{{location}}/{{domain_name}}` * `{{location}}/{{domain_name}}` In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import Registration using one of the formats above. For exampletf import {
734
+
735
+ id = "projects/{{project}}/locations/{{location}}/registrations/{{domain_name}}"
736
+
737
+ to = google_clouddomains_registration.default }
738
+
739
+ ```sh
740
+ $ pulumi import gcp:clouddomains/registration:Registration When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), Registration can be imported using one of the formats above. For example
741
+ ```
742
+
743
+ ```sh
744
+ $ pulumi import gcp:clouddomains/registration:Registration default projects/{{project}}/locations/{{location}}/registrations/{{domain_name}}
745
+ ```
746
+
747
+ ```sh
748
+ $ pulumi import gcp:clouddomains/registration:Registration default {{project}}/{{location}}/{{domain_name}}
749
+ ```
750
+
751
+ ```sh
752
+ $ pulumi import gcp:clouddomains/registration:Registration default {{location}}/{{domain_name}}
753
+ ```
754
+
755
+ :param str resource_name: The name of the resource.
756
+ :param RegistrationArgs args: The arguments to use to populate this resource's properties.
757
+ :param pulumi.ResourceOptions opts: Options for the resource.
758
+ """
759
+ ...
760
+ def __init__(__self__, resource_name: str, *args, **kwargs):
761
+ resource_args, opts = _utilities.get_resource_args_opts(RegistrationArgs, pulumi.ResourceOptions, *args, **kwargs)
762
+ if resource_args is not None:
763
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
764
+ else:
765
+ __self__._internal_init(resource_name, *args, **kwargs)
766
+
767
+ def _internal_init(__self__,
768
+ resource_name: str,
769
+ opts: Optional[pulumi.ResourceOptions] = None,
770
+ contact_notices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
771
+ contact_settings: Optional[pulumi.Input[pulumi.InputType['RegistrationContactSettingsArgs']]] = None,
772
+ dns_settings: Optional[pulumi.Input[pulumi.InputType['RegistrationDnsSettingsArgs']]] = None,
773
+ domain_name: Optional[pulumi.Input[str]] = None,
774
+ domain_notices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
775
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
776
+ location: Optional[pulumi.Input[str]] = None,
777
+ management_settings: Optional[pulumi.Input[pulumi.InputType['RegistrationManagementSettingsArgs']]] = None,
778
+ project: Optional[pulumi.Input[str]] = None,
779
+ yearly_price: Optional[pulumi.Input[pulumi.InputType['RegistrationYearlyPriceArgs']]] = None,
780
+ __props__=None):
781
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
782
+ if not isinstance(opts, pulumi.ResourceOptions):
783
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
784
+ if opts.id is None:
785
+ if __props__ is not None:
786
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
787
+ __props__ = RegistrationArgs.__new__(RegistrationArgs)
788
+
789
+ __props__.__dict__["contact_notices"] = contact_notices
790
+ if contact_settings is None and not opts.urn:
791
+ raise TypeError("Missing required property 'contact_settings'")
792
+ __props__.__dict__["contact_settings"] = contact_settings
793
+ __props__.__dict__["dns_settings"] = dns_settings
794
+ if domain_name is None and not opts.urn:
795
+ raise TypeError("Missing required property 'domain_name'")
796
+ __props__.__dict__["domain_name"] = domain_name
797
+ __props__.__dict__["domain_notices"] = domain_notices
798
+ __props__.__dict__["labels"] = labels
799
+ if location is None and not opts.urn:
800
+ raise TypeError("Missing required property 'location'")
801
+ __props__.__dict__["location"] = location
802
+ __props__.__dict__["management_settings"] = management_settings
803
+ __props__.__dict__["project"] = project
804
+ if yearly_price is None and not opts.urn:
805
+ raise TypeError("Missing required property 'yearly_price'")
806
+ __props__.__dict__["yearly_price"] = yearly_price
807
+ __props__.__dict__["create_time"] = None
808
+ __props__.__dict__["effective_labels"] = None
809
+ __props__.__dict__["expire_time"] = None
810
+ __props__.__dict__["issues"] = None
811
+ __props__.__dict__["name"] = None
812
+ __props__.__dict__["pulumi_labels"] = None
813
+ __props__.__dict__["register_failure_reason"] = None
814
+ __props__.__dict__["state"] = None
815
+ __props__.__dict__["supported_privacies"] = None
816
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["effectiveLabels", "pulumiLabels"])
817
+ opts = pulumi.ResourceOptions.merge(opts, secret_opts)
818
+ super(Registration, __self__).__init__(
819
+ 'gcp:clouddomains/registration:Registration',
820
+ resource_name,
821
+ __props__,
822
+ opts)
823
+
824
+ @staticmethod
825
+ def get(resource_name: str,
826
+ id: pulumi.Input[str],
827
+ opts: Optional[pulumi.ResourceOptions] = None,
828
+ contact_notices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
829
+ contact_settings: Optional[pulumi.Input[pulumi.InputType['RegistrationContactSettingsArgs']]] = None,
830
+ create_time: Optional[pulumi.Input[str]] = None,
831
+ dns_settings: Optional[pulumi.Input[pulumi.InputType['RegistrationDnsSettingsArgs']]] = None,
832
+ domain_name: Optional[pulumi.Input[str]] = None,
833
+ domain_notices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
834
+ effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
835
+ expire_time: Optional[pulumi.Input[str]] = None,
836
+ issues: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
837
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
838
+ location: Optional[pulumi.Input[str]] = None,
839
+ management_settings: Optional[pulumi.Input[pulumi.InputType['RegistrationManagementSettingsArgs']]] = None,
840
+ name: Optional[pulumi.Input[str]] = None,
841
+ project: Optional[pulumi.Input[str]] = None,
842
+ pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
843
+ register_failure_reason: Optional[pulumi.Input[str]] = None,
844
+ state: Optional[pulumi.Input[str]] = None,
845
+ supported_privacies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
846
+ yearly_price: Optional[pulumi.Input[pulumi.InputType['RegistrationYearlyPriceArgs']]] = None) -> 'Registration':
847
+ """
848
+ Get an existing Registration resource's state with the given name, id, and optional extra
849
+ properties used to qualify the lookup.
850
+
851
+ :param str resource_name: The unique name of the resulting resource.
852
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
853
+ :param pulumi.ResourceOptions opts: Options for the resource.
854
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] contact_notices: The list of contact notices that the caller acknowledges. Possible value is PUBLIC_CONTACT_DATA_ACKNOWLEDGEMENT
855
+ :param pulumi.Input[pulumi.InputType['RegistrationContactSettingsArgs']] contact_settings: Required. Settings for contact information linked to the Registration.
856
+ Structure is documented below.
857
+ :param pulumi.Input[str] create_time: Output only. Time at which the automation was created.
858
+ :param pulumi.Input[pulumi.InputType['RegistrationDnsSettingsArgs']] dns_settings: Settings controlling the DNS configuration of the Registration.
859
+ Structure is documented below.
860
+ :param pulumi.Input[str] domain_name: Required. The domain name. Unicode domain names must be expressed in Punycode format.
861
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] domain_notices: The list of domain notices that you acknowledge. Possible value is HSTS_PRELOADED
862
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
863
+ :param pulumi.Input[str] expire_time: Output only. Time at which the automation was updated.
864
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] issues: Output only. The set of issues with the Registration that require attention.
865
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Set of labels associated with the Registration.
866
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
867
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
868
+ :param pulumi.Input[str] location: The location for the resource
869
+ :param pulumi.Input[pulumi.InputType['RegistrationManagementSettingsArgs']] management_settings: Settings for management of the Registration, including renewal, billing, and transfer
870
+ Structure is documented below.
871
+ :param pulumi.Input[str] name: Output only. Name of the Registration resource, in the format projects/*/locations/*/registrations/<domain_name>.
872
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
873
+ If it is not provided, the provider project is used.
874
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
875
+ and default labels configured on the provider.
876
+ :param pulumi.Input[str] register_failure_reason: Output only. The reason the domain registration failed. Only set for domains in REGISTRATION_FAILED state.
877
+ :param pulumi.Input[str] state: Output only. The current state of the Registration.
878
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] supported_privacies: Output only. Set of options for the contactSettings.privacy field that this Registration supports.
879
+ :param pulumi.Input[pulumi.InputType['RegistrationYearlyPriceArgs']] yearly_price: Required. Yearly price to register or renew the domain. The value that should be put here can be obtained from
880
+ registrations.retrieveRegisterParameters or registrations.searchDomains calls.
881
+ Structure is documented below.
882
+ """
883
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
884
+
885
+ __props__ = _RegistrationState.__new__(_RegistrationState)
886
+
887
+ __props__.__dict__["contact_notices"] = contact_notices
888
+ __props__.__dict__["contact_settings"] = contact_settings
889
+ __props__.__dict__["create_time"] = create_time
890
+ __props__.__dict__["dns_settings"] = dns_settings
891
+ __props__.__dict__["domain_name"] = domain_name
892
+ __props__.__dict__["domain_notices"] = domain_notices
893
+ __props__.__dict__["effective_labels"] = effective_labels
894
+ __props__.__dict__["expire_time"] = expire_time
895
+ __props__.__dict__["issues"] = issues
896
+ __props__.__dict__["labels"] = labels
897
+ __props__.__dict__["location"] = location
898
+ __props__.__dict__["management_settings"] = management_settings
899
+ __props__.__dict__["name"] = name
900
+ __props__.__dict__["project"] = project
901
+ __props__.__dict__["pulumi_labels"] = pulumi_labels
902
+ __props__.__dict__["register_failure_reason"] = register_failure_reason
903
+ __props__.__dict__["state"] = state
904
+ __props__.__dict__["supported_privacies"] = supported_privacies
905
+ __props__.__dict__["yearly_price"] = yearly_price
906
+ return Registration(resource_name, opts=opts, __props__=__props__)
907
+
908
+ @property
909
+ @pulumi.getter(name="contactNotices")
910
+ def contact_notices(self) -> pulumi.Output[Optional[Sequence[str]]]:
911
+ """
912
+ The list of contact notices that the caller acknowledges. Possible value is PUBLIC_CONTACT_DATA_ACKNOWLEDGEMENT
913
+ """
914
+ return pulumi.get(self, "contact_notices")
915
+
916
+ @property
917
+ @pulumi.getter(name="contactSettings")
918
+ def contact_settings(self) -> pulumi.Output['outputs.RegistrationContactSettings']:
919
+ """
920
+ Required. Settings for contact information linked to the Registration.
921
+ Structure is documented below.
922
+ """
923
+ return pulumi.get(self, "contact_settings")
924
+
925
+ @property
926
+ @pulumi.getter(name="createTime")
927
+ def create_time(self) -> pulumi.Output[str]:
928
+ """
929
+ Output only. Time at which the automation was created.
930
+ """
931
+ return pulumi.get(self, "create_time")
932
+
933
+ @property
934
+ @pulumi.getter(name="dnsSettings")
935
+ def dns_settings(self) -> pulumi.Output[Optional['outputs.RegistrationDnsSettings']]:
936
+ """
937
+ Settings controlling the DNS configuration of the Registration.
938
+ Structure is documented below.
939
+ """
940
+ return pulumi.get(self, "dns_settings")
941
+
942
+ @property
943
+ @pulumi.getter(name="domainName")
944
+ def domain_name(self) -> pulumi.Output[str]:
945
+ """
946
+ Required. The domain name. Unicode domain names must be expressed in Punycode format.
947
+ """
948
+ return pulumi.get(self, "domain_name")
949
+
950
+ @property
951
+ @pulumi.getter(name="domainNotices")
952
+ def domain_notices(self) -> pulumi.Output[Optional[Sequence[str]]]:
953
+ """
954
+ The list of domain notices that you acknowledge. Possible value is HSTS_PRELOADED
955
+ """
956
+ return pulumi.get(self, "domain_notices")
957
+
958
+ @property
959
+ @pulumi.getter(name="effectiveLabels")
960
+ def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
961
+ """
962
+ All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
963
+ """
964
+ return pulumi.get(self, "effective_labels")
965
+
966
+ @property
967
+ @pulumi.getter(name="expireTime")
968
+ def expire_time(self) -> pulumi.Output[str]:
969
+ """
970
+ Output only. Time at which the automation was updated.
971
+ """
972
+ return pulumi.get(self, "expire_time")
973
+
974
+ @property
975
+ @pulumi.getter
976
+ def issues(self) -> pulumi.Output[Sequence[str]]:
977
+ """
978
+ Output only. The set of issues with the Registration that require attention.
979
+ """
980
+ return pulumi.get(self, "issues")
981
+
982
+ @property
983
+ @pulumi.getter
984
+ def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
985
+ """
986
+ Set of labels associated with the Registration.
987
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
988
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
989
+ """
990
+ return pulumi.get(self, "labels")
991
+
992
+ @property
993
+ @pulumi.getter
994
+ def location(self) -> pulumi.Output[str]:
995
+ """
996
+ The location for the resource
997
+ """
998
+ return pulumi.get(self, "location")
999
+
1000
+ @property
1001
+ @pulumi.getter(name="managementSettings")
1002
+ def management_settings(self) -> pulumi.Output['outputs.RegistrationManagementSettings']:
1003
+ """
1004
+ Settings for management of the Registration, including renewal, billing, and transfer
1005
+ Structure is documented below.
1006
+ """
1007
+ return pulumi.get(self, "management_settings")
1008
+
1009
+ @property
1010
+ @pulumi.getter
1011
+ def name(self) -> pulumi.Output[str]:
1012
+ """
1013
+ Output only. Name of the Registration resource, in the format projects/*/locations/*/registrations/<domain_name>.
1014
+ """
1015
+ return pulumi.get(self, "name")
1016
+
1017
+ @property
1018
+ @pulumi.getter
1019
+ def project(self) -> pulumi.Output[str]:
1020
+ """
1021
+ The ID of the project in which the resource belongs.
1022
+ If it is not provided, the provider project is used.
1023
+ """
1024
+ return pulumi.get(self, "project")
1025
+
1026
+ @property
1027
+ @pulumi.getter(name="pulumiLabels")
1028
+ def pulumi_labels(self) -> pulumi.Output[Mapping[str, str]]:
1029
+ """
1030
+ The combination of labels configured directly on the resource
1031
+ and default labels configured on the provider.
1032
+ """
1033
+ return pulumi.get(self, "pulumi_labels")
1034
+
1035
+ @property
1036
+ @pulumi.getter(name="registerFailureReason")
1037
+ def register_failure_reason(self) -> pulumi.Output[str]:
1038
+ """
1039
+ Output only. The reason the domain registration failed. Only set for domains in REGISTRATION_FAILED state.
1040
+ """
1041
+ return pulumi.get(self, "register_failure_reason")
1042
+
1043
+ @property
1044
+ @pulumi.getter
1045
+ def state(self) -> pulumi.Output[str]:
1046
+ """
1047
+ Output only. The current state of the Registration.
1048
+ """
1049
+ return pulumi.get(self, "state")
1050
+
1051
+ @property
1052
+ @pulumi.getter(name="supportedPrivacies")
1053
+ def supported_privacies(self) -> pulumi.Output[Sequence[str]]:
1054
+ """
1055
+ Output only. Set of options for the contactSettings.privacy field that this Registration supports.
1056
+ """
1057
+ return pulumi.get(self, "supported_privacies")
1058
+
1059
+ @property
1060
+ @pulumi.getter(name="yearlyPrice")
1061
+ def yearly_price(self) -> pulumi.Output['outputs.RegistrationYearlyPrice']:
1062
+ """
1063
+ Required. Yearly price to register or renew the domain. The value that should be put here can be obtained from
1064
+ registrations.retrieveRegisterParameters or registrations.searchDomains calls.
1065
+ Structure is documented below.
1066
+ """
1067
+ return pulumi.get(self, "yearly_price")
1068
+