pulumi-gcp 7.7.0a1705990280__py3-none-any.whl → 7.8.0a1706310284__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 +56 -0
- pulumi_gcp/alloydb/cluster.py +26 -21
- pulumi_gcp/bigquery/_inputs.py +231 -0
- pulumi_gcp/bigquery/outputs.py +229 -0
- pulumi_gcp/bigquery/routine.py +256 -10
- pulumi_gcp/bigquery/table.py +47 -0
- pulumi_gcp/cloudbuildv2/repository.py +60 -53
- pulumi_gcp/cloudrunv2/_inputs.py +176 -4
- pulumi_gcp/cloudrunv2/outputs.py +256 -3
- pulumi_gcp/cloudrunv2/service.py +148 -0
- pulumi_gcp/composer/_inputs.py +24 -0
- pulumi_gcp/composer/outputs.py +34 -0
- pulumi_gcp/compute/_inputs.py +4 -2
- pulumi_gcp/compute/disk.py +14 -14
- pulumi_gcp/compute/outputs.py +4 -2
- pulumi_gcp/healthcare/fhir_store.py +56 -0
- pulumi_gcp/kms/crypto_key.py +2 -2
- pulumi_gcp/kms/crypto_key_iam_binding.py +2 -2
- pulumi_gcp/kms/crypto_key_iam_member.py +2 -2
- pulumi_gcp/kms/crypto_key_iam_policy.py +2 -2
- pulumi_gcp/kms/crypto_key_version.py +2 -2
- pulumi_gcp/kms/secret_ciphertext.py +2 -2
- pulumi_gcp/netapp/__init__.py +4 -0
- pulumi_gcp/netapp/_inputs.py +643 -0
- pulumi_gcp/netapp/backup_policy.py +829 -0
- pulumi_gcp/netapp/kmsconfig.py +2 -2
- pulumi_gcp/netapp/outputs.py +651 -0
- pulumi_gcp/netapp/volume.py +1467 -0
- pulumi_gcp/networksecurity/__init__.py +5 -0
- pulumi_gcp/networksecurity/_inputs.py +228 -0
- pulumi_gcp/networksecurity/address_group_iam_binding.py +324 -0
- pulumi_gcp/networksecurity/address_group_iam_member.py +324 -0
- pulumi_gcp/networksecurity/address_group_iam_policy.py +492 -0
- pulumi_gcp/networksecurity/get_address_group_iam_policy.py +144 -0
- pulumi_gcp/networksecurity/outputs.py +212 -0
- pulumi_gcp/networksecurity/security_profile.py +800 -0
- pulumi_gcp/networkservices/gateway.py +1 -1
- pulumi_gcp/organizations/get_folders.py +1 -1
- pulumi_gcp/orgpolicy/_inputs.py +12 -12
- pulumi_gcp/orgpolicy/outputs.py +12 -12
- pulumi_gcp/securesourcemanager/instance.py +4 -2
- pulumi_gcp/storage/insights_report_config.py +12 -10
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/ai_feature_group_feature.py +767 -0
- pulumi_gcp/workstations/workstation_config.py +47 -0
- {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/RECORD +49 -39
- {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/top_level.txt +0 -0
@@ -21,6 +21,7 @@ class WorkstationConfigArgs:
|
|
21
21
|
workstation_config_id: pulumi.Input[str],
|
22
22
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
23
23
|
container: Optional[pulumi.Input['WorkstationConfigContainerArgs']] = None,
|
24
|
+
disable_tcp_connections: Optional[pulumi.Input[bool]] = None,
|
24
25
|
display_name: Optional[pulumi.Input[str]] = None,
|
25
26
|
enable_audit_agent: Optional[pulumi.Input[bool]] = None,
|
26
27
|
encryption_key: Optional[pulumi.Input['WorkstationConfigEncryptionKeyArgs']] = None,
|
@@ -44,6 +45,7 @@ class WorkstationConfigArgs:
|
|
44
45
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
45
46
|
:param pulumi.Input['WorkstationConfigContainerArgs'] container: Container that will be run for each workstation using this configuration when that workstation is started.
|
46
47
|
Structure is documented below.
|
48
|
+
:param pulumi.Input[bool] disable_tcp_connections: Disables support for plain TCP connections in the workstation. By default the service supports TCP connections via a websocket relay. Setting this option to true disables that relay, which prevents the usage of services that require plain tcp connections, such as ssh. When enabled, all communication must occur over https or wss.
|
47
49
|
:param pulumi.Input[str] display_name: Human-readable name for this resource.
|
48
50
|
:param pulumi.Input[bool] enable_audit_agent: Whether to enable Linux `auditd` logging on the workstation. When enabled, a service account must also be specified that has `logging.buckets.write` permission on the project. Operating system audit logging is distinct from Cloud Audit Logs.
|
49
51
|
:param pulumi.Input['WorkstationConfigEncryptionKeyArgs'] encryption_key: Encrypts resources of this workstation configuration using a customer-managed encryption key.
|
@@ -74,6 +76,8 @@ class WorkstationConfigArgs:
|
|
74
76
|
pulumi.set(__self__, "annotations", annotations)
|
75
77
|
if container is not None:
|
76
78
|
pulumi.set(__self__, "container", container)
|
79
|
+
if disable_tcp_connections is not None:
|
80
|
+
pulumi.set(__self__, "disable_tcp_connections", disable_tcp_connections)
|
77
81
|
if display_name is not None:
|
78
82
|
pulumi.set(__self__, "display_name", display_name)
|
79
83
|
if enable_audit_agent is not None:
|
@@ -161,6 +165,18 @@ class WorkstationConfigArgs:
|
|
161
165
|
def container(self, value: Optional[pulumi.Input['WorkstationConfigContainerArgs']]):
|
162
166
|
pulumi.set(self, "container", value)
|
163
167
|
|
168
|
+
@property
|
169
|
+
@pulumi.getter(name="disableTcpConnections")
|
170
|
+
def disable_tcp_connections(self) -> Optional[pulumi.Input[bool]]:
|
171
|
+
"""
|
172
|
+
Disables support for plain TCP connections in the workstation. By default the service supports TCP connections via a websocket relay. Setting this option to true disables that relay, which prevents the usage of services that require plain tcp connections, such as ssh. When enabled, all communication must occur over https or wss.
|
173
|
+
"""
|
174
|
+
return pulumi.get(self, "disable_tcp_connections")
|
175
|
+
|
176
|
+
@disable_tcp_connections.setter
|
177
|
+
def disable_tcp_connections(self, value: Optional[pulumi.Input[bool]]):
|
178
|
+
pulumi.set(self, "disable_tcp_connections", value)
|
179
|
+
|
164
180
|
@property
|
165
181
|
@pulumi.getter(name="displayName")
|
166
182
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -302,6 +318,7 @@ class _WorkstationConfigState:
|
|
302
318
|
container: Optional[pulumi.Input['WorkstationConfigContainerArgs']] = None,
|
303
319
|
create_time: Optional[pulumi.Input[str]] = None,
|
304
320
|
degraded: Optional[pulumi.Input[bool]] = None,
|
321
|
+
disable_tcp_connections: Optional[pulumi.Input[bool]] = None,
|
305
322
|
display_name: Optional[pulumi.Input[str]] = None,
|
306
323
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
307
324
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -332,6 +349,7 @@ class _WorkstationConfigState:
|
|
332
349
|
Structure is documented below.
|
333
350
|
:param pulumi.Input[str] create_time: Time when this resource was created.
|
334
351
|
:param pulumi.Input[bool] degraded: Whether this resource is in degraded mode, in which case it may require user action to restore full functionality. Details can be found in the conditions field.
|
352
|
+
:param pulumi.Input[bool] disable_tcp_connections: Disables support for plain TCP connections in the workstation. By default the service supports TCP connections via a websocket relay. Setting this option to true disables that relay, which prevents the usage of services that require plain tcp connections, such as ssh. When enabled, all communication must occur over https or wss.
|
335
353
|
:param pulumi.Input[str] display_name: Human-readable name for this resource.
|
336
354
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
337
355
|
Terraform, other clients and services.
|
@@ -380,6 +398,8 @@ class _WorkstationConfigState:
|
|
380
398
|
pulumi.set(__self__, "create_time", create_time)
|
381
399
|
if degraded is not None:
|
382
400
|
pulumi.set(__self__, "degraded", degraded)
|
401
|
+
if disable_tcp_connections is not None:
|
402
|
+
pulumi.set(__self__, "disable_tcp_connections", disable_tcp_connections)
|
383
403
|
if display_name is not None:
|
384
404
|
pulumi.set(__self__, "display_name", display_name)
|
385
405
|
if effective_annotations is not None:
|
@@ -483,6 +503,18 @@ class _WorkstationConfigState:
|
|
483
503
|
def degraded(self, value: Optional[pulumi.Input[bool]]):
|
484
504
|
pulumi.set(self, "degraded", value)
|
485
505
|
|
506
|
+
@property
|
507
|
+
@pulumi.getter(name="disableTcpConnections")
|
508
|
+
def disable_tcp_connections(self) -> Optional[pulumi.Input[bool]]:
|
509
|
+
"""
|
510
|
+
Disables support for plain TCP connections in the workstation. By default the service supports TCP connections via a websocket relay. Setting this option to true disables that relay, which prevents the usage of services that require plain tcp connections, such as ssh. When enabled, all communication must occur over https or wss.
|
511
|
+
"""
|
512
|
+
return pulumi.get(self, "disable_tcp_connections")
|
513
|
+
|
514
|
+
@disable_tcp_connections.setter
|
515
|
+
def disable_tcp_connections(self, value: Optional[pulumi.Input[bool]]):
|
516
|
+
pulumi.set(self, "disable_tcp_connections", value)
|
517
|
+
|
486
518
|
@property
|
487
519
|
@pulumi.getter(name="displayName")
|
488
520
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -737,6 +769,7 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
737
769
|
opts: Optional[pulumi.ResourceOptions] = None,
|
738
770
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
739
771
|
container: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigContainerArgs']]] = None,
|
772
|
+
disable_tcp_connections: Optional[pulumi.Input[bool]] = None,
|
740
773
|
display_name: Optional[pulumi.Input[str]] = None,
|
741
774
|
enable_audit_agent: Optional[pulumi.Input[bool]] = None,
|
742
775
|
encryption_key: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigEncryptionKeyArgs']]] = None,
|
@@ -1111,6 +1144,7 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1111
1144
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
1112
1145
|
:param pulumi.Input[pulumi.InputType['WorkstationConfigContainerArgs']] container: Container that will be run for each workstation using this configuration when that workstation is started.
|
1113
1146
|
Structure is documented below.
|
1147
|
+
:param pulumi.Input[bool] disable_tcp_connections: Disables support for plain TCP connections in the workstation. By default the service supports TCP connections via a websocket relay. Setting this option to true disables that relay, which prevents the usage of services that require plain tcp connections, such as ssh. When enabled, all communication must occur over https or wss.
|
1114
1148
|
:param pulumi.Input[str] display_name: Human-readable name for this resource.
|
1115
1149
|
:param pulumi.Input[bool] enable_audit_agent: Whether to enable Linux `auditd` logging on the workstation. When enabled, a service account must also be specified that has `logging.buckets.write` permission on the project. Operating system audit logging is distinct from Cloud Audit Logs.
|
1116
1150
|
:param pulumi.Input[pulumi.InputType['WorkstationConfigEncryptionKeyArgs']] encryption_key: Encrypts resources of this workstation configuration using a customer-managed encryption key.
|
@@ -1516,6 +1550,7 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1516
1550
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1517
1551
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1518
1552
|
container: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigContainerArgs']]] = None,
|
1553
|
+
disable_tcp_connections: Optional[pulumi.Input[bool]] = None,
|
1519
1554
|
display_name: Optional[pulumi.Input[str]] = None,
|
1520
1555
|
enable_audit_agent: Optional[pulumi.Input[bool]] = None,
|
1521
1556
|
encryption_key: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigEncryptionKeyArgs']]] = None,
|
@@ -1540,6 +1575,7 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1540
1575
|
|
1541
1576
|
__props__.__dict__["annotations"] = annotations
|
1542
1577
|
__props__.__dict__["container"] = container
|
1578
|
+
__props__.__dict__["disable_tcp_connections"] = disable_tcp_connections
|
1543
1579
|
__props__.__dict__["display_name"] = display_name
|
1544
1580
|
__props__.__dict__["enable_audit_agent"] = enable_audit_agent
|
1545
1581
|
__props__.__dict__["encryption_key"] = encryption_key
|
@@ -1585,6 +1621,7 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1585
1621
|
container: Optional[pulumi.Input[pulumi.InputType['WorkstationConfigContainerArgs']]] = None,
|
1586
1622
|
create_time: Optional[pulumi.Input[str]] = None,
|
1587
1623
|
degraded: Optional[pulumi.Input[bool]] = None,
|
1624
|
+
disable_tcp_connections: Optional[pulumi.Input[bool]] = None,
|
1588
1625
|
display_name: Optional[pulumi.Input[str]] = None,
|
1589
1626
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1590
1627
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1620,6 +1657,7 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1620
1657
|
Structure is documented below.
|
1621
1658
|
:param pulumi.Input[str] create_time: Time when this resource was created.
|
1622
1659
|
:param pulumi.Input[bool] degraded: Whether this resource is in degraded mode, in which case it may require user action to restore full functionality. Details can be found in the conditions field.
|
1660
|
+
:param pulumi.Input[bool] disable_tcp_connections: Disables support for plain TCP connections in the workstation. By default the service supports TCP connections via a websocket relay. Setting this option to true disables that relay, which prevents the usage of services that require plain tcp connections, such as ssh. When enabled, all communication must occur over https or wss.
|
1623
1661
|
:param pulumi.Input[str] display_name: Human-readable name for this resource.
|
1624
1662
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1625
1663
|
Terraform, other clients and services.
|
@@ -1667,6 +1705,7 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1667
1705
|
__props__.__dict__["container"] = container
|
1668
1706
|
__props__.__dict__["create_time"] = create_time
|
1669
1707
|
__props__.__dict__["degraded"] = degraded
|
1708
|
+
__props__.__dict__["disable_tcp_connections"] = disable_tcp_connections
|
1670
1709
|
__props__.__dict__["display_name"] = display_name
|
1671
1710
|
__props__.__dict__["effective_annotations"] = effective_annotations
|
1672
1711
|
__props__.__dict__["effective_labels"] = effective_labels
|
@@ -1732,6 +1771,14 @@ class WorkstationConfig(pulumi.CustomResource):
|
|
1732
1771
|
"""
|
1733
1772
|
return pulumi.get(self, "degraded")
|
1734
1773
|
|
1774
|
+
@property
|
1775
|
+
@pulumi.getter(name="disableTcpConnections")
|
1776
|
+
def disable_tcp_connections(self) -> pulumi.Output[Optional[bool]]:
|
1777
|
+
"""
|
1778
|
+
Disables support for plain TCP connections in the workstation. By default the service supports TCP connections via a websocket relay. Setting this option to true disables that relay, which prevents the usage of services that require plain tcp connections, such as ssh. When enabled, all communication must occur over https or wss.
|
1779
|
+
"""
|
1780
|
+
return pulumi.get(self, "disable_tcp_connections")
|
1781
|
+
|
1735
1782
|
@property
|
1736
1783
|
@pulumi.getter(name="displayName")
|
1737
1784
|
def display_name(self) -> pulumi.Output[Optional[str]]:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pulumi_gcp/__init__.py,sha256=
|
1
|
+
pulumi_gcp/__init__.py,sha256=03xiWNfCWzfGaX-1Sp7nzQ1rd7UkajQZA5WbsZMeWAA,175623
|
2
2
|
pulumi_gcp/_inputs.py,sha256=RzPZvEhg_UTDKSms04fRHwrC6vIGFtFT7BXmdZIRsdE,1412
|
3
3
|
pulumi_gcp/_utilities.py,sha256=nNKRJyG0bkCleVzIGnszB5TSQOVUqAHks2baneWhujg,9249
|
4
4
|
pulumi_gcp/provider.py,sha256=zDDEFfbvxDBDZ8AT4Lq9cpSB-9EMaFyblmM_tE_ZaIc,173898
|
@@ -35,7 +35,7 @@ pulumi_gcp/activedirectory/peering.py,sha256=Kj1yAwoSSKU8eACgoie1gQw-7gGLLsxGnLx
|
|
35
35
|
pulumi_gcp/alloydb/__init__.py,sha256=RdYPS9a0WxII51GxWIAndFO9sAYVghO8mRQymYi35UM,476
|
36
36
|
pulumi_gcp/alloydb/_inputs.py,sha256=T-7WAvM5Qto1XNyQFVQp-m5a9YX6d2vzqenlRV1HU80,51111
|
37
37
|
pulumi_gcp/alloydb/backup.py,sha256=jWCP0NA9qW8KJSqz4VU0h3zgsIQdiVYJp-6_rIPKJ2w,66901
|
38
|
-
pulumi_gcp/alloydb/cluster.py,sha256=
|
38
|
+
pulumi_gcp/alloydb/cluster.py,sha256=CB5ThvGK4_677ILUNaohI8pl2Y-tF8KD8FEDq6N6JJU,102235
|
39
39
|
pulumi_gcp/alloydb/get_locations.py,sha256=fUhzBPFCEeaFkrmZ9-QGlY0krDQHWB-k3iyaux6p1p4,3658
|
40
40
|
pulumi_gcp/alloydb/get_supported_database_flags.py,sha256=SMH2Hl5vYDZBbH7_ZOIZkn_M-3zntdeG9nwOpy0o3sc,4802
|
41
41
|
pulumi_gcp/alloydb/instance.py,sha256=8QSMVQzX5Nut_2kQzCCKO4_Ip1GKkcktzSQMOy-ujFc,78018
|
@@ -132,7 +132,7 @@ pulumi_gcp/biglake/database.py,sha256=YD2iM2jgmYgFA5k-QXOlFBguryKuheAyzHLNxNYcjI
|
|
132
132
|
pulumi_gcp/biglake/outputs.py,sha256=G-nuuY6ouZIv3bA_-Sr5LI4o-bfKfpdNax7b_Prraqs,7540
|
133
133
|
pulumi_gcp/biglake/table.py,sha256=nIP-Fkit_AjSIHOP89y0e_mOEp_WASDZnXKJbabi9tc,29782
|
134
134
|
pulumi_gcp/bigquery/__init__.py,sha256=kZS2vw_OB-Azsnpm24Ioq03ew7ktEImnUhyCV4GF61g,1128
|
135
|
-
pulumi_gcp/bigquery/_inputs.py,sha256=
|
135
|
+
pulumi_gcp/bigquery/_inputs.py,sha256=F3CnaRRqMYwd_rvaIU5SsPOSyOuqJIH3f_1pzVBIv5g,243762
|
136
136
|
pulumi_gcp/bigquery/app_profile.py,sha256=M5GUH-E3xDQLYXj-auJ7WzVS1xwaXGG7lPNDykBsS8E,42535
|
137
137
|
pulumi_gcp/bigquery/bi_reservation.py,sha256=sMdjvBxSaStg4wDeuC7S6TLts8pQ1lUR89SOBCJr2PA,19665
|
138
138
|
pulumi_gcp/bigquery/capacity_commitment.py,sha256=elVYMWC_WbCTlrXmrJPoYcBOjgkZKwpf7C8A5FKe1LA,36454
|
@@ -155,11 +155,11 @@ pulumi_gcp/bigquery/iam_binding.py,sha256=yvk9p5mIiBeA8aAq9KIneDru5-eBhRgG56WUrP
|
|
155
155
|
pulumi_gcp/bigquery/iam_member.py,sha256=hqU2vVyomYVWnf1fjgHptSUrhmFqkLcnriqFUVufV5M,41142
|
156
156
|
pulumi_gcp/bigquery/iam_policy.py,sha256=SYQ-7pQI7Z1bfVvDqjEXZN8pp6Qxcp_msQr1EeW-wbo,36363
|
157
157
|
pulumi_gcp/bigquery/job.py,sha256=56bndLCBI1KbdeHuMdtqkM2GAMnZspOP4TIPhPD9Omc,53713
|
158
|
-
pulumi_gcp/bigquery/outputs.py,sha256=
|
158
|
+
pulumi_gcp/bigquery/outputs.py,sha256=Q7tkV6gCQ_TayRb3LHKpbqfS7E7oSCV9XpQV1rXhdyI,246729
|
159
159
|
pulumi_gcp/bigquery/reservation.py,sha256=NdzIpNCoMJUgmlbq1ps7R5tCiqCrb8t6ta2wEE0Jlzk,34601
|
160
160
|
pulumi_gcp/bigquery/reservation_assignment.py,sha256=AsyGmGct0FZ-9vs7yoAJm-bfvUYDvJMkU8lkigq0kPs,20723
|
161
|
-
pulumi_gcp/bigquery/routine.py,sha256=
|
162
|
-
pulumi_gcp/bigquery/table.py,sha256
|
161
|
+
pulumi_gcp/bigquery/routine.py,sha256=2XSHHUu7eFvqak4ZR3Nl1dzDPLLHyTioe1irW9U4Br4,63005
|
162
|
+
pulumi_gcp/bigquery/table.py,sha256=-EHPSgi_Qht6ghmnANysDa8-FWgjG0bfPUgihjVK_k8,95090
|
163
163
|
pulumi_gcp/bigqueryanalyticshub/__init__.py,sha256=eLlmMzRfmFiCGrCneuBoup0vdx0zGFCV1J6lMnF1bkk,672
|
164
164
|
pulumi_gcp/bigqueryanalyticshub/_inputs.py,sha256=_EM90SX_M7JV8_MyltnAyC2KuyHxUI0YUAzetWwGZzI,10040
|
165
165
|
pulumi_gcp/bigqueryanalyticshub/data_exchange.py,sha256=mMK673W-3rBnGtPoLAQikDYymjZZuqKfPSBCWHvpq28,29284
|
@@ -262,7 +262,7 @@ pulumi_gcp/cloudbuildv2/connection_iam_member.py,sha256=uwFZkNkPZl7AoZa0IViHV_d_
|
|
262
262
|
pulumi_gcp/cloudbuildv2/connection_iam_policy.py,sha256=XBRROVCSUwfjhn7C9AHeO8fahkq_nXgkS7XT7Xj17SU,32164
|
263
263
|
pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py,sha256=3c0ifLLG7H6bpwQ3kZommvqpV6cKmH-4HAmft7saiMs,6230
|
264
264
|
pulumi_gcp/cloudbuildv2/outputs.py,sha256=F4Do5EJElw80d8wX5J4dbb1giRBWFDq2l1-3E03-cIo,25572
|
265
|
-
pulumi_gcp/cloudbuildv2/repository.py,sha256=
|
265
|
+
pulumi_gcp/cloudbuildv2/repository.py,sha256=j1sMmkzli_UqbQt_gv4Rx9NTs2n57Wd_Yy8sFwOiRL8,35619
|
266
266
|
pulumi_gcp/clouddeploy/__init__.py,sha256=T_-mBzoVDwQTprQp-PvCCn0npQ9slDmqi4PqkHHs-O8,395
|
267
267
|
pulumi_gcp/clouddeploy/_inputs.py,sha256=AGXrW761DoRFh3crBrokHVmhbf4BUke9yFqxJ7zrPqQ,70877
|
268
268
|
pulumi_gcp/clouddeploy/automation.py,sha256=uPg87n7T_Mv0I5jPUXLNBAfEmm1pKT2aXEn_IHgdyhU,61969
|
@@ -313,7 +313,7 @@ pulumi_gcp/cloudrun/iam_policy.py,sha256=DK7KlgsGgTzbcDo5ng3j1ggCLhl1bOfhnBB-8dy
|
|
313
313
|
pulumi_gcp/cloudrun/outputs.py,sha256=MMv2E3FMsb-3vy_OSlRw9J456NE1I5-ffkRrEjkEopU,170925
|
314
314
|
pulumi_gcp/cloudrun/service.py,sha256=LaBiW7LrNY04RLUncwBQdd3waL35tZ6Pda8part_XDY,52607
|
315
315
|
pulumi_gcp/cloudrunv2/__init__.py,sha256=7dnEvU3VMMpOmrF9q-Efb8BkNNmT3oNa79ZMYxDKb_A,672
|
316
|
-
pulumi_gcp/cloudrunv2/_inputs.py,sha256=
|
316
|
+
pulumi_gcp/cloudrunv2/_inputs.py,sha256=OGD3xFE-Fr70KqDSr2Yyq9ies0MjdPO3e3HujY60UTc,186905
|
317
317
|
pulumi_gcp/cloudrunv2/get_job.py,sha256=kNvIkvpp0M899g0vFaHYjoAhWRNofoaqOoiCwmYHHGk,16263
|
318
318
|
pulumi_gcp/cloudrunv2/get_job_iam_policy.py,sha256=sUpKdWe3VBjH8HspbQpnP2CzS0LDx9YFLA1ofyGzqqQ,6177
|
319
319
|
pulumi_gcp/cloudrunv2/get_service.py,sha256=Dhd5p5yWNRNdgglRBYa-iNGr_ubP0SzZ1YbH1MjL25M,19047
|
@@ -322,8 +322,8 @@ pulumi_gcp/cloudrunv2/job.py,sha256=vAwLHWIxDuGn2MPwqA0QJBJ42IApy7b30poh0327jRs,
|
|
322
322
|
pulumi_gcp/cloudrunv2/job_iam_binding.py,sha256=Hllx_gotJH2lx-ZgZFPBDEerG6uueqLdJ6OHVsHDaCs,35861
|
323
323
|
pulumi_gcp/cloudrunv2/job_iam_member.py,sha256=jf6bPBRjXlWYpehp20GxHZ-ARiw5ancElcBN0v6Z1hk,35565
|
324
324
|
pulumi_gcp/cloudrunv2/job_iam_policy.py,sha256=sgrgqQ_3k8O3ePjvNBBGj0bqdGocDteDebONpYPTdDw,32079
|
325
|
-
pulumi_gcp/cloudrunv2/outputs.py,sha256=
|
326
|
-
pulumi_gcp/cloudrunv2/service.py,sha256=
|
325
|
+
pulumi_gcp/cloudrunv2/outputs.py,sha256=4o5x3pBmXKWF9pyL42hK1CzXAESzuvHdPYZXhT-XS0Y,229660
|
326
|
+
pulumi_gcp/cloudrunv2/service.py,sha256=2Z6uge578W-X3eILa-FviXnc1vQXCVJgQcNSfmFRO0U,123233
|
327
327
|
pulumi_gcp/cloudrunv2/service_iam_binding.py,sha256=4Goaq_M7dHAzAEBb6Q9UBflFOf2PG1ZHa3qkEp1-P6Y,36357
|
328
328
|
pulumi_gcp/cloudrunv2/service_iam_member.py,sha256=2U3NBX2JwkcVK7KbQ8hHK8yCjQD-6zBsQWQ1h61keaA,36061
|
329
329
|
pulumi_gcp/cloudrunv2/service_iam_policy.py,sha256=gavDcbfH3hvxJAzC1AV6zhc2t4J62cAc8gxmzbdtKyQ,32507
|
@@ -340,13 +340,13 @@ pulumi_gcp/cloudtasks/queue_iam_binding.py,sha256=SLSqfPRTDL7WdaqQv9qvyX3UsQBNOS
|
|
340
340
|
pulumi_gcp/cloudtasks/queue_iam_member.py,sha256=A4L68N_BHtih9nFB5DRhsFlxFNGe5GgXV6Mp5ouz8nY,35685
|
341
341
|
pulumi_gcp/cloudtasks/queue_iam_policy.py,sha256=MwHqgq_8mFBaNMdlkTWxEc53GvV3_74fQdosIIUTWQ4,32165
|
342
342
|
pulumi_gcp/composer/__init__.py,sha256=sT22K33omGyjGceEz-nlpbvZjsOBVzGkSluHLBMDnEY,406
|
343
|
-
pulumi_gcp/composer/_inputs.py,sha256=
|
343
|
+
pulumi_gcp/composer/_inputs.py,sha256=a2wxetJ5vClB6wFB2TXhGBlNw-G2RJvQ4N6Webr-o5w,53218
|
344
344
|
pulumi_gcp/composer/environment.py,sha256=ahqYeW3YPP-MvllDtFXy5H0aJjY2BhDdDeKZbRpEWZ0,27712
|
345
345
|
pulumi_gcp/composer/get_environment.py,sha256=qId83Ka4ZRP0Mq7eEARBGgEtx5ft0ZZK6RoQWKHG_7Y,6588
|
346
346
|
pulumi_gcp/composer/get_image_versions.py,sha256=KBJWKBoucdXX_1r3uS6lN-zbFPwYNF5ltyRiwUmSqq8,5202
|
347
|
-
pulumi_gcp/composer/outputs.py,sha256=
|
347
|
+
pulumi_gcp/composer/outputs.py,sha256=xRfDECByqUkF-cm5LgBgZwBJov0aHBolOU72hq1C9TY,84516
|
348
348
|
pulumi_gcp/compute/__init__.py,sha256=0pjsBZNl1JGuYiB3BAy0Ga5wXXY5BG1YmtUhxNbztL0,7085
|
349
|
-
pulumi_gcp/compute/_inputs.py,sha256=
|
349
|
+
pulumi_gcp/compute/_inputs.py,sha256=56MfavrRRp3-PaCaNIGlAeVaqZnVII7qOPLowkKgRWE,1715981
|
350
350
|
pulumi_gcp/compute/address.py,sha256=6fS6ujfIvpGBCektMf80K8wTei-P0dYJsTagGSoF260,69923
|
351
351
|
pulumi_gcp/compute/attached_disk.py,sha256=9d_sdme-RKeJnLKs7ixkaOxY9Cqy39XHdkXt6gmKANk,29023
|
352
352
|
pulumi_gcp/compute/autoscaler.py,sha256=IVYuxd9NdPShCPWuEYjBftTmqriqQ9cQFIqArDhFFsg,35326
|
@@ -361,7 +361,7 @@ pulumi_gcp/compute/backend_service_iam_member.py,sha256=xgFQp361eoPG7pJJ9KHCkdlD
|
|
361
361
|
pulumi_gcp/compute/backend_service_iam_policy.py,sha256=r_Md-wxu7-5MtPhq15EmSf2Y5SstJ-g0ZdTcxhXv4dI,25053
|
362
362
|
pulumi_gcp/compute/backend_service_signed_url_key.py,sha256=fEcIUCMHVeKO6AlouU-e5KjvgrD3GAZEYvsFAAkV1cI,14473
|
363
363
|
pulumi_gcp/compute/ca_external_account_key.py,sha256=E6FhQ9WUHeFlPoy4a70mpBSrEiEyvn69XFq-UZzPMhQ,15539
|
364
|
-
pulumi_gcp/compute/disk.py,sha256=
|
364
|
+
pulumi_gcp/compute/disk.py,sha256=hzR2yIcy_m0bv-QKuaKmB2LSeFSGCZEBx08dBQDpJYM,125748
|
365
365
|
pulumi_gcp/compute/disk_async_replication.py,sha256=3B5VEX1RX1bEao9hyoLn9w0kFULHxV_JN_GY-SEmSoA,11579
|
366
366
|
pulumi_gcp/compute/disk_iam_binding.py,sha256=zZ3xMvthvhsIiCbx-41eaxgqn7nr_gu8cLtNPMUw150,37197
|
367
367
|
pulumi_gcp/compute/disk_iam_member.py,sha256=CuQU3y--uA04ydl-aVJYcrNhscbio_bCQ2mf-TuxAFI,36901
|
@@ -470,7 +470,7 @@ pulumi_gcp/compute/node_template.py,sha256=cVZDRxnVcAy9XmKVliurEtpPXILr-Igltgf_m
|
|
470
470
|
pulumi_gcp/compute/organization_security_policy.py,sha256=9AOh3b9PonLVTr0gbqi9jYqRqo0FFWSXsxqq9g35Ex4,20244
|
471
471
|
pulumi_gcp/compute/organization_security_policy_association.py,sha256=LQlpnybEMO9RlDMakLGv6MoPkc9dgJ5AG2MCxYIfOpE,18511
|
472
472
|
pulumi_gcp/compute/organization_security_policy_rule.py,sha256=BvRJEgxHWLRxtt6Mp9A8U2018ACKXjUpdvGQC513eog,37271
|
473
|
-
pulumi_gcp/compute/outputs.py,sha256=
|
473
|
+
pulumi_gcp/compute/outputs.py,sha256=zd16J0bYGJhI2BJyzDQ9O81Rl1qnzbBpezU7UZNuXC4,1899112
|
474
474
|
pulumi_gcp/compute/packet_mirroring.py,sha256=VoYIEoobc7ddonVyKHON4_FHA7-qI2SSe32TPl4iifc,32165
|
475
475
|
pulumi_gcp/compute/per_instance_config.py,sha256=Gh_YsAoUQ2Sy8clrsVxucE-iVmElNfFqTglVMrdLc7Q,39487
|
476
476
|
pulumi_gcp/compute/project_default_network_tier.py,sha256=Jl8z40FQuAAOa8H06H_DI9ZbCInCwlk5SaLg89ScDUo,12061
|
@@ -881,7 +881,7 @@ pulumi_gcp/healthcare/dicom_store.py,sha256=tz6vLdJ1ZsZKCROOSqoGznJhL5w3fm7gryrE
|
|
881
881
|
pulumi_gcp/healthcare/dicom_store_iam_binding.py,sha256=Wmo2GypdbhZtLE-csUi2pHRA7iq9dUTUJq6vZp4xHw0,28271
|
882
882
|
pulumi_gcp/healthcare/dicom_store_iam_member.py,sha256=gjTM0dperkMDm_TFnG2hpkHBUkSEIe4h2nD3FFVpkbc,27979
|
883
883
|
pulumi_gcp/healthcare/dicom_store_iam_policy.py,sha256=Qd3qDMWG83RNTjy3dnxvZOzM48XDxkevBckBZZ9Ylxo,24374
|
884
|
-
pulumi_gcp/healthcare/fhir_store.py,sha256=
|
884
|
+
pulumi_gcp/healthcare/fhir_store.py,sha256=BHQbUpUg9AoFE0XR2v_b8-8Uq01p6CANZ3RQ81AH0uk,92406
|
885
885
|
pulumi_gcp/healthcare/fhir_store_iam_binding.py,sha256=vJMUb3D16Kc-urF0JaIc4vtZj5erM4e7rg33xwU6Izc,28096
|
886
886
|
pulumi_gcp/healthcare/fhir_store_iam_member.py,sha256=s9D4fItO63R9cZU3s26nTSbFWhn8Mn1nls8Xppd8QLo,27804
|
887
887
|
pulumi_gcp/healthcare/fhir_store_iam_policy.py,sha256=aJvUCBXW6EfixPcRNCYY24GbZtz2AcWqLTbN4xsoxIo,24216
|
@@ -969,11 +969,11 @@ pulumi_gcp/integrationconnectors/endpoint_attachment.py,sha256=BxD7WsJU7AJHKPjd4
|
|
969
969
|
pulumi_gcp/integrationconnectors/outputs.py,sha256=MIddrgLnnsZEEcndtHanUCmjEK8z27ThjjWItzFow2I,104747
|
970
970
|
pulumi_gcp/kms/__init__.py,sha256=lzCLUsLSXTcqt-XDVF-YZ0AA93oZY9omYNUHhB5_KgU,984
|
971
971
|
pulumi_gcp/kms/_inputs.py,sha256=L42ssCwCZkeZu4d1J2tgHVWgz8ak6ZYc1VZGpUuAV_w,25017
|
972
|
-
pulumi_gcp/kms/crypto_key.py,sha256=
|
973
|
-
pulumi_gcp/kms/crypto_key_iam_binding.py,sha256=
|
974
|
-
pulumi_gcp/kms/crypto_key_iam_member.py,sha256=
|
975
|
-
pulumi_gcp/kms/crypto_key_iam_policy.py,sha256=
|
976
|
-
pulumi_gcp/kms/crypto_key_version.py,sha256=
|
972
|
+
pulumi_gcp/kms/crypto_key.py,sha256=Uxxc0XSZ_jlqmX6etqslDq0z6e08a3t2z0lfHp3GPlM,41013
|
973
|
+
pulumi_gcp/kms/crypto_key_iam_binding.py,sha256=SGuYyg2X5r64W3_TULi170K_JLN1tjlrTu0FUGP--Os,32650
|
974
|
+
pulumi_gcp/kms/crypto_key_iam_member.py,sha256=PnV0PFo168WfOpF_lvysgfU1nirsdHdK41SCDZhwjPA,32354
|
975
|
+
pulumi_gcp/kms/crypto_key_iam_policy.py,sha256=huaUWMSTBculi0IzZC6b2svpEiHVWM5b5RhdtUW7e28,27890
|
976
|
+
pulumi_gcp/kms/crypto_key_version.py,sha256=LxrnwM6-sV4NFZPINAxR1WnQYFXjb2Ee7o9kI1TRVyY,20342
|
977
977
|
pulumi_gcp/kms/get_crypto_key_iam_policy.py,sha256=DJ0K3uE5TqQvbRsteM5itpHEnXDyqmw7otKjknbyn9U,4194
|
978
978
|
pulumi_gcp/kms/get_key_ring_iam_policy.py,sha256=bSlPTHD59zVM8ZvM6egBz-Lv_DT9-2oAzWLYgIQAtgQ,4546
|
979
979
|
pulumi_gcp/kms/get_kms_crypto_key.py,sha256=w6WjAzkTZ-m7e3SBePWge4bCH8DYaxky2JaJ4xwbPNI,10407
|
@@ -988,7 +988,7 @@ pulumi_gcp/kms/key_ring_iam_member.py,sha256=WzJdQXtSS18E-b4m0SzDtsPQD2jS477GIeH
|
|
988
988
|
pulumi_gcp/kms/key_ring_iam_policy.py,sha256=DX6AICSMWKjSSBQ1iu-eTI6LaUZ1x0ee35E8rBs9BK8,27427
|
989
989
|
pulumi_gcp/kms/key_ring_import_job.py,sha256=GeZ_DaeL1f1cfqXaKERX-HIohVdkk5aKOaf8zgtxuNw,26821
|
990
990
|
pulumi_gcp/kms/outputs.py,sha256=4SKpwaxRnQa5utse6AncDXWCFTA6IWf6PsT0AWKEbuU,25620
|
991
|
-
pulumi_gcp/kms/secret_ciphertext.py,sha256=
|
991
|
+
pulumi_gcp/kms/secret_ciphertext.py,sha256=tA_luzoaUt5vpsHsn6BHl1bUl2WS7SXasFnj0f9-JU8,18345
|
992
992
|
pulumi_gcp/logging/__init__.py,sha256=PHX-RqZFu4YOg6m6uTxWPrM7fQ09NEcZFl5VGptSNyc,1063
|
993
993
|
pulumi_gcp/logging/_inputs.py,sha256=bJOMMCKdQd6LnlGkwCorXjOEDg60fAs1fca9Ym5mibc,56683
|
994
994
|
pulumi_gcp/logging/billing_account_bucket_config.py,sha256=zIkDDEO0vpzhxT439WM-GI35GNqmXS42RuyH7R6O_BM,30443
|
@@ -1048,11 +1048,15 @@ pulumi_gcp/monitoring/notification_channel.py,sha256=ZqrvMpXmElVA6A6SoOV4cYOf029
|
|
1048
1048
|
pulumi_gcp/monitoring/outputs.py,sha256=bR7mAOR_V0F2B214B-G_7hCsmN3vg3COXisPZYyGKI8,201894
|
1049
1049
|
pulumi_gcp/monitoring/slo.py,sha256=g0D_2TsW1nwz9z4rfKxIyuxa3krrUSCpChtTyIoOdE4,49576
|
1050
1050
|
pulumi_gcp/monitoring/uptime_check_config.py,sha256=2rMQJc_NT-QWyPsg7YqLc72qj9C7yejTLb2WQYhpYqo,66442
|
1051
|
-
pulumi_gcp/netapp/__init__.py,sha256=
|
1051
|
+
pulumi_gcp/netapp/__init__.py,sha256=7CAwcuFFJxkQyzKHW8oRPkMeEDpB1CkQOto4ndNYUgo,478
|
1052
|
+
pulumi_gcp/netapp/_inputs.py,sha256=U7K_383f2A0HsaeedZSQcTyIARQD5FqPGKrUN2-hBRg,27916
|
1052
1053
|
pulumi_gcp/netapp/active_directory.py,sha256=F1J0FoJDQb7veakxct8M5LwFC_HzLDt5PCsw36Ukjuo,70668
|
1054
|
+
pulumi_gcp/netapp/backup_policy.py,sha256=0KthLPjToPUtGFzOuEvocjYqf-Grrecrr7p9Fhx8yTY,38766
|
1053
1055
|
pulumi_gcp/netapp/backup_vault.py,sha256=zD2RsKSFC0AI4BxKVfG9qzv3RmSvaJ_Oz55fYXJtbh4,26025
|
1054
|
-
pulumi_gcp/netapp/kmsconfig.py,sha256=
|
1056
|
+
pulumi_gcp/netapp/kmsconfig.py,sha256=3cotAPikPuof34YviYYq48BKeVkRUQyatPpeKsqvx0s,29808
|
1057
|
+
pulumi_gcp/netapp/outputs.py,sha256=hPUOvo73SkVDUDAbcXpsSEKZmzE_aHtcbNIi-vVMZhk,26936
|
1055
1058
|
pulumi_gcp/netapp/storage_pool.py,sha256=5DXwUvcqo8q6vAogokxkjTTnFpj2hHRjfL_hboblg3k,46352
|
1059
|
+
pulumi_gcp/netapp/volume.py,sha256=asqAmz3JHkMdeJsYvWu7ByeJnmXiga0bSAW8UDT4L5w,74119
|
1056
1060
|
pulumi_gcp/networkconnectivity/__init__.py,sha256=8016GMJFF_5Kjp9-IreRYmyv1BgjneGUpnaRHk3pu5I,429
|
1057
1061
|
pulumi_gcp/networkconnectivity/_inputs.py,sha256=arwjuhLbvFCStBxOEj3HfeFP_Ofn5lcXSbsXXzbCj2c,29443
|
1058
1062
|
pulumi_gcp/networkconnectivity/hub.py,sha256=PnUjGGIhldd-a7_ijq9En9u_6B_xRoskZ841tXJB78E,28713
|
@@ -1064,14 +1068,19 @@ pulumi_gcp/networkmanagement/__init__.py,sha256=w0jJqOXlyUgN1FT_j4bGJV6EBhRPAJG4
|
|
1064
1068
|
pulumi_gcp/networkmanagement/_inputs.py,sha256=OFgutPhb1it8o_p_7f8LaJStImawi1A1Kesn3XaQU-4,9967
|
1065
1069
|
pulumi_gcp/networkmanagement/connectivity_test.py,sha256=OYYl9WAJ6N_sXrCh_yFqT_15bXk41nwcTpcyxOLCqHY,51563
|
1066
1070
|
pulumi_gcp/networkmanagement/outputs.py,sha256=Wu9YAtF9CSOUAVNXW6lPX1G2o1SyEDm793wHUMJv-EY,9502
|
1067
|
-
pulumi_gcp/networksecurity/__init__.py,sha256=
|
1068
|
-
pulumi_gcp/networksecurity/_inputs.py,sha256=
|
1071
|
+
pulumi_gcp/networksecurity/__init__.py,sha256=E6oXVjGbHxMrNu6rmcjPTZlMpPjqZsVvgf-WJSKe4Eg,786
|
1072
|
+
pulumi_gcp/networksecurity/_inputs.py,sha256=rSt-dXKVcxOo8FxzUq55Fu2x6YFG9pH65-jQIjhmHxI,43917
|
1069
1073
|
pulumi_gcp/networksecurity/address_group.py,sha256=zGgFnN3yuXozLq4StrNXOtpm1IoZM8irEE-Xm7lxnGk,34954
|
1074
|
+
pulumi_gcp/networksecurity/address_group_iam_binding.py,sha256=is1i5n-DMv8d18tvT7nDBGh33OmHgyeP4w6MamQca8o,12566
|
1075
|
+
pulumi_gcp/networksecurity/address_group_iam_member.py,sha256=pJ2yLhX-mvKRfK_ErQPqtJfrmZR-X3jt4TILSLs2T1M,12280
|
1076
|
+
pulumi_gcp/networksecurity/address_group_iam_policy.py,sha256=NBc7-c-by_LCftIux3zrByGohENsqOD_gOEkrwm7sMU,30417
|
1070
1077
|
pulumi_gcp/networksecurity/authorization_policy.py,sha256=HXLp0vV-wvg0DdkeHgQeoAVr9e9YQw13dIhpTyj9lI8,35495
|
1071
1078
|
pulumi_gcp/networksecurity/client_tls_policy.py,sha256=h7kbTFNreNHEmEsO9qboabI1ZpUZJBuo23GPeDqCaac,38121
|
1072
1079
|
pulumi_gcp/networksecurity/gateway_security_policy.py,sha256=FFjRIIWaxuzn6UrlOVbkdxgHyYDVndatfV3_-zzY2qk,34236
|
1073
1080
|
pulumi_gcp/networksecurity/gateway_security_policy_rule.py,sha256=A9vZiC3_GL6cHqGW3IZHxM1Rr9wnm2SegAMUhQbLQL8,42606
|
1074
|
-
pulumi_gcp/networksecurity/
|
1081
|
+
pulumi_gcp/networksecurity/get_address_group_iam_policy.py,sha256=Rkdc_5P3MWBloXzVSs_67bU5WywYxAJ4bQguTC0sg1o,5877
|
1082
|
+
pulumi_gcp/networksecurity/outputs.py,sha256=vagjEyt3smhvYtfU8SLScKK5XFrifmPfFk5lgx0pWuU,47826
|
1083
|
+
pulumi_gcp/networksecurity/security_profile.py,sha256=j30-ugSCO7qfvFT5Fk5oNdmvfPEJMvBnen6nojwmqo4,35264
|
1075
1084
|
pulumi_gcp/networksecurity/server_tls_policy.py,sha256=LQ0XKk6oU4x_WL-0B5IPs0BUzLrpxa_7TrEXQUtrLOw,49716
|
1076
1085
|
pulumi_gcp/networksecurity/tls_inspection_policy.py,sha256=axvIyk5MZCAMRQGWrGAq65SHZ8VsAdhrxJHhfglJ8hU,31419
|
1077
1086
|
pulumi_gcp/networksecurity/url_list.py,sha256=9-51sxyG2DGyXIr7Evl1ElctnWS5lLXnsL_uxtOyWuc,23018
|
@@ -1081,7 +1090,7 @@ pulumi_gcp/networkservices/edge_cache_keyset.py,sha256=syaIjbmhzuvSUS9pLlsZ2Berh
|
|
1081
1090
|
pulumi_gcp/networkservices/edge_cache_origin.py,sha256=3JLPN_oMWYkyAL6W8w_S28c_OORVeGZ6RtUzKN5qUY0,80180
|
1082
1091
|
pulumi_gcp/networkservices/edge_cache_service.py,sha256=BlHxeZVCwucZKRvzGnn8XvKgzbh756bpkA_KU4PZfkM,80576
|
1083
1092
|
pulumi_gcp/networkservices/endpoint_policy.py,sha256=Eav0Xu2_CPltFbh7PcgS1WvHpTU4tIHqzDgZHTX14xk,44219
|
1084
|
-
pulumi_gcp/networkservices/gateway.py,sha256=
|
1093
|
+
pulumi_gcp/networkservices/gateway.py,sha256=2Ve0dEW43ajwX5kw9uvcv3QvdTotU32_m8Y0zU8V3x8,73824
|
1085
1094
|
pulumi_gcp/networkservices/grpc_route.py,sha256=_GZXtV4F4bUWak9SPaOMzqYQq-v-cSyI0f3Vob8FlNs,42225
|
1086
1095
|
pulumi_gcp/networkservices/http_route.py,sha256=RymVEPlXmIEUo6enrfci9pOPeE9Kdgd7d11DxAWZJyw,55377
|
1087
1096
|
pulumi_gcp/networkservices/mesh.py,sha256=Ujx4jJpINfp_rCuK4BqcsqwNR77Jl5lJ28FBVp9YZMg,28905
|
@@ -1113,7 +1122,7 @@ pulumi_gcp/organizations/get_billing_account.py,sha256=garw9VrCliuZqhuPU_MLB_63a
|
|
1113
1122
|
pulumi_gcp/organizations/get_client_config.py,sha256=EPkmsysF3CUIM4gZW3_wn6HMSrdrB2WhzizGc8FV98o,3997
|
1114
1123
|
pulumi_gcp/organizations/get_client_open_id_user_info.py,sha256=is0HwfAozdPW0xZKWeosGKAjylRnW8uINzLh263xMo8,4060
|
1115
1124
|
pulumi_gcp/organizations/get_folder.py,sha256=bzcT5F2p6diYF6dalWJOMylMWczmi4n6aOvyQ3HayQM,8019
|
1116
|
-
pulumi_gcp/organizations/get_folders.py,sha256=
|
1125
|
+
pulumi_gcp/organizations/get_folders.py,sha256=6n4e6fxT7NUd8waImy0ZN4guRuqyKkyylKqVQXIWweg,4255
|
1117
1126
|
pulumi_gcp/organizations/get_iam_policy.py,sha256=UsAmEDHcGRsK5ipoxbxMhKGxyVhzEs2B1ZuGwICFtOo,8978
|
1118
1127
|
pulumi_gcp/organizations/get_organization.py,sha256=NRDFdVJgsXN5eYQHZpHtKWxKckSfxXGUgeCSruMDhqQ,7165
|
1119
1128
|
pulumi_gcp/organizations/get_project.py,sha256=Hf-Ih_UZQjCAWMW4r4Sw5Kzc-Nods8BygRWt_bV3XzY,7722
|
@@ -1126,9 +1135,9 @@ pulumi_gcp/organizations/outputs.py,sha256=5_n8mlBP_Pw8c2xhwHqtjCx1l2VzMZVicNTi2
|
|
1126
1135
|
pulumi_gcp/organizations/policy.py,sha256=Xifz7BZkpISxPhAkfBF6qN97ZPPdAyx98FcuzYufSHI,32487
|
1127
1136
|
pulumi_gcp/organizations/project.py,sha256=DAYkYK5bvGNO2vYxVny5YPgVy6MBpOwPbew-79W2rMI,39888
|
1128
1137
|
pulumi_gcp/orgpolicy/__init__.py,sha256=bdd_oQduV_xUj2RtYRYe5h9NzODH1KbvCbkkZLJpz-4,369
|
1129
|
-
pulumi_gcp/orgpolicy/_inputs.py,sha256=
|
1138
|
+
pulumi_gcp/orgpolicy/_inputs.py,sha256=Q9nLVXMAjQODetqcoXCQ_RmZDRouqelJqF3RB7YkdZc,32256
|
1130
1139
|
pulumi_gcp/orgpolicy/custom_constraint.py,sha256=4Zp9vcXkrS9cKmto-vH6krmzDQj2sigXGLIR66TPZYo,33749
|
1131
|
-
pulumi_gcp/orgpolicy/outputs.py,sha256=
|
1140
|
+
pulumi_gcp/orgpolicy/outputs.py,sha256=lWC69234Vv4r2aFVHKj8jz6_XxBCvOhWG-LFBM7WK3Y,30184
|
1132
1141
|
pulumi_gcp/orgpolicy/policy.py,sha256=CJBgfZGM4qUQhpi2PKXJoB9t-jeY98_lBwyPN9N31XU,29275
|
1133
1142
|
pulumi_gcp/osconfig/__init__.py,sha256=yDD2y1RayZ6ZJsosFD0HA15H2OCYk_GwALeFoLuEusk,412
|
1134
1143
|
pulumi_gcp/osconfig/_inputs.py,sha256=mFZ0_vJRhp0Am7JCUMYEnHdZmHHE7GcJwKVh3qfo5IY,276549
|
@@ -1219,7 +1228,7 @@ pulumi_gcp/secretmanager/secret_version.py,sha256=9BfGQPj-KqrgQRReH0-1lmmZX2w-O6
|
|
1219
1228
|
pulumi_gcp/securesourcemanager/__init__.py,sha256=gNUlNEXeqvCKDmkugD4D2BJYgjTxkoU883peNvn04G8,483
|
1220
1229
|
pulumi_gcp/securesourcemanager/_inputs.py,sha256=hvSwfFQUQrFTX3eJyJMfvNLri_BdOxTLKfnm2BQ1Fr0,8374
|
1221
1230
|
pulumi_gcp/securesourcemanager/get_instance_iam_policy.py,sha256=-m6-gGZjCPuHg7B-drv_98KrDDMcQKk9MW_UHI3FHiQ,6706
|
1222
|
-
pulumi_gcp/securesourcemanager/instance.py,sha256=
|
1231
|
+
pulumi_gcp/securesourcemanager/instance.py,sha256=qe1i35ft4tpvXqNEshiFtGYa9gqhorivW_jwoQCnou0,34942
|
1223
1232
|
pulumi_gcp/securesourcemanager/instance_iam_binding.py,sha256=zhnzswO4Km79RNmz00hsua1Zo7aDQQ0JYzqzzyd23K4,12739
|
1224
1233
|
pulumi_gcp/securesourcemanager/instance_iam_member.py,sha256=X6nxcxesUUuaaIZ1FYSMPZrwyl4BzThNUGiCXe8CSR0,12453
|
1225
1234
|
pulumi_gcp/securesourcemanager/instance_iam_policy.py,sha256=1LYHMcENkugU2PqxOW6aLJc7reKlod__izRYL-L_aDc,9820
|
@@ -1334,7 +1343,7 @@ pulumi_gcp/storage/get_project_service_account.py,sha256=MPrdiIekbEwYKP6_v1vojzN
|
|
1334
1343
|
pulumi_gcp/storage/get_transfer_project_service_account.py,sha256=Pf-7WU0B-s6a9p9NOwCTHyB7YC4uANznJDav8aATMJI,5078
|
1335
1344
|
pulumi_gcp/storage/get_transfer_project_servie_account.py,sha256=-3XPA0FwUlhTj9iXtWt_0qUU4TWHBqJh-1J28DGKV6M,5619
|
1336
1345
|
pulumi_gcp/storage/hmac_key.py,sha256=x0OIbeh9NsdoLZxWb4VVJAkCZEMIuKoQFsnhrwmOFh0,19769
|
1337
|
-
pulumi_gcp/storage/insights_report_config.py,sha256=
|
1346
|
+
pulumi_gcp/storage/insights_report_config.py,sha256=j1wQ8hiTg0mLctiWtU01-ZHwtj-ye_ruGap9OznwaKI,29953
|
1338
1347
|
pulumi_gcp/storage/notification.py,sha256=clMiFcNECpJxbtzUvFbWURTJEOTUQ9nMfqPCVVLn4VE,30732
|
1339
1348
|
pulumi_gcp/storage/object_access_control.py,sha256=ITjkTJABQUhnVzUuLqEIeTC1YjIAkdQ-w-_Bql1EQu8,24821
|
1340
1349
|
pulumi_gcp/storage/object_acl.py,sha256=bz-KzsjEnElEigu3VUmkO3C0hsK86FBaumi4w0XZhTc,16538
|
@@ -1366,7 +1375,7 @@ pulumi_gcp/tpu/get_v2_runtime_versions.py,sha256=r9uqCOhvOaz2gosZy7JlhJ8PlMZH-6N
|
|
1366
1375
|
pulumi_gcp/tpu/node.py,sha256=Htp75fgYBacD0Osna4WOFamCT3796wCv39OFp_zODM4,50444
|
1367
1376
|
pulumi_gcp/tpu/outputs.py,sha256=ljZWgasz3UzZjErw4DsWX6PDhwpVgex5JGISeVIhid0,19368
|
1368
1377
|
pulumi_gcp/tpu/v2_vm.py,sha256=qSJ7B4n_U15I_ZEpjyR6_cURPVqLtRlkpK4jj-NmrJQ,67160
|
1369
|
-
pulumi_gcp/vertex/__init__.py,sha256=
|
1378
|
+
pulumi_gcp/vertex/__init__.py,sha256=_T81Haq-KUSfRY5RixqEB75yVwH7aXeIDKdB3JXlQT0,1361
|
1370
1379
|
pulumi_gcp/vertex/_inputs.py,sha256=ezvJ59RIvvjJd0HJvGb0iFePQZVTPH9bp-H9U40VCyM,102219
|
1371
1380
|
pulumi_gcp/vertex/ai_dataset.py,sha256=GWvp9afaGt8kOLVIsB-EgAqeroARSCETxnWD9x7M92o,31005
|
1372
1381
|
pulumi_gcp/vertex/ai_endpoint.py,sha256=DlFw_4FzijAp8lxwnyxBwtABsAXPQAJtsVVnJLTTcf4,49704
|
@@ -1374,6 +1383,7 @@ pulumi_gcp/vertex/ai_endpoint_iam_binding.py,sha256=6WE5W1z2dKhY8awJ0MeZU5hQJP_0
|
|
1374
1383
|
pulumi_gcp/vertex/ai_endpoint_iam_member.py,sha256=HRFaDhejeaIM0TEadgAVj05fVK2x52k0xELf0Ra_YNw,12363
|
1375
1384
|
pulumi_gcp/vertex/ai_endpoint_iam_policy.py,sha256=pUvYy2M6r-0PQwg3bUjp0biAqnHbX9ckHAp5X3Ci7QM,9710
|
1376
1385
|
pulumi_gcp/vertex/ai_feature_group.py,sha256=qyiLXKXOHqsRPpsC9KXl4YjY9w3x2NWw_mJCnIH1QeA,33134
|
1386
|
+
pulumi_gcp/vertex/ai_feature_group_feature.py,sha256=HNZHjQPir2WQBjMKJYnogq1dvkovSxrgPWtjJDI-tPA,35332
|
1377
1387
|
pulumi_gcp/vertex/ai_feature_online_store.py,sha256=TDVrzsl_thlN2g8d5hFAmD74G3vyl0MLUceuHMkzEnc,49517
|
1378
1388
|
pulumi_gcp/vertex/ai_feature_online_store_featureview.py,sha256=cx-2V3Ey0sz8wI62ycFd-cepWuiqIYPKHhmD_T_b09s,41110
|
1379
1389
|
pulumi_gcp/vertex/ai_feature_store.py,sha256=v6GSgVa-zrr8Tll2k9V-a_OSEOCfykjziJ7a7yK65Ro,42812
|
@@ -1437,14 +1447,14 @@ pulumi_gcp/workstations/get_workstation_iam_policy.py,sha256=y16YlBiMS5XMb2t8nyy
|
|
1437
1447
|
pulumi_gcp/workstations/outputs.py,sha256=aZEr659mmMBaaUXrSNfPWWyulnSFhE7S6tO9U_88E88,40240
|
1438
1448
|
pulumi_gcp/workstations/workstation.py,sha256=HuMKhVPQ7zWr2jUpDd2Aqr8mvNp2rQQo1TKdCGXbruQ,47273
|
1439
1449
|
pulumi_gcp/workstations/workstation_cluster.py,sha256=pFm6dHJhKcNyVuqtRg2ycK6Yeu4D-GdKEfuN2ZgKTws,56295
|
1440
|
-
pulumi_gcp/workstations/workstation_config.py,sha256=
|
1450
|
+
pulumi_gcp/workstations/workstation_config.py,sha256=MtdaZ86aRJuKxBoNiYMNfUDBkWbiaHsKj_3-MkRl2I0,108069
|
1441
1451
|
pulumi_gcp/workstations/workstation_config_iam_binding.py,sha256=tldTH1VjHhmDdasOnRODygnDhxNM20Arm3E8qEVz8Lw,34236
|
1442
1452
|
pulumi_gcp/workstations/workstation_config_iam_member.py,sha256=dG5xLBDHme35mj-2l_oCFSyNjF96f5D1tN8e51TV5es,33940
|
1443
1453
|
pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=ZS9JWOhvwHgpZdI12k2Ezk15Q8wn0xskjFsVHKE5YMk,30202
|
1444
1454
|
pulumi_gcp/workstations/workstation_iam_binding.py,sha256=sLyb9vNFrG9sh_1uGiWddwbZFGLtaj5JGY31oh-SwS8,35727
|
1445
1455
|
pulumi_gcp/workstations/workstation_iam_member.py,sha256=QOR7nZrcFdheKQrUxv6gOj74o1QZwiGcTxXvKTIWArY,35431
|
1446
1456
|
pulumi_gcp/workstations/workstation_iam_policy.py,sha256=t_pyrWOuX9A4kuJ3IV9S7Qg4Xb8zRRCzRDdatPshlIU,31795
|
1447
|
-
pulumi_gcp-7.
|
1448
|
-
pulumi_gcp-7.
|
1449
|
-
pulumi_gcp-7.
|
1450
|
-
pulumi_gcp-7.
|
1457
|
+
pulumi_gcp-7.8.0a1706310284.dist-info/METADATA,sha256=ssak4j94rL9bMOkyM8kZjpHVv3e6CluevoYvCLDylGY,2661
|
1458
|
+
pulumi_gcp-7.8.0a1706310284.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
1459
|
+
pulumi_gcp-7.8.0a1706310284.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1460
|
+
pulumi_gcp-7.8.0a1706310284.dist-info/RECORD,,
|
File without changes
|
{pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/top_level.txt
RENAMED
File without changes
|