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