pulumi-gcp 7.32.0a1721151794__py3-none-any.whl → 7.32.0a1721158586__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 +11 -0
- pulumi_gcp/alloydb/cluster.py +0 -24
- pulumi_gcp/bigquery/_inputs.py +0 -12
- pulumi_gcp/bigquery/dataset.py +0 -28
- pulumi_gcp/bigquery/dataset_access.py +0 -28
- pulumi_gcp/bigquery/outputs.py +0 -24
- pulumi_gcp/bigtable/authorized_view.py +104 -0
- pulumi_gcp/compute/global_address.py +16 -4
- pulumi_gcp/compute/target_instance.py +2 -2
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/gkehub/__init__.py +1 -0
- pulumi_gcp/gkehub/get_membership_binding.py +222 -0
- pulumi_gcp/gkehub/outputs.py +19 -0
- pulumi_gcp/iap/client.py +7 -7
- pulumi_gcp/kms/_inputs.py +40 -0
- pulumi_gcp/kms/crypto_key.py +103 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
- pulumi_gcp/kms/outputs.py +112 -0
- pulumi_gcp/networksecurity/address_group.py +1 -1
- pulumi_gcp/privilegedaccessmanager/entitlement.py +4 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +1 -0
- pulumi_gcp/securitycenter/_inputs.py +93 -0
- pulumi_gcp/securitycenter/outputs.py +59 -0
- pulumi_gcp/securitycenter/project_notification_config.py +518 -0
- pulumi_gcp/siteverification/__init__.py +8 -0
- pulumi_gcp/siteverification/get_token.py +221 -0
- {pulumi_gcp-7.32.0a1721151794.dist-info → pulumi_gcp-7.32.0a1721158586.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.32.0a1721151794.dist-info → pulumi_gcp-7.32.0a1721158586.dist-info}/RECORD +33 -29
- {pulumi_gcp-7.32.0a1721151794.dist-info → pulumi_gcp-7.32.0a1721158586.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.32.0a1721151794.dist-info → pulumi_gcp-7.32.0a1721158586.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -226,6 +226,8 @@ if typing.TYPE_CHECKING:
|
|
226
226
|
servicenetworking = __servicenetworking
|
227
227
|
import pulumi_gcp.serviceusage as __serviceusage
|
228
228
|
serviceusage = __serviceusage
|
229
|
+
import pulumi_gcp.siteverification as __siteverification
|
230
|
+
siteverification = __siteverification
|
229
231
|
import pulumi_gcp.sourcerepo as __sourcerepo
|
230
232
|
sourcerepo = __sourcerepo
|
231
233
|
import pulumi_gcp.spanner as __spanner
|
@@ -359,6 +361,7 @@ else:
|
|
359
361
|
servicedirectory = _utilities.lazy_import('pulumi_gcp.servicedirectory')
|
360
362
|
servicenetworking = _utilities.lazy_import('pulumi_gcp.servicenetworking')
|
361
363
|
serviceusage = _utilities.lazy_import('pulumi_gcp.serviceusage')
|
364
|
+
siteverification = _utilities.lazy_import('pulumi_gcp.siteverification')
|
362
365
|
sourcerepo = _utilities.lazy_import('pulumi_gcp.sourcerepo')
|
363
366
|
spanner = _utilities.lazy_import('pulumi_gcp.spanner')
|
364
367
|
sql = _utilities.lazy_import('pulumi_gcp.sql')
|
@@ -7031,6 +7034,14 @@ _utilities.register(
|
|
7031
7034
|
"gcp:securitycenter/projectCustomModule:ProjectCustomModule": "ProjectCustomModule"
|
7032
7035
|
}
|
7033
7036
|
},
|
7037
|
+
{
|
7038
|
+
"pkg": "gcp",
|
7039
|
+
"mod": "securitycenter/projectNotificationConfig",
|
7040
|
+
"fqn": "pulumi_gcp.securitycenter",
|
7041
|
+
"classes": {
|
7042
|
+
"gcp:securitycenter/projectNotificationConfig:ProjectNotificationConfig": "ProjectNotificationConfig"
|
7043
|
+
}
|
7044
|
+
},
|
7034
7045
|
{
|
7035
7046
|
"pkg": "gcp",
|
7036
7047
|
"mod": "securitycenter/source",
|
pulumi_gcp/alloydb/cluster.py
CHANGED
@@ -1044,18 +1044,6 @@ class Cluster(pulumi.CustomResource):
|
|
1044
1044
|
secondary_config: Optional[pulumi.Input[Union['ClusterSecondaryConfigArgs', 'ClusterSecondaryConfigArgsDict']]] = None,
|
1045
1045
|
__props__=None):
|
1046
1046
|
"""
|
1047
|
-
A managed alloydb cluster.
|
1048
|
-
|
1049
|
-
To get more information about Cluster, see:
|
1050
|
-
|
1051
|
-
* [API documentation](https://cloud.google.com/alloydb/docs/reference/rest/v1/projects.locations.clusters/create)
|
1052
|
-
* How-to Guides
|
1053
|
-
* [AlloyDB](https://cloud.google.com/alloydb/docs/)
|
1054
|
-
|
1055
|
-
> **Note:** Users can promote a secondary cluster to a primary cluster with the help of `cluster_type`.
|
1056
|
-
To promote, users have to set the `cluster_type` property as `PRIMARY` and remove the `secondary_config` field from cluster configuration.
|
1057
|
-
See Example.
|
1058
|
-
|
1059
1047
|
## Example Usage
|
1060
1048
|
|
1061
1049
|
### Alloydb Cluster Basic
|
@@ -1310,18 +1298,6 @@ class Cluster(pulumi.CustomResource):
|
|
1310
1298
|
args: ClusterArgs,
|
1311
1299
|
opts: Optional[pulumi.ResourceOptions] = None):
|
1312
1300
|
"""
|
1313
|
-
A managed alloydb cluster.
|
1314
|
-
|
1315
|
-
To get more information about Cluster, see:
|
1316
|
-
|
1317
|
-
* [API documentation](https://cloud.google.com/alloydb/docs/reference/rest/v1/projects.locations.clusters/create)
|
1318
|
-
* How-to Guides
|
1319
|
-
* [AlloyDB](https://cloud.google.com/alloydb/docs/)
|
1320
|
-
|
1321
|
-
> **Note:** Users can promote a secondary cluster to a primary cluster with the help of `cluster_type`.
|
1322
|
-
To promote, users have to set the `cluster_type` property as `PRIMARY` and remove the `secondary_config` field from cluster configuration.
|
1323
|
-
See Example.
|
1324
|
-
|
1325
1301
|
## Example Usage
|
1326
1302
|
|
1327
1303
|
### Alloydb Cluster Basic
|
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -1388,13 +1388,9 @@ if not MYPY:
|
|
1388
1388
|
special_group: NotRequired[pulumi.Input[str]]
|
1389
1389
|
"""
|
1390
1390
|
A special group to grant access to. Possible values include:
|
1391
|
-
|
1392
1391
|
* `projectOwners`: Owners of the enclosing project.
|
1393
|
-
|
1394
1392
|
* `projectReaders`: Readers of the enclosing project.
|
1395
|
-
|
1396
1393
|
* `projectWriters`: Writers of the enclosing project.
|
1397
|
-
|
1398
1394
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1399
1395
|
"""
|
1400
1396
|
user_by_email: NotRequired[pulumi.Input[str]]
|
@@ -1446,13 +1442,9 @@ class DatasetAccessArgs:
|
|
1446
1442
|
needs to be granted again via an update operation.
|
1447
1443
|
Structure is documented below.
|
1448
1444
|
:param pulumi.Input[str] special_group: A special group to grant access to. Possible values include:
|
1449
|
-
|
1450
1445
|
* `projectOwners`: Owners of the enclosing project.
|
1451
|
-
|
1452
1446
|
* `projectReaders`: Readers of the enclosing project.
|
1453
|
-
|
1454
1447
|
* `projectWriters`: Writers of the enclosing project.
|
1455
|
-
|
1456
1448
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1457
1449
|
:param pulumi.Input[str] user_by_email: An email address of a user to grant access to. For example:
|
1458
1450
|
fred@example.com
|
@@ -1571,13 +1563,9 @@ class DatasetAccessArgs:
|
|
1571
1563
|
def special_group(self) -> Optional[pulumi.Input[str]]:
|
1572
1564
|
"""
|
1573
1565
|
A special group to grant access to. Possible values include:
|
1574
|
-
|
1575
1566
|
* `projectOwners`: Owners of the enclosing project.
|
1576
|
-
|
1577
1567
|
* `projectReaders`: Readers of the enclosing project.
|
1578
|
-
|
1579
1568
|
* `projectWriters`: Writers of the enclosing project.
|
1580
|
-
|
1581
1569
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1582
1570
|
"""
|
1583
1571
|
return pulumi.get(self, "special_group")
|
pulumi_gcp/bigquery/dataset.py
CHANGED
@@ -63,7 +63,6 @@ class DatasetArgs:
|
|
63
63
|
Structure is documented below.
|
64
64
|
:param pulumi.Input[int] default_partition_expiration_ms: The default partition expiration for all partitioned tables in
|
65
65
|
the dataset, in milliseconds.
|
66
|
-
|
67
66
|
Once this property is set, all newly-created partitioned tables in
|
68
67
|
the dataset will have an `expirationMs` property in the `timePartitioning`
|
69
68
|
settings set to this value, and changing the value will only
|
@@ -77,7 +76,6 @@ class DatasetArgs:
|
|
77
76
|
over the default partition expiration time indicated by this property.
|
78
77
|
:param pulumi.Input[int] default_table_expiration_ms: The default lifetime of all tables in the dataset, in milliseconds.
|
79
78
|
The minimum value is 3600000 milliseconds (one hour).
|
80
|
-
|
81
79
|
Once this property is set, all newly-created tables in the dataset
|
82
80
|
will have an `expirationTime` property set to the creation time plus
|
83
81
|
the value in this property, and changing the value will only affect
|
@@ -104,12 +102,10 @@ class DatasetArgs:
|
|
104
102
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
105
103
|
:param pulumi.Input[str] location: The geographic location where the dataset should reside.
|
106
104
|
See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations).
|
107
|
-
|
108
105
|
There are two types of locations, regional or multi-regional. A regional
|
109
106
|
location is a specific geographic place, such as Tokyo, and a multi-regional
|
110
107
|
location is a large geographic area, such as the United States, that
|
111
108
|
contains at least two geographic places.
|
112
|
-
|
113
109
|
The default value is multi-regional location `US`.
|
114
110
|
Changing this forces a new resource to be created.
|
115
111
|
:param pulumi.Input[str] max_time_travel_hours: Defines the time travel window in hours. The value can be from 48 to 168 hours (2 to 7 days).
|
@@ -230,7 +226,6 @@ class DatasetArgs:
|
|
230
226
|
"""
|
231
227
|
The default partition expiration for all partitioned tables in
|
232
228
|
the dataset, in milliseconds.
|
233
|
-
|
234
229
|
Once this property is set, all newly-created partitioned tables in
|
235
230
|
the dataset will have an `expirationMs` property in the `timePartitioning`
|
236
231
|
settings set to this value, and changing the value will only
|
@@ -255,7 +250,6 @@ class DatasetArgs:
|
|
255
250
|
"""
|
256
251
|
The default lifetime of all tables in the dataset, in milliseconds.
|
257
252
|
The minimum value is 3600000 milliseconds (one hour).
|
258
|
-
|
259
253
|
Once this property is set, all newly-created tables in the dataset
|
260
254
|
will have an `expirationTime` property set to the creation time plus
|
261
255
|
the value in this property, and changing the value will only affect
|
@@ -359,12 +353,10 @@ class DatasetArgs:
|
|
359
353
|
"""
|
360
354
|
The geographic location where the dataset should reside.
|
361
355
|
See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations).
|
362
|
-
|
363
356
|
There are two types of locations, regional or multi-regional. A regional
|
364
357
|
location is a specific geographic place, such as Tokyo, and a multi-regional
|
365
358
|
location is a large geographic area, such as the United States, that
|
366
359
|
contains at least two geographic places.
|
367
|
-
|
368
360
|
The default value is multi-regional location `US`.
|
369
361
|
Changing this forces a new resource to be created.
|
370
362
|
"""
|
@@ -484,7 +476,6 @@ class _DatasetState:
|
|
484
476
|
Structure is documented below.
|
485
477
|
:param pulumi.Input[int] default_partition_expiration_ms: The default partition expiration for all partitioned tables in
|
486
478
|
the dataset, in milliseconds.
|
487
|
-
|
488
479
|
Once this property is set, all newly-created partitioned tables in
|
489
480
|
the dataset will have an `expirationMs` property in the `timePartitioning`
|
490
481
|
settings set to this value, and changing the value will only
|
@@ -498,7 +489,6 @@ class _DatasetState:
|
|
498
489
|
over the default partition expiration time indicated by this property.
|
499
490
|
:param pulumi.Input[int] default_table_expiration_ms: The default lifetime of all tables in the dataset, in milliseconds.
|
500
491
|
The minimum value is 3600000 milliseconds (one hour).
|
501
|
-
|
502
492
|
Once this property is set, all newly-created tables in the dataset
|
503
493
|
will have an `expirationTime` property set to the creation time plus
|
504
494
|
the value in this property, and changing the value will only affect
|
@@ -529,12 +519,10 @@ class _DatasetState:
|
|
529
519
|
milliseconds since the epoch.
|
530
520
|
:param pulumi.Input[str] location: The geographic location where the dataset should reside.
|
531
521
|
See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations).
|
532
|
-
|
533
522
|
There are two types of locations, regional or multi-regional. A regional
|
534
523
|
location is a specific geographic place, such as Tokyo, and a multi-regional
|
535
524
|
location is a large geographic area, such as the United States, that
|
536
525
|
contains at least two geographic places.
|
537
|
-
|
538
526
|
The default value is multi-regional location `US`.
|
539
527
|
Changing this forces a new resource to be created.
|
540
528
|
:param pulumi.Input[str] max_time_travel_hours: Defines the time travel window in hours. The value can be from 48 to 168 hours (2 to 7 days).
|
@@ -684,7 +672,6 @@ class _DatasetState:
|
|
684
672
|
"""
|
685
673
|
The default partition expiration for all partitioned tables in
|
686
674
|
the dataset, in milliseconds.
|
687
|
-
|
688
675
|
Once this property is set, all newly-created partitioned tables in
|
689
676
|
the dataset will have an `expirationMs` property in the `timePartitioning`
|
690
677
|
settings set to this value, and changing the value will only
|
@@ -709,7 +696,6 @@ class _DatasetState:
|
|
709
696
|
"""
|
710
697
|
The default lifetime of all tables in the dataset, in milliseconds.
|
711
698
|
The minimum value is 3600000 milliseconds (one hour).
|
712
|
-
|
713
699
|
Once this property is set, all newly-created tables in the dataset
|
714
700
|
will have an `expirationTime` property set to the creation time plus
|
715
701
|
the value in this property, and changing the value will only affect
|
@@ -850,12 +836,10 @@ class _DatasetState:
|
|
850
836
|
"""
|
851
837
|
The geographic location where the dataset should reside.
|
852
838
|
See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations).
|
853
|
-
|
854
839
|
There are two types of locations, regional or multi-regional. A regional
|
855
840
|
location is a specific geographic place, such as Tokyo, and a multi-regional
|
856
841
|
location is a large geographic area, such as the United States, that
|
857
842
|
contains at least two geographic places.
|
858
|
-
|
859
843
|
The default value is multi-regional location `US`.
|
860
844
|
Changing this forces a new resource to be created.
|
861
845
|
"""
|
@@ -1191,7 +1175,6 @@ class Dataset(pulumi.CustomResource):
|
|
1191
1175
|
Structure is documented below.
|
1192
1176
|
:param pulumi.Input[int] default_partition_expiration_ms: The default partition expiration for all partitioned tables in
|
1193
1177
|
the dataset, in milliseconds.
|
1194
|
-
|
1195
1178
|
Once this property is set, all newly-created partitioned tables in
|
1196
1179
|
the dataset will have an `expirationMs` property in the `timePartitioning`
|
1197
1180
|
settings set to this value, and changing the value will only
|
@@ -1205,7 +1188,6 @@ class Dataset(pulumi.CustomResource):
|
|
1205
1188
|
over the default partition expiration time indicated by this property.
|
1206
1189
|
:param pulumi.Input[int] default_table_expiration_ms: The default lifetime of all tables in the dataset, in milliseconds.
|
1207
1190
|
The minimum value is 3600000 milliseconds (one hour).
|
1208
|
-
|
1209
1191
|
Once this property is set, all newly-created tables in the dataset
|
1210
1192
|
will have an `expirationTime` property set to the creation time plus
|
1211
1193
|
the value in this property, and changing the value will only affect
|
@@ -1232,12 +1214,10 @@ class Dataset(pulumi.CustomResource):
|
|
1232
1214
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
1233
1215
|
:param pulumi.Input[str] location: The geographic location where the dataset should reside.
|
1234
1216
|
See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations).
|
1235
|
-
|
1236
1217
|
There are two types of locations, regional or multi-regional. A regional
|
1237
1218
|
location is a specific geographic place, such as Tokyo, and a multi-regional
|
1238
1219
|
location is a large geographic area, such as the United States, that
|
1239
1220
|
contains at least two geographic places.
|
1240
|
-
|
1241
1221
|
The default value is multi-regional location `US`.
|
1242
1222
|
Changing this forces a new resource to be created.
|
1243
1223
|
:param pulumi.Input[str] max_time_travel_hours: Defines the time travel window in hours. The value can be from 48 to 168 hours (2 to 7 days).
|
@@ -1588,7 +1568,6 @@ class Dataset(pulumi.CustomResource):
|
|
1588
1568
|
Structure is documented below.
|
1589
1569
|
:param pulumi.Input[int] default_partition_expiration_ms: The default partition expiration for all partitioned tables in
|
1590
1570
|
the dataset, in milliseconds.
|
1591
|
-
|
1592
1571
|
Once this property is set, all newly-created partitioned tables in
|
1593
1572
|
the dataset will have an `expirationMs` property in the `timePartitioning`
|
1594
1573
|
settings set to this value, and changing the value will only
|
@@ -1602,7 +1581,6 @@ class Dataset(pulumi.CustomResource):
|
|
1602
1581
|
over the default partition expiration time indicated by this property.
|
1603
1582
|
:param pulumi.Input[int] default_table_expiration_ms: The default lifetime of all tables in the dataset, in milliseconds.
|
1604
1583
|
The minimum value is 3600000 milliseconds (one hour).
|
1605
|
-
|
1606
1584
|
Once this property is set, all newly-created tables in the dataset
|
1607
1585
|
will have an `expirationTime` property set to the creation time plus
|
1608
1586
|
the value in this property, and changing the value will only affect
|
@@ -1633,12 +1611,10 @@ class Dataset(pulumi.CustomResource):
|
|
1633
1611
|
milliseconds since the epoch.
|
1634
1612
|
:param pulumi.Input[str] location: The geographic location where the dataset should reside.
|
1635
1613
|
See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations).
|
1636
|
-
|
1637
1614
|
There are two types of locations, regional or multi-regional. A regional
|
1638
1615
|
location is a specific geographic place, such as Tokyo, and a multi-regional
|
1639
1616
|
location is a large geographic area, such as the United States, that
|
1640
1617
|
contains at least two geographic places.
|
1641
|
-
|
1642
1618
|
The default value is multi-regional location `US`.
|
1643
1619
|
Changing this forces a new resource to be created.
|
1644
1620
|
:param pulumi.Input[str] max_time_travel_hours: Defines the time travel window in hours. The value can be from 48 to 168 hours (2 to 7 days).
|
@@ -1750,7 +1726,6 @@ class Dataset(pulumi.CustomResource):
|
|
1750
1726
|
"""
|
1751
1727
|
The default partition expiration for all partitioned tables in
|
1752
1728
|
the dataset, in milliseconds.
|
1753
|
-
|
1754
1729
|
Once this property is set, all newly-created partitioned tables in
|
1755
1730
|
the dataset will have an `expirationMs` property in the `timePartitioning`
|
1756
1731
|
settings set to this value, and changing the value will only
|
@@ -1771,7 +1746,6 @@ class Dataset(pulumi.CustomResource):
|
|
1771
1746
|
"""
|
1772
1747
|
The default lifetime of all tables in the dataset, in milliseconds.
|
1773
1748
|
The minimum value is 3600000 milliseconds (one hour).
|
1774
|
-
|
1775
1749
|
Once this property is set, all newly-created tables in the dataset
|
1776
1750
|
will have an `expirationTime` property set to the creation time plus
|
1777
1751
|
the value in this property, and changing the value will only affect
|
@@ -1872,12 +1846,10 @@ class Dataset(pulumi.CustomResource):
|
|
1872
1846
|
"""
|
1873
1847
|
The geographic location where the dataset should reside.
|
1874
1848
|
See [official docs](https://cloud.google.com/bigquery/docs/dataset-locations).
|
1875
|
-
|
1876
1849
|
There are two types of locations, regional or multi-regional. A regional
|
1877
1850
|
location is a specific geographic place, such as Tokyo, and a multi-regional
|
1878
1851
|
location is a large geographic area, such as the United States, that
|
1879
1852
|
contains at least two geographic places.
|
1880
|
-
|
1881
1853
|
The default value is multi-regional location `US`.
|
1882
1854
|
Changing this forces a new resource to be created.
|
1883
1855
|
"""
|
@@ -62,13 +62,9 @@ class DatasetAccessInitArgs:
|
|
62
62
|
needs to be granted again via an update operation.
|
63
63
|
Structure is documented below.
|
64
64
|
:param pulumi.Input[str] special_group: A special group to grant access to. Possible values include:
|
65
|
-
|
66
65
|
* `projectOwners`: Owners of the enclosing project.
|
67
|
-
|
68
66
|
* `projectReaders`: Readers of the enclosing project.
|
69
|
-
|
70
67
|
* `projectWriters`: Writers of the enclosing project.
|
71
|
-
|
72
68
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
73
69
|
:param pulumi.Input[str] user_by_email: An email address of a user to grant access to. For example:
|
74
70
|
fred@example.com
|
@@ -221,13 +217,9 @@ class DatasetAccessInitArgs:
|
|
221
217
|
def special_group(self) -> Optional[pulumi.Input[str]]:
|
222
218
|
"""
|
223
219
|
A special group to grant access to. Possible values include:
|
224
|
-
|
225
220
|
* `projectOwners`: Owners of the enclosing project.
|
226
|
-
|
227
221
|
* `projectReaders`: Readers of the enclosing project.
|
228
|
-
|
229
222
|
* `projectWriters`: Writers of the enclosing project.
|
230
|
-
|
231
223
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
232
224
|
"""
|
233
225
|
return pulumi.get(self, "special_group")
|
@@ -314,13 +306,9 @@ class _DatasetAccessState:
|
|
314
306
|
needs to be granted again via an update operation.
|
315
307
|
Structure is documented below.
|
316
308
|
:param pulumi.Input[str] special_group: A special group to grant access to. Possible values include:
|
317
|
-
|
318
309
|
* `projectOwners`: Owners of the enclosing project.
|
319
|
-
|
320
310
|
* `projectReaders`: Readers of the enclosing project.
|
321
|
-
|
322
311
|
* `projectWriters`: Writers of the enclosing project.
|
323
|
-
|
324
312
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
325
313
|
:param pulumi.Input[str] user_by_email: An email address of a user to grant access to. For example:
|
326
314
|
fred@example.com
|
@@ -489,13 +477,9 @@ class _DatasetAccessState:
|
|
489
477
|
def special_group(self) -> Optional[pulumi.Input[str]]:
|
490
478
|
"""
|
491
479
|
A special group to grant access to. Possible values include:
|
492
|
-
|
493
480
|
* `projectOwners`: Owners of the enclosing project.
|
494
|
-
|
495
481
|
* `projectReaders`: Readers of the enclosing project.
|
496
|
-
|
497
482
|
* `projectWriters`: Writers of the enclosing project.
|
498
|
-
|
499
483
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
500
484
|
"""
|
501
485
|
return pulumi.get(self, "special_group")
|
@@ -687,13 +671,9 @@ class DatasetAccess(pulumi.CustomResource):
|
|
687
671
|
needs to be granted again via an update operation.
|
688
672
|
Structure is documented below.
|
689
673
|
:param pulumi.Input[str] special_group: A special group to grant access to. Possible values include:
|
690
|
-
|
691
674
|
* `projectOwners`: Owners of the enclosing project.
|
692
|
-
|
693
675
|
* `projectReaders`: Readers of the enclosing project.
|
694
|
-
|
695
676
|
* `projectWriters`: Writers of the enclosing project.
|
696
|
-
|
697
677
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
698
678
|
:param pulumi.Input[str] user_by_email: An email address of a user to grant access to. For example:
|
699
679
|
fred@example.com
|
@@ -923,13 +903,9 @@ class DatasetAccess(pulumi.CustomResource):
|
|
923
903
|
needs to be granted again via an update operation.
|
924
904
|
Structure is documented below.
|
925
905
|
:param pulumi.Input[str] special_group: A special group to grant access to. Possible values include:
|
926
|
-
|
927
906
|
* `projectOwners`: Owners of the enclosing project.
|
928
|
-
|
929
907
|
* `projectReaders`: Readers of the enclosing project.
|
930
|
-
|
931
908
|
* `projectWriters`: Writers of the enclosing project.
|
932
|
-
|
933
909
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
934
910
|
:param pulumi.Input[str] user_by_email: An email address of a user to grant access to. For example:
|
935
911
|
fred@example.com
|
@@ -1055,13 +1031,9 @@ class DatasetAccess(pulumi.CustomResource):
|
|
1055
1031
|
def special_group(self) -> pulumi.Output[Optional[str]]:
|
1056
1032
|
"""
|
1057
1033
|
A special group to grant access to. Possible values include:
|
1058
|
-
|
1059
1034
|
* `projectOwners`: Owners of the enclosing project.
|
1060
|
-
|
1061
1035
|
* `projectReaders`: Readers of the enclosing project.
|
1062
|
-
|
1063
1036
|
* `projectWriters`: Writers of the enclosing project.
|
1064
|
-
|
1065
1037
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1066
1038
|
"""
|
1067
1039
|
return pulumi.get(self, "special_group")
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -1125,13 +1125,9 @@ class DatasetAccess(dict):
|
|
1125
1125
|
needs to be granted again via an update operation.
|
1126
1126
|
Structure is documented below.
|
1127
1127
|
:param str special_group: A special group to grant access to. Possible values include:
|
1128
|
-
|
1129
1128
|
* `projectOwners`: Owners of the enclosing project.
|
1130
|
-
|
1131
1129
|
* `projectReaders`: Readers of the enclosing project.
|
1132
|
-
|
1133
1130
|
* `projectWriters`: Writers of the enclosing project.
|
1134
|
-
|
1135
1131
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1136
1132
|
:param str user_by_email: An email address of a user to grant access to. For example:
|
1137
1133
|
fred@example.com
|
@@ -1226,13 +1222,9 @@ class DatasetAccess(dict):
|
|
1226
1222
|
def special_group(self) -> Optional[str]:
|
1227
1223
|
"""
|
1228
1224
|
A special group to grant access to. Possible values include:
|
1229
|
-
|
1230
1225
|
* `projectOwners`: Owners of the enclosing project.
|
1231
|
-
|
1232
1226
|
* `projectReaders`: Readers of the enclosing project.
|
1233
|
-
|
1234
1227
|
* `projectWriters`: Writers of the enclosing project.
|
1235
|
-
|
1236
1228
|
* `allAuthenticatedUsers`: All authenticated BigQuery users.
|
1237
1229
|
"""
|
1238
1230
|
return pulumi.get(self, "special_group")
|
@@ -5998,17 +5990,9 @@ class GetDatasetAccessResult(dict):
|
|
5998
5990
|
set. If that routine is updated by any user, access to the routine
|
5999
5991
|
needs to be granted again via an update operation.
|
6000
5992
|
:param str special_group: A special group to grant access to. Possible values include:
|
6001
|
-
|
6002
|
-
|
6003
5993
|
* 'projectOwners': Owners of the enclosing project.
|
6004
|
-
|
6005
|
-
|
6006
5994
|
* 'projectReaders': Readers of the enclosing project.
|
6007
|
-
|
6008
|
-
|
6009
5995
|
* 'projectWriters': Writers of the enclosing project.
|
6010
|
-
|
6011
|
-
|
6012
5996
|
* 'allAuthenticatedUsers': All authenticated BigQuery users.
|
6013
5997
|
:param str user_by_email: An email address of a user to grant access to. For example:
|
6014
5998
|
fred@example.com
|
@@ -6091,17 +6075,9 @@ class GetDatasetAccessResult(dict):
|
|
6091
6075
|
def special_group(self) -> str:
|
6092
6076
|
"""
|
6093
6077
|
A special group to grant access to. Possible values include:
|
6094
|
-
|
6095
|
-
|
6096
6078
|
* 'projectOwners': Owners of the enclosing project.
|
6097
|
-
|
6098
|
-
|
6099
6079
|
* 'projectReaders': Readers of the enclosing project.
|
6100
|
-
|
6101
|
-
|
6102
6080
|
* 'projectWriters': Writers of the enclosing project.
|
6103
|
-
|
6104
|
-
|
6105
6081
|
* 'allAuthenticatedUsers': All authenticated BigQuery users.
|
6106
6082
|
"""
|
6107
6083
|
return pulumi.get(self, "special_group")
|
@@ -243,6 +243,58 @@ class AuthorizedView(pulumi.CustomResource):
|
|
243
243
|
"""
|
244
244
|
## Example Usage
|
245
245
|
|
246
|
+
```python
|
247
|
+
import pulumi
|
248
|
+
import pulumi_gcp as gcp
|
249
|
+
import pulumi_std as std
|
250
|
+
|
251
|
+
instance = gcp.bigtable.Instance("instance",
|
252
|
+
name="tf-instance",
|
253
|
+
clusters=[{
|
254
|
+
"clusterId": "tf-instance-cluster",
|
255
|
+
"zone": "us-central1-b",
|
256
|
+
"numNodes": 3,
|
257
|
+
"storageType": "HDD",
|
258
|
+
}])
|
259
|
+
table = gcp.bigtable.Table("table",
|
260
|
+
name="tf-table",
|
261
|
+
instance_name=instance.name,
|
262
|
+
split_keys=[
|
263
|
+
"a",
|
264
|
+
"b",
|
265
|
+
"c",
|
266
|
+
],
|
267
|
+
column_families=[
|
268
|
+
{
|
269
|
+
"family": "family-first",
|
270
|
+
},
|
271
|
+
{
|
272
|
+
"family": "family-second",
|
273
|
+
},
|
274
|
+
],
|
275
|
+
change_stream_retention="24h0m0s")
|
276
|
+
authorized_view = gcp.bigtable.AuthorizedView("authorized_view",
|
277
|
+
name="tf-authorized-view",
|
278
|
+
instance_name=instance.name,
|
279
|
+
table_name=table.name,
|
280
|
+
subset_view={
|
281
|
+
"rowPrefixes": [std.base64encode(input="prefix#").result],
|
282
|
+
"familySubsets": [
|
283
|
+
{
|
284
|
+
"familyName": "family-first",
|
285
|
+
"qualifiers": [
|
286
|
+
std.base64encode(input="qualifier").result,
|
287
|
+
std.base64encode(input="qualifier-second").result,
|
288
|
+
],
|
289
|
+
},
|
290
|
+
{
|
291
|
+
"familyName": "family-second",
|
292
|
+
"qualifierPrefixes": [""],
|
293
|
+
},
|
294
|
+
],
|
295
|
+
})
|
296
|
+
```
|
297
|
+
|
246
298
|
## Import
|
247
299
|
|
248
300
|
Bigtable Authorized Views can be imported using any of these accepted formats:
|
@@ -287,6 +339,58 @@ class AuthorizedView(pulumi.CustomResource):
|
|
287
339
|
"""
|
288
340
|
## Example Usage
|
289
341
|
|
342
|
+
```python
|
343
|
+
import pulumi
|
344
|
+
import pulumi_gcp as gcp
|
345
|
+
import pulumi_std as std
|
346
|
+
|
347
|
+
instance = gcp.bigtable.Instance("instance",
|
348
|
+
name="tf-instance",
|
349
|
+
clusters=[{
|
350
|
+
"clusterId": "tf-instance-cluster",
|
351
|
+
"zone": "us-central1-b",
|
352
|
+
"numNodes": 3,
|
353
|
+
"storageType": "HDD",
|
354
|
+
}])
|
355
|
+
table = gcp.bigtable.Table("table",
|
356
|
+
name="tf-table",
|
357
|
+
instance_name=instance.name,
|
358
|
+
split_keys=[
|
359
|
+
"a",
|
360
|
+
"b",
|
361
|
+
"c",
|
362
|
+
],
|
363
|
+
column_families=[
|
364
|
+
{
|
365
|
+
"family": "family-first",
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"family": "family-second",
|
369
|
+
},
|
370
|
+
],
|
371
|
+
change_stream_retention="24h0m0s")
|
372
|
+
authorized_view = gcp.bigtable.AuthorizedView("authorized_view",
|
373
|
+
name="tf-authorized-view",
|
374
|
+
instance_name=instance.name,
|
375
|
+
table_name=table.name,
|
376
|
+
subset_view={
|
377
|
+
"rowPrefixes": [std.base64encode(input="prefix#").result],
|
378
|
+
"familySubsets": [
|
379
|
+
{
|
380
|
+
"familyName": "family-first",
|
381
|
+
"qualifiers": [
|
382
|
+
std.base64encode(input="qualifier").result,
|
383
|
+
std.base64encode(input="qualifier-second").result,
|
384
|
+
],
|
385
|
+
},
|
386
|
+
{
|
387
|
+
"familyName": "family-second",
|
388
|
+
"qualifierPrefixes": [""],
|
389
|
+
},
|
390
|
+
],
|
391
|
+
})
|
392
|
+
```
|
393
|
+
|
290
394
|
## Import
|
291
395
|
|
292
396
|
Bigtable Authorized Views can be imported using any of these accepted formats:
|
@@ -270,6 +270,7 @@ class _GlobalAddressState:
|
|
270
270
|
Possible values are: `EXTERNAL`, `INTERNAL`.
|
271
271
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
272
272
|
:param pulumi.Input[str] description: An optional description of this resource.
|
273
|
+
: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.
|
273
274
|
:param pulumi.Input[str] ip_version: The IP Version that will be used by this address. The default value is `IPV4`.
|
274
275
|
Possible values are: `IPV4`, `IPV6`.
|
275
276
|
:param pulumi.Input[str] label_fingerprint: The fingerprint used for optimistic locking of this resource. Used internally during updates.
|
@@ -297,7 +298,8 @@ class _GlobalAddressState:
|
|
297
298
|
when purpose=PRIVATE_SERVICE_CONNECT
|
298
299
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
299
300
|
If it is not provided, the provider project is used.
|
300
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
301
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
302
|
+
and default labels configured on the provider.
|
301
303
|
:param pulumi.Input[str] purpose: The purpose of the resource. Possible values include:
|
302
304
|
* VPC_PEERING - for peer networks
|
303
305
|
* PRIVATE_SERVICE_CONNECT - for Private Service Connect networks
|
@@ -391,6 +393,9 @@ class _GlobalAddressState:
|
|
391
393
|
@property
|
392
394
|
@pulumi.getter(name="effectiveLabels")
|
393
395
|
def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
396
|
+
"""
|
397
|
+
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
398
|
+
"""
|
394
399
|
return pulumi.get(self, "effective_labels")
|
395
400
|
|
396
401
|
@effective_labels.setter
|
@@ -505,7 +510,8 @@ class _GlobalAddressState:
|
|
505
510
|
@pulumi.getter(name="pulumiLabels")
|
506
511
|
def pulumi_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
507
512
|
"""
|
508
|
-
The combination of labels configured directly on the resource
|
513
|
+
The combination of labels configured directly on the resource
|
514
|
+
and default labels configured on the provider.
|
509
515
|
"""
|
510
516
|
return pulumi.get(self, "pulumi_labels")
|
511
517
|
|
@@ -818,6 +824,7 @@ class GlobalAddress(pulumi.CustomResource):
|
|
818
824
|
Possible values are: `EXTERNAL`, `INTERNAL`.
|
819
825
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
820
826
|
:param pulumi.Input[str] description: An optional description of this resource.
|
827
|
+
: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.
|
821
828
|
:param pulumi.Input[str] ip_version: The IP Version that will be used by this address. The default value is `IPV4`.
|
822
829
|
Possible values are: `IPV4`, `IPV6`.
|
823
830
|
:param pulumi.Input[str] label_fingerprint: The fingerprint used for optimistic locking of this resource. Used internally during updates.
|
@@ -845,7 +852,8 @@ class GlobalAddress(pulumi.CustomResource):
|
|
845
852
|
when purpose=PRIVATE_SERVICE_CONNECT
|
846
853
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
847
854
|
If it is not provided, the provider project is used.
|
848
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
855
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
856
|
+
and default labels configured on the provider.
|
849
857
|
:param pulumi.Input[str] purpose: The purpose of the resource. Possible values include:
|
850
858
|
* VPC_PEERING - for peer networks
|
851
859
|
* PRIVATE_SERVICE_CONNECT - for Private Service Connect networks
|
@@ -913,6 +921,9 @@ class GlobalAddress(pulumi.CustomResource):
|
|
913
921
|
@property
|
914
922
|
@pulumi.getter(name="effectiveLabels")
|
915
923
|
def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
924
|
+
"""
|
925
|
+
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
926
|
+
"""
|
916
927
|
return pulumi.get(self, "effective_labels")
|
917
928
|
|
918
929
|
@property
|
@@ -995,7 +1006,8 @@ class GlobalAddress(pulumi.CustomResource):
|
|
995
1006
|
@pulumi.getter(name="pulumiLabels")
|
996
1007
|
def pulumi_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
997
1008
|
"""
|
998
|
-
The combination of labels configured directly on the resource
|
1009
|
+
The combination of labels configured directly on the resource
|
1010
|
+
and default labels configured on the provider.
|
999
1011
|
"""
|
1000
1012
|
return pulumi.get(self, "pulumi_labels")
|
1001
1013
|
|