pulumi-gcp 7.16.0__py3-none-any.whl → 7.16.0a1711520590__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +0 -8
- pulumi_gcp/accesscontextmanager/__init__.py +0 -1
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +0 -80
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +0 -86
- pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +2 -4
- pulumi_gcp/cloudquota/__init__.py +0 -1
- pulumi_gcp/cloudquota/outputs.py +0 -270
- pulumi_gcp/cloudrunv2/_inputs.py +2 -59
- pulumi_gcp/cloudrunv2/outputs.py +4 -107
- pulumi_gcp/cloudrunv2/service.py +6 -6
- pulumi_gcp/composer/_inputs.py +0 -16
- pulumi_gcp/composer/outputs.py +0 -23
- pulumi_gcp/compute/_inputs.py +7 -105
- pulumi_gcp/compute/outputs.py +9 -140
- pulumi_gcp/compute/region_url_map.py +0 -152
- pulumi_gcp/dataform/repository.py +74 -4
- pulumi_gcp/firebase/android_app.py +40 -41
- pulumi_gcp/firestore/index.py +48 -34
- pulumi_gcp/monitoring/_inputs.py +0 -2
- pulumi_gcp/monitoring/outputs.py +0 -2
- pulumi_gcp/networksecurity/firewall_endpoint.py +0 -48
- pulumi_gcp/pubsub/_inputs.py +0 -108
- pulumi_gcp/pubsub/get_topic.py +1 -11
- pulumi_gcp/pubsub/outputs.py +0 -213
- pulumi_gcp/pubsub/topic.py +0 -92
- pulumi_gcp/storage/_inputs.py +0 -40
- pulumi_gcp/storage/bucket.py +0 -54
- pulumi_gcp/storage/get_bucket.py +1 -11
- pulumi_gcp/storage/outputs.py +0 -81
- pulumi_gcp/workstations/_inputs.py +0 -113
- pulumi_gcp/workstations/outputs.py +1 -109
- pulumi_gcp/workstations/workstation_config.py +0 -106
- {pulumi_gcp-7.16.0.dist-info → pulumi_gcp-7.16.0a1711520590.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.16.0.dist-info → pulumi_gcp-7.16.0a1711520590.dist-info}/RECORD +36 -38
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +0 -345
- pulumi_gcp/cloudquota/get_s_quota_infos.py +0 -136
- {pulumi_gcp-7.16.0.dist-info → pulumi_gcp-7.16.0a1711520590.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.16.0.dist-info → pulumi_gcp-7.16.0a1711520590.dist-info}/top_level.txt +0 -0
@@ -15,17 +15,15 @@ __all__ = ['AndroidAppArgs', 'AndroidApp']
|
|
15
15
|
class AndroidAppArgs:
|
16
16
|
def __init__(__self__, *,
|
17
17
|
display_name: pulumi.Input[str],
|
18
|
-
package_name: pulumi.Input[str],
|
19
18
|
api_key_id: Optional[pulumi.Input[str]] = None,
|
20
19
|
deletion_policy: Optional[pulumi.Input[str]] = None,
|
20
|
+
package_name: Optional[pulumi.Input[str]] = None,
|
21
21
|
project: Optional[pulumi.Input[str]] = None,
|
22
22
|
sha1_hashes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
23
23
|
sha256_hashes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
24
24
|
"""
|
25
25
|
The set of arguments for constructing a AndroidApp resource.
|
26
26
|
:param pulumi.Input[str] display_name: The user-assigned display name of the AndroidApp.
|
27
|
-
:param pulumi.Input[str] package_name: The canonical package name of the Android app as would appear in the Google Play
|
28
|
-
Developer Console.
|
29
27
|
|
30
28
|
|
31
29
|
- - -
|
@@ -35,17 +33,20 @@ class AndroidAppArgs:
|
|
35
33
|
:param pulumi.Input[str] deletion_policy: (Optional) Set to 'ABANDON' to allow the AndroidApp to be untracked from terraform state rather than deleted upon
|
36
34
|
'terraform destroy'. This is useful because the AndroidApp may be serving traffic. Set to 'DELETE' to delete the
|
37
35
|
AndroidApp. Defaults to 'DELETE'.
|
36
|
+
:param pulumi.Input[str] package_name: Immutable. The canonical package name of the Android app as would appear in the Google Play
|
37
|
+
Developer Console.
|
38
38
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
39
39
|
If it is not provided, the provider project is used.
|
40
40
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] sha1_hashes: The SHA1 certificate hashes for the AndroidApp.
|
41
41
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] sha256_hashes: The SHA256 certificate hashes for the AndroidApp.
|
42
42
|
"""
|
43
43
|
pulumi.set(__self__, "display_name", display_name)
|
44
|
-
pulumi.set(__self__, "package_name", package_name)
|
45
44
|
if api_key_id is not None:
|
46
45
|
pulumi.set(__self__, "api_key_id", api_key_id)
|
47
46
|
if deletion_policy is not None:
|
48
47
|
pulumi.set(__self__, "deletion_policy", deletion_policy)
|
48
|
+
if package_name is not None:
|
49
|
+
pulumi.set(__self__, "package_name", package_name)
|
49
50
|
if project is not None:
|
50
51
|
pulumi.set(__self__, "project", project)
|
51
52
|
if sha1_hashes is not None:
|
@@ -58,6 +59,9 @@ class AndroidAppArgs:
|
|
58
59
|
def display_name(self) -> pulumi.Input[str]:
|
59
60
|
"""
|
60
61
|
The user-assigned display name of the AndroidApp.
|
62
|
+
|
63
|
+
|
64
|
+
- - -
|
61
65
|
"""
|
62
66
|
return pulumi.get(self, "display_name")
|
63
67
|
|
@@ -65,22 +69,6 @@ class AndroidAppArgs:
|
|
65
69
|
def display_name(self, value: pulumi.Input[str]):
|
66
70
|
pulumi.set(self, "display_name", value)
|
67
71
|
|
68
|
-
@property
|
69
|
-
@pulumi.getter(name="packageName")
|
70
|
-
def package_name(self) -> pulumi.Input[str]:
|
71
|
-
"""
|
72
|
-
The canonical package name of the Android app as would appear in the Google Play
|
73
|
-
Developer Console.
|
74
|
-
|
75
|
-
|
76
|
-
- - -
|
77
|
-
"""
|
78
|
-
return pulumi.get(self, "package_name")
|
79
|
-
|
80
|
-
@package_name.setter
|
81
|
-
def package_name(self, value: pulumi.Input[str]):
|
82
|
-
pulumi.set(self, "package_name", value)
|
83
|
-
|
84
72
|
@property
|
85
73
|
@pulumi.getter(name="apiKeyId")
|
86
74
|
def api_key_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -109,6 +97,19 @@ class AndroidAppArgs:
|
|
109
97
|
def deletion_policy(self, value: Optional[pulumi.Input[str]]):
|
110
98
|
pulumi.set(self, "deletion_policy", value)
|
111
99
|
|
100
|
+
@property
|
101
|
+
@pulumi.getter(name="packageName")
|
102
|
+
def package_name(self) -> Optional[pulumi.Input[str]]:
|
103
|
+
"""
|
104
|
+
Immutable. The canonical package name of the Android app as would appear in the Google Play
|
105
|
+
Developer Console.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "package_name")
|
108
|
+
|
109
|
+
@package_name.setter
|
110
|
+
def package_name(self, value: Optional[pulumi.Input[str]]):
|
111
|
+
pulumi.set(self, "package_name", value)
|
112
|
+
|
112
113
|
@property
|
113
114
|
@pulumi.getter
|
114
115
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -171,15 +172,15 @@ class _AndroidAppState:
|
|
171
172
|
'terraform destroy'. This is useful because the AndroidApp may be serving traffic. Set to 'DELETE' to delete the
|
172
173
|
AndroidApp. Defaults to 'DELETE'.
|
173
174
|
:param pulumi.Input[str] display_name: The user-assigned display name of the AndroidApp.
|
175
|
+
|
176
|
+
|
177
|
+
- - -
|
174
178
|
:param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other fields, and it may be sent
|
175
179
|
with update requests to ensure the client has an up-to-date value before proceeding.
|
176
180
|
:param pulumi.Input[str] name: The fully qualified resource name of the AndroidApp, for example:
|
177
181
|
projects/projectId/androidApps/appId
|
178
|
-
:param pulumi.Input[str] package_name: The canonical package name of the Android app as would appear in the Google Play
|
182
|
+
:param pulumi.Input[str] package_name: Immutable. The canonical package name of the Android app as would appear in the Google Play
|
179
183
|
Developer Console.
|
180
|
-
|
181
|
-
|
182
|
-
- - -
|
183
184
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
184
185
|
If it is not provided, the provider project is used.
|
185
186
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] sha1_hashes: The SHA1 certificate hashes for the AndroidApp.
|
@@ -252,6 +253,9 @@ class _AndroidAppState:
|
|
252
253
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
253
254
|
"""
|
254
255
|
The user-assigned display name of the AndroidApp.
|
256
|
+
|
257
|
+
|
258
|
+
- - -
|
255
259
|
"""
|
256
260
|
return pulumi.get(self, "display_name")
|
257
261
|
|
@@ -289,11 +293,8 @@ class _AndroidAppState:
|
|
289
293
|
@pulumi.getter(name="packageName")
|
290
294
|
def package_name(self) -> Optional[pulumi.Input[str]]:
|
291
295
|
"""
|
292
|
-
The canonical package name of the Android app as would appear in the Google Play
|
296
|
+
Immutable. The canonical package name of the Android app as would appear in the Google Play
|
293
297
|
Developer Console.
|
294
|
-
|
295
|
-
|
296
|
-
- - -
|
297
298
|
"""
|
298
299
|
return pulumi.get(self, "package_name")
|
299
300
|
|
@@ -444,11 +445,11 @@ class AndroidApp(pulumi.CustomResource):
|
|
444
445
|
'terraform destroy'. This is useful because the AndroidApp may be serving traffic. Set to 'DELETE' to delete the
|
445
446
|
AndroidApp. Defaults to 'DELETE'.
|
446
447
|
:param pulumi.Input[str] display_name: The user-assigned display name of the AndroidApp.
|
447
|
-
:param pulumi.Input[str] package_name: The canonical package name of the Android app as would appear in the Google Play
|
448
|
-
Developer Console.
|
449
448
|
|
450
449
|
|
451
450
|
- - -
|
451
|
+
:param pulumi.Input[str] package_name: Immutable. The canonical package name of the Android app as would appear in the Google Play
|
452
|
+
Developer Console.
|
452
453
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
453
454
|
If it is not provided, the provider project is used.
|
454
455
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] sha1_hashes: The SHA1 certificate hashes for the AndroidApp.
|
@@ -579,8 +580,6 @@ class AndroidApp(pulumi.CustomResource):
|
|
579
580
|
if display_name is None and not opts.urn:
|
580
581
|
raise TypeError("Missing required property 'display_name'")
|
581
582
|
__props__.__dict__["display_name"] = display_name
|
582
|
-
if package_name is None and not opts.urn:
|
583
|
-
raise TypeError("Missing required property 'package_name'")
|
584
583
|
__props__.__dict__["package_name"] = package_name
|
585
584
|
__props__.__dict__["project"] = project
|
586
585
|
__props__.__dict__["sha1_hashes"] = sha1_hashes
|
@@ -624,15 +623,15 @@ class AndroidApp(pulumi.CustomResource):
|
|
624
623
|
'terraform destroy'. This is useful because the AndroidApp may be serving traffic. Set to 'DELETE' to delete the
|
625
624
|
AndroidApp. Defaults to 'DELETE'.
|
626
625
|
:param pulumi.Input[str] display_name: The user-assigned display name of the AndroidApp.
|
626
|
+
|
627
|
+
|
628
|
+
- - -
|
627
629
|
:param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other fields, and it may be sent
|
628
630
|
with update requests to ensure the client has an up-to-date value before proceeding.
|
629
631
|
:param pulumi.Input[str] name: The fully qualified resource name of the AndroidApp, for example:
|
630
632
|
projects/projectId/androidApps/appId
|
631
|
-
:param pulumi.Input[str] package_name: The canonical package name of the Android app as would appear in the Google Play
|
633
|
+
:param pulumi.Input[str] package_name: Immutable. The canonical package name of the Android app as would appear in the Google Play
|
632
634
|
Developer Console.
|
633
|
-
|
634
|
-
|
635
|
-
- - -
|
636
635
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
637
636
|
If it is not provided, the provider project is used.
|
638
637
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] sha1_hashes: The SHA1 certificate hashes for the AndroidApp.
|
@@ -688,6 +687,9 @@ class AndroidApp(pulumi.CustomResource):
|
|
688
687
|
def display_name(self) -> pulumi.Output[str]:
|
689
688
|
"""
|
690
689
|
The user-assigned display name of the AndroidApp.
|
690
|
+
|
691
|
+
|
692
|
+
- - -
|
691
693
|
"""
|
692
694
|
return pulumi.get(self, "display_name")
|
693
695
|
|
@@ -711,13 +713,10 @@ class AndroidApp(pulumi.CustomResource):
|
|
711
713
|
|
712
714
|
@property
|
713
715
|
@pulumi.getter(name="packageName")
|
714
|
-
def package_name(self) -> pulumi.Output[str]:
|
716
|
+
def package_name(self) -> pulumi.Output[Optional[str]]:
|
715
717
|
"""
|
716
|
-
The canonical package name of the Android app as would appear in the Google Play
|
718
|
+
Immutable. The canonical package name of the Android app as would appear in the Google Play
|
717
719
|
Developer Console.
|
718
|
-
|
719
|
-
|
720
|
-
- - -
|
721
720
|
"""
|
722
721
|
return pulumi.get(self, "package_name")
|
723
722
|
|
pulumi_gcp/firestore/index.py
CHANGED
@@ -320,18 +320,32 @@ class Index(pulumi.CustomResource):
|
|
320
320
|
```python
|
321
321
|
import pulumi
|
322
322
|
import pulumi_gcp as gcp
|
323
|
-
|
323
|
+
import pulumi_time as time
|
324
|
+
|
325
|
+
project = gcp.organizations.Project("project",
|
326
|
+
project_id="project-id",
|
327
|
+
name="project-id",
|
328
|
+
org_id="123456789")
|
329
|
+
wait60_seconds = time.index.Sleep("wait_60_seconds", create_duration=60s)
|
330
|
+
firestore = gcp.projects.Service("firestore",
|
331
|
+
project=project.project_id,
|
332
|
+
service="firestore.googleapis.com")
|
324
333
|
database = gcp.firestore.Database("database",
|
325
|
-
project=
|
326
|
-
name="
|
334
|
+
project=project.project_id,
|
335
|
+
name="(default)",
|
327
336
|
location_id="nam5",
|
328
|
-
type="FIRESTORE_NATIVE"
|
329
|
-
|
330
|
-
|
337
|
+
type="FIRESTORE_NATIVE")
|
338
|
+
# Creating a document also creates its collection
|
339
|
+
document = gcp.firestore.Document("document",
|
340
|
+
project=project.project_id,
|
341
|
+
database=database.name,
|
342
|
+
collection="somenewcollection",
|
343
|
+
document_id="",
|
344
|
+
fields="{\\"something\\":{\\"mapValue\\":{\\"fields\\":{\\"akey\\":{\\"stringValue\\":\\"avalue\\"}}}}}")
|
331
345
|
my_index = gcp.firestore.Index("my-index",
|
332
|
-
project=
|
346
|
+
project=project.project_id,
|
333
347
|
database=database.name,
|
334
|
-
collection=
|
348
|
+
collection=document.collection,
|
335
349
|
fields=[
|
336
350
|
gcp.firestore.IndexFieldArgs(
|
337
351
|
field_path="name",
|
@@ -351,17 +365,10 @@ class Index(pulumi.CustomResource):
|
|
351
365
|
import pulumi
|
352
366
|
import pulumi_gcp as gcp
|
353
367
|
|
354
|
-
database = gcp.firestore.Database("database",
|
355
|
-
project="my-project-name",
|
356
|
-
name="database-id-dm",
|
357
|
-
location_id="nam5",
|
358
|
-
type="DATASTORE_MODE",
|
359
|
-
delete_protection_state="DELETE_PROTECTION_DISABLED",
|
360
|
-
deletion_policy="DELETE")
|
361
368
|
my_index = gcp.firestore.Index("my-index",
|
362
369
|
project="my-project-name",
|
363
|
-
database=
|
364
|
-
collection="
|
370
|
+
database="(default)",
|
371
|
+
collection="chatrooms",
|
365
372
|
query_scope="COLLECTION_RECURSIVE",
|
366
373
|
api_scope="DATASTORE_MODE_API",
|
367
374
|
fields=[
|
@@ -442,18 +449,32 @@ class Index(pulumi.CustomResource):
|
|
442
449
|
```python
|
443
450
|
import pulumi
|
444
451
|
import pulumi_gcp as gcp
|
445
|
-
|
452
|
+
import pulumi_time as time
|
453
|
+
|
454
|
+
project = gcp.organizations.Project("project",
|
455
|
+
project_id="project-id",
|
456
|
+
name="project-id",
|
457
|
+
org_id="123456789")
|
458
|
+
wait60_seconds = time.index.Sleep("wait_60_seconds", create_duration=60s)
|
459
|
+
firestore = gcp.projects.Service("firestore",
|
460
|
+
project=project.project_id,
|
461
|
+
service="firestore.googleapis.com")
|
446
462
|
database = gcp.firestore.Database("database",
|
447
|
-
project=
|
448
|
-
name="
|
463
|
+
project=project.project_id,
|
464
|
+
name="(default)",
|
449
465
|
location_id="nam5",
|
450
|
-
type="FIRESTORE_NATIVE"
|
451
|
-
|
452
|
-
|
466
|
+
type="FIRESTORE_NATIVE")
|
467
|
+
# Creating a document also creates its collection
|
468
|
+
document = gcp.firestore.Document("document",
|
469
|
+
project=project.project_id,
|
470
|
+
database=database.name,
|
471
|
+
collection="somenewcollection",
|
472
|
+
document_id="",
|
473
|
+
fields="{\\"something\\":{\\"mapValue\\":{\\"fields\\":{\\"akey\\":{\\"stringValue\\":\\"avalue\\"}}}}}")
|
453
474
|
my_index = gcp.firestore.Index("my-index",
|
454
|
-
project=
|
475
|
+
project=project.project_id,
|
455
476
|
database=database.name,
|
456
|
-
collection=
|
477
|
+
collection=document.collection,
|
457
478
|
fields=[
|
458
479
|
gcp.firestore.IndexFieldArgs(
|
459
480
|
field_path="name",
|
@@ -473,17 +494,10 @@ class Index(pulumi.CustomResource):
|
|
473
494
|
import pulumi
|
474
495
|
import pulumi_gcp as gcp
|
475
496
|
|
476
|
-
database = gcp.firestore.Database("database",
|
477
|
-
project="my-project-name",
|
478
|
-
name="database-id-dm",
|
479
|
-
location_id="nam5",
|
480
|
-
type="DATASTORE_MODE",
|
481
|
-
delete_protection_state="DELETE_PROTECTION_DISABLED",
|
482
|
-
deletion_policy="DELETE")
|
483
497
|
my_index = gcp.firestore.Index("my-index",
|
484
498
|
project="my-project-name",
|
485
|
-
database=
|
486
|
-
collection="
|
499
|
+
database="(default)",
|
500
|
+
collection="chatrooms",
|
487
501
|
query_scope="COLLECTION_RECURSIVE",
|
488
502
|
api_scope="DATASTORE_MODE_API",
|
489
503
|
fields=[
|
pulumi_gcp/monitoring/_inputs.py
CHANGED
@@ -182,7 +182,6 @@ class AlertPolicyAlertStrategyNotificationRateLimitArgs:
|
|
182
182
|
period: Optional[pulumi.Input[str]] = None):
|
183
183
|
"""
|
184
184
|
:param pulumi.Input[str] period: Not more than one notification per period.
|
185
|
-
A duration in seconds with up to nine fractional digits, terminated by 's'. Example "60.5s".
|
186
185
|
"""
|
187
186
|
if period is not None:
|
188
187
|
pulumi.set(__self__, "period", period)
|
@@ -192,7 +191,6 @@ class AlertPolicyAlertStrategyNotificationRateLimitArgs:
|
|
192
191
|
def period(self) -> Optional[pulumi.Input[str]]:
|
193
192
|
"""
|
194
193
|
Not more than one notification per period.
|
195
|
-
A duration in seconds with up to nine fractional digits, terminated by 's'. Example "60.5s".
|
196
194
|
"""
|
197
195
|
return pulumi.get(self, "period")
|
198
196
|
|
pulumi_gcp/monitoring/outputs.py
CHANGED
@@ -209,7 +209,6 @@ class AlertPolicyAlertStrategyNotificationRateLimit(dict):
|
|
209
209
|
period: Optional[str] = None):
|
210
210
|
"""
|
211
211
|
:param str period: Not more than one notification per period.
|
212
|
-
A duration in seconds with up to nine fractional digits, terminated by 's'. Example "60.5s".
|
213
212
|
"""
|
214
213
|
if period is not None:
|
215
214
|
pulumi.set(__self__, "period", period)
|
@@ -219,7 +218,6 @@ class AlertPolicyAlertStrategyNotificationRateLimit(dict):
|
|
219
218
|
def period(self) -> Optional[str]:
|
220
219
|
"""
|
221
220
|
Not more than one notification per period.
|
222
|
-
A duration in seconds with up to nine fractional digits, terminated by 's'. Example "60.5s".
|
223
221
|
"""
|
224
222
|
return pulumi.get(self, "period")
|
225
223
|
|
@@ -14,14 +14,12 @@ __all__ = ['FirewallEndpointArgs', 'FirewallEndpoint']
|
|
14
14
|
@pulumi.input_type
|
15
15
|
class FirewallEndpointArgs:
|
16
16
|
def __init__(__self__, *,
|
17
|
-
billing_project_id: pulumi.Input[str],
|
18
17
|
location: pulumi.Input[str],
|
19
18
|
parent: pulumi.Input[str],
|
20
19
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
21
20
|
name: Optional[pulumi.Input[str]] = None):
|
22
21
|
"""
|
23
22
|
The set of arguments for constructing a FirewallEndpoint resource.
|
24
|
-
:param pulumi.Input[str] billing_project_id: Project to bill on endpoint uptime usage.
|
25
23
|
:param pulumi.Input[str] location: The location (zone) of the firewall endpoint.
|
26
24
|
:param pulumi.Input[str] parent: The name of the parent this firewall endpoint belongs to.
|
27
25
|
Format: organizations/{organization_id}.
|
@@ -34,7 +32,6 @@ class FirewallEndpointArgs:
|
|
34
32
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
35
33
|
:param pulumi.Input[str] name: The name of the firewall endpoint resource.
|
36
34
|
"""
|
37
|
-
pulumi.set(__self__, "billing_project_id", billing_project_id)
|
38
35
|
pulumi.set(__self__, "location", location)
|
39
36
|
pulumi.set(__self__, "parent", parent)
|
40
37
|
if labels is not None:
|
@@ -42,18 +39,6 @@ class FirewallEndpointArgs:
|
|
42
39
|
if name is not None:
|
43
40
|
pulumi.set(__self__, "name", name)
|
44
41
|
|
45
|
-
@property
|
46
|
-
@pulumi.getter(name="billingProjectId")
|
47
|
-
def billing_project_id(self) -> pulumi.Input[str]:
|
48
|
-
"""
|
49
|
-
Project to bill on endpoint uptime usage.
|
50
|
-
"""
|
51
|
-
return pulumi.get(self, "billing_project_id")
|
52
|
-
|
53
|
-
@billing_project_id.setter
|
54
|
-
def billing_project_id(self, value: pulumi.Input[str]):
|
55
|
-
pulumi.set(self, "billing_project_id", value)
|
56
|
-
|
57
42
|
@property
|
58
43
|
@pulumi.getter
|
59
44
|
def location(self) -> pulumi.Input[str]:
|
@@ -114,7 +99,6 @@ class FirewallEndpointArgs:
|
|
114
99
|
class _FirewallEndpointState:
|
115
100
|
def __init__(__self__, *,
|
116
101
|
associated_networks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
117
|
-
billing_project_id: Optional[pulumi.Input[str]] = None,
|
118
102
|
create_time: Optional[pulumi.Input[str]] = None,
|
119
103
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
120
104
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -132,7 +116,6 @@ class _FirewallEndpointState:
|
|
132
116
|
This is a projection of the FirewallEndpointAssociations pointing at this
|
133
117
|
endpoint. A network will only appear in this list after traffic routing is
|
134
118
|
fully configured. Format: projects/{project}/global/networks/{name}.
|
135
|
-
:param pulumi.Input[str] billing_project_id: Project to bill on endpoint uptime usage.
|
136
119
|
:param pulumi.Input[str] create_time: Time the firewall endpoint was created in UTC.
|
137
120
|
: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.
|
138
121
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A map of key/value label pairs to assign to the resource.
|
@@ -155,8 +138,6 @@ class _FirewallEndpointState:
|
|
155
138
|
"""
|
156
139
|
if associated_networks is not None:
|
157
140
|
pulumi.set(__self__, "associated_networks", associated_networks)
|
158
|
-
if billing_project_id is not None:
|
159
|
-
pulumi.set(__self__, "billing_project_id", billing_project_id)
|
160
141
|
if create_time is not None:
|
161
142
|
pulumi.set(__self__, "create_time", create_time)
|
162
143
|
if effective_labels is not None:
|
@@ -195,18 +176,6 @@ class _FirewallEndpointState:
|
|
195
176
|
def associated_networks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
196
177
|
pulumi.set(self, "associated_networks", value)
|
197
178
|
|
198
|
-
@property
|
199
|
-
@pulumi.getter(name="billingProjectId")
|
200
|
-
def billing_project_id(self) -> Optional[pulumi.Input[str]]:
|
201
|
-
"""
|
202
|
-
Project to bill on endpoint uptime usage.
|
203
|
-
"""
|
204
|
-
return pulumi.get(self, "billing_project_id")
|
205
|
-
|
206
|
-
@billing_project_id.setter
|
207
|
-
def billing_project_id(self, value: Optional[pulumi.Input[str]]):
|
208
|
-
pulumi.set(self, "billing_project_id", value)
|
209
|
-
|
210
179
|
@property
|
211
180
|
@pulumi.getter(name="createTime")
|
212
181
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
@@ -353,7 +322,6 @@ class FirewallEndpoint(pulumi.CustomResource):
|
|
353
322
|
def __init__(__self__,
|
354
323
|
resource_name: str,
|
355
324
|
opts: Optional[pulumi.ResourceOptions] = None,
|
356
|
-
billing_project_id: Optional[pulumi.Input[str]] = None,
|
357
325
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
358
326
|
location: Optional[pulumi.Input[str]] = None,
|
359
327
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -393,7 +361,6 @@ class FirewallEndpoint(pulumi.CustomResource):
|
|
393
361
|
|
394
362
|
:param str resource_name: The name of the resource.
|
395
363
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
396
|
-
:param pulumi.Input[str] billing_project_id: Project to bill on endpoint uptime usage.
|
397
364
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A map of key/value label pairs to assign to the resource.
|
398
365
|
|
399
366
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
@@ -459,7 +426,6 @@ class FirewallEndpoint(pulumi.CustomResource):
|
|
459
426
|
def _internal_init(__self__,
|
460
427
|
resource_name: str,
|
461
428
|
opts: Optional[pulumi.ResourceOptions] = None,
|
462
|
-
billing_project_id: Optional[pulumi.Input[str]] = None,
|
463
429
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
464
430
|
location: Optional[pulumi.Input[str]] = None,
|
465
431
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -473,9 +439,6 @@ class FirewallEndpoint(pulumi.CustomResource):
|
|
473
439
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
474
440
|
__props__ = FirewallEndpointArgs.__new__(FirewallEndpointArgs)
|
475
441
|
|
476
|
-
if billing_project_id is None and not opts.urn:
|
477
|
-
raise TypeError("Missing required property 'billing_project_id'")
|
478
|
-
__props__.__dict__["billing_project_id"] = billing_project_id
|
479
442
|
__props__.__dict__["labels"] = labels
|
480
443
|
if location is None and not opts.urn:
|
481
444
|
raise TypeError("Missing required property 'location'")
|
@@ -505,7 +468,6 @@ class FirewallEndpoint(pulumi.CustomResource):
|
|
505
468
|
id: pulumi.Input[str],
|
506
469
|
opts: Optional[pulumi.ResourceOptions] = None,
|
507
470
|
associated_networks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
508
|
-
billing_project_id: Optional[pulumi.Input[str]] = None,
|
509
471
|
create_time: Optional[pulumi.Input[str]] = None,
|
510
472
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
511
473
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -528,7 +490,6 @@ class FirewallEndpoint(pulumi.CustomResource):
|
|
528
490
|
This is a projection of the FirewallEndpointAssociations pointing at this
|
529
491
|
endpoint. A network will only appear in this list after traffic routing is
|
530
492
|
fully configured. Format: projects/{project}/global/networks/{name}.
|
531
|
-
:param pulumi.Input[str] billing_project_id: Project to bill on endpoint uptime usage.
|
532
493
|
:param pulumi.Input[str] create_time: Time the firewall endpoint was created in UTC.
|
533
494
|
: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.
|
534
495
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A map of key/value label pairs to assign to the resource.
|
@@ -554,7 +515,6 @@ class FirewallEndpoint(pulumi.CustomResource):
|
|
554
515
|
__props__ = _FirewallEndpointState.__new__(_FirewallEndpointState)
|
555
516
|
|
556
517
|
__props__.__dict__["associated_networks"] = associated_networks
|
557
|
-
__props__.__dict__["billing_project_id"] = billing_project_id
|
558
518
|
__props__.__dict__["create_time"] = create_time
|
559
519
|
__props__.__dict__["effective_labels"] = effective_labels
|
560
520
|
__props__.__dict__["labels"] = labels
|
@@ -579,14 +539,6 @@ class FirewallEndpoint(pulumi.CustomResource):
|
|
579
539
|
"""
|
580
540
|
return pulumi.get(self, "associated_networks")
|
581
541
|
|
582
|
-
@property
|
583
|
-
@pulumi.getter(name="billingProjectId")
|
584
|
-
def billing_project_id(self) -> pulumi.Output[str]:
|
585
|
-
"""
|
586
|
-
Project to bill on endpoint uptime usage.
|
587
|
-
"""
|
588
|
-
return pulumi.get(self, "billing_project_id")
|
589
|
-
|
590
542
|
@property
|
591
543
|
@pulumi.getter(name="createTime")
|
592
544
|
def create_time(self) -> pulumi.Output[str]:
|
pulumi_gcp/pubsub/_inputs.py
CHANGED
@@ -30,8 +30,6 @@ __all__ = [
|
|
30
30
|
'SubscriptionRetryPolicyArgs',
|
31
31
|
'TopicIAMBindingConditionArgs',
|
32
32
|
'TopicIAMMemberConditionArgs',
|
33
|
-
'TopicIngestionDataSourceSettingsArgs',
|
34
|
-
'TopicIngestionDataSourceSettingsAwsKinesisArgs',
|
35
33
|
'TopicMessageStoragePolicyArgs',
|
36
34
|
'TopicSchemaSettingsArgs',
|
37
35
|
]
|
@@ -1027,112 +1025,6 @@ class TopicIAMMemberConditionArgs:
|
|
1027
1025
|
pulumi.set(self, "description", value)
|
1028
1026
|
|
1029
1027
|
|
1030
|
-
@pulumi.input_type
|
1031
|
-
class TopicIngestionDataSourceSettingsArgs:
|
1032
|
-
def __init__(__self__, *,
|
1033
|
-
aws_kinesis: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs']] = None):
|
1034
|
-
"""
|
1035
|
-
:param pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs'] aws_kinesis: Settings for ingestion from Amazon Kinesis Data Streams.
|
1036
|
-
Structure is documented below.
|
1037
|
-
"""
|
1038
|
-
if aws_kinesis is not None:
|
1039
|
-
pulumi.set(__self__, "aws_kinesis", aws_kinesis)
|
1040
|
-
|
1041
|
-
@property
|
1042
|
-
@pulumi.getter(name="awsKinesis")
|
1043
|
-
def aws_kinesis(self) -> Optional[pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs']]:
|
1044
|
-
"""
|
1045
|
-
Settings for ingestion from Amazon Kinesis Data Streams.
|
1046
|
-
Structure is documented below.
|
1047
|
-
"""
|
1048
|
-
return pulumi.get(self, "aws_kinesis")
|
1049
|
-
|
1050
|
-
@aws_kinesis.setter
|
1051
|
-
def aws_kinesis(self, value: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs']]):
|
1052
|
-
pulumi.set(self, "aws_kinesis", value)
|
1053
|
-
|
1054
|
-
|
1055
|
-
@pulumi.input_type
|
1056
|
-
class TopicIngestionDataSourceSettingsAwsKinesisArgs:
|
1057
|
-
def __init__(__self__, *,
|
1058
|
-
aws_role_arn: pulumi.Input[str],
|
1059
|
-
consumer_arn: pulumi.Input[str],
|
1060
|
-
gcp_service_account: pulumi.Input[str],
|
1061
|
-
stream_arn: pulumi.Input[str]):
|
1062
|
-
"""
|
1063
|
-
:param pulumi.Input[str] aws_role_arn: AWS role ARN to be used for Federated Identity authentication with
|
1064
|
-
Kinesis. Check the Pub/Sub docs for how to set up this role and the
|
1065
|
-
required permissions that need to be attached to it.
|
1066
|
-
:param pulumi.Input[str] consumer_arn: The Kinesis consumer ARN to used for ingestion in
|
1067
|
-
Enhanced Fan-Out mode. The consumer must be already
|
1068
|
-
created and ready to be used.
|
1069
|
-
:param pulumi.Input[str] gcp_service_account: The GCP service account to be used for Federated Identity authentication
|
1070
|
-
with Kinesis (via a `AssumeRoleWithWebIdentity` call for the provided
|
1071
|
-
role). The `awsRoleArn` must be set up with `accounts.google.com:sub`
|
1072
|
-
equals to this service account number.
|
1073
|
-
:param pulumi.Input[str] stream_arn: The Kinesis stream ARN to ingest data from.
|
1074
|
-
"""
|
1075
|
-
pulumi.set(__self__, "aws_role_arn", aws_role_arn)
|
1076
|
-
pulumi.set(__self__, "consumer_arn", consumer_arn)
|
1077
|
-
pulumi.set(__self__, "gcp_service_account", gcp_service_account)
|
1078
|
-
pulumi.set(__self__, "stream_arn", stream_arn)
|
1079
|
-
|
1080
|
-
@property
|
1081
|
-
@pulumi.getter(name="awsRoleArn")
|
1082
|
-
def aws_role_arn(self) -> pulumi.Input[str]:
|
1083
|
-
"""
|
1084
|
-
AWS role ARN to be used for Federated Identity authentication with
|
1085
|
-
Kinesis. Check the Pub/Sub docs for how to set up this role and the
|
1086
|
-
required permissions that need to be attached to it.
|
1087
|
-
"""
|
1088
|
-
return pulumi.get(self, "aws_role_arn")
|
1089
|
-
|
1090
|
-
@aws_role_arn.setter
|
1091
|
-
def aws_role_arn(self, value: pulumi.Input[str]):
|
1092
|
-
pulumi.set(self, "aws_role_arn", value)
|
1093
|
-
|
1094
|
-
@property
|
1095
|
-
@pulumi.getter(name="consumerArn")
|
1096
|
-
def consumer_arn(self) -> pulumi.Input[str]:
|
1097
|
-
"""
|
1098
|
-
The Kinesis consumer ARN to used for ingestion in
|
1099
|
-
Enhanced Fan-Out mode. The consumer must be already
|
1100
|
-
created and ready to be used.
|
1101
|
-
"""
|
1102
|
-
return pulumi.get(self, "consumer_arn")
|
1103
|
-
|
1104
|
-
@consumer_arn.setter
|
1105
|
-
def consumer_arn(self, value: pulumi.Input[str]):
|
1106
|
-
pulumi.set(self, "consumer_arn", value)
|
1107
|
-
|
1108
|
-
@property
|
1109
|
-
@pulumi.getter(name="gcpServiceAccount")
|
1110
|
-
def gcp_service_account(self) -> pulumi.Input[str]:
|
1111
|
-
"""
|
1112
|
-
The GCP service account to be used for Federated Identity authentication
|
1113
|
-
with Kinesis (via a `AssumeRoleWithWebIdentity` call for the provided
|
1114
|
-
role). The `awsRoleArn` must be set up with `accounts.google.com:sub`
|
1115
|
-
equals to this service account number.
|
1116
|
-
"""
|
1117
|
-
return pulumi.get(self, "gcp_service_account")
|
1118
|
-
|
1119
|
-
@gcp_service_account.setter
|
1120
|
-
def gcp_service_account(self, value: pulumi.Input[str]):
|
1121
|
-
pulumi.set(self, "gcp_service_account", value)
|
1122
|
-
|
1123
|
-
@property
|
1124
|
-
@pulumi.getter(name="streamArn")
|
1125
|
-
def stream_arn(self) -> pulumi.Input[str]:
|
1126
|
-
"""
|
1127
|
-
The Kinesis stream ARN to ingest data from.
|
1128
|
-
"""
|
1129
|
-
return pulumi.get(self, "stream_arn")
|
1130
|
-
|
1131
|
-
@stream_arn.setter
|
1132
|
-
def stream_arn(self, value: pulumi.Input[str]):
|
1133
|
-
pulumi.set(self, "stream_arn", value)
|
1134
|
-
|
1135
|
-
|
1136
1028
|
@pulumi.input_type
|
1137
1029
|
class TopicMessageStoragePolicyArgs:
|
1138
1030
|
def __init__(__self__, *,
|