pulumi-gcp 8.31.0__py3-none-any.whl → 8.31.0a1747205151__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +0 -8
- pulumi_gcp/alloydb/_inputs.py +0 -164
- pulumi_gcp/alloydb/outputs.py +0 -211
- pulumi_gcp/apigee/_inputs.py +0 -20
- pulumi_gcp/apigee/outputs.py +0 -12
- pulumi_gcp/bigquery/routine.py +0 -56
- pulumi_gcp/bigtable/table.py +7 -7
- pulumi_gcp/certificateauthority/_inputs.py +19 -20
- pulumi_gcp/certificateauthority/authority.py +0 -70
- pulumi_gcp/certificateauthority/outputs.py +11 -12
- pulumi_gcp/cloudfunctionsv2/function.py +4 -4
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +0 -312
- pulumi_gcp/compute/get_health_check.py +1 -12
- pulumi_gcp/compute/health_check.py +0 -120
- pulumi_gcp/compute/outputs.py +0 -353
- pulumi_gcp/compute/region_health_check.py +0 -120
- pulumi_gcp/container/_inputs.py +6 -6
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dataproc/get_metastore_service.py +12 -1
- pulumi_gcp/dataproc/metastore_service.py +61 -0
- pulumi_gcp/diagflow/_inputs.py +2894 -6530
- pulumi_gcp/diagflow/cx_flow.py +0 -304
- pulumi_gcp/diagflow/cx_page.py +0 -290
- pulumi_gcp/diagflow/outputs.py +1876 -4630
- pulumi_gcp/netapp/backup.py +0 -56
- pulumi_gcp/netapp/backup_vault.py +0 -185
- pulumi_gcp/netapp/storage_pool.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +0 -47
- pulumi_gcp/networkconnectivity/regional_endpoint.py +13 -13
- pulumi_gcp/networkservices/_inputs.py +0 -43
- pulumi_gcp/networkservices/edge_cache_origin.py +0 -61
- pulumi_gcp/networkservices/outputs.py +0 -43
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +61 -0
- pulumi_gcp/spanner/database.py +0 -56
- pulumi_gcp/spanner/get_database.py +1 -12
- pulumi_gcp/storage/bucket.py +4 -4
- pulumi_gcp/storage/get_bucket_object_content.py +1 -29
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/RECORD +44 -45
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/WHEEL +1 -1
- pulumi_gcp/compute/cross_site_network.py +0 -374
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigquery/routine.py
CHANGED
@@ -36,7 +36,6 @@ class RoutineArgs:
|
|
36
36
|
remote_function_options: Optional[pulumi.Input['RoutineRemoteFunctionOptionsArgs']] = None,
|
37
37
|
return_table_type: Optional[pulumi.Input[builtins.str]] = None,
|
38
38
|
return_type: Optional[pulumi.Input[builtins.str]] = None,
|
39
|
-
security_mode: Optional[pulumi.Input[builtins.str]] = None,
|
40
39
|
spark_options: Optional[pulumi.Input['RoutineSparkOptionsArgs']] = None):
|
41
40
|
"""
|
42
41
|
The set of arguments for constructing a Routine resource.
|
@@ -77,8 +76,6 @@ class RoutineArgs:
|
|
77
76
|
d the order of values or replaced STRUCT field type with RECORD field type, we currently
|
78
77
|
cannot suppress the recurring diff this causes. As a workaround, we recommend using
|
79
78
|
the schema as returned by the API.
|
80
|
-
:param pulumi.Input[builtins.str] security_mode: Optional. The security mode of the routine, if defined. If not defined, the security mode is automatically determined from the routine's configuration.
|
81
|
-
Possible values are: `DEFINER`, `INVOKER`.
|
82
79
|
:param pulumi.Input['RoutineSparkOptionsArgs'] spark_options: Optional. If language is one of "PYTHON", "JAVA", "SCALA", this field stores the options for spark stored procedure.
|
83
80
|
Structure is documented below.
|
84
81
|
"""
|
@@ -106,8 +103,6 @@ class RoutineArgs:
|
|
106
103
|
pulumi.set(__self__, "return_table_type", return_table_type)
|
107
104
|
if return_type is not None:
|
108
105
|
pulumi.set(__self__, "return_type", return_type)
|
109
|
-
if security_mode is not None:
|
110
|
-
pulumi.set(__self__, "security_mode", security_mode)
|
111
106
|
if spark_options is not None:
|
112
107
|
pulumi.set(__self__, "spark_options", spark_options)
|
113
108
|
|
@@ -302,19 +297,6 @@ class RoutineArgs:
|
|
302
297
|
def return_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
303
298
|
pulumi.set(self, "return_type", value)
|
304
299
|
|
305
|
-
@property
|
306
|
-
@pulumi.getter(name="securityMode")
|
307
|
-
def security_mode(self) -> Optional[pulumi.Input[builtins.str]]:
|
308
|
-
"""
|
309
|
-
Optional. The security mode of the routine, if defined. If not defined, the security mode is automatically determined from the routine's configuration.
|
310
|
-
Possible values are: `DEFINER`, `INVOKER`.
|
311
|
-
"""
|
312
|
-
return pulumi.get(self, "security_mode")
|
313
|
-
|
314
|
-
@security_mode.setter
|
315
|
-
def security_mode(self, value: Optional[pulumi.Input[builtins.str]]):
|
316
|
-
pulumi.set(self, "security_mode", value)
|
317
|
-
|
318
300
|
@property
|
319
301
|
@pulumi.getter(name="sparkOptions")
|
320
302
|
def spark_options(self) -> Optional[pulumi.Input['RoutineSparkOptionsArgs']]:
|
@@ -348,7 +330,6 @@ class _RoutineState:
|
|
348
330
|
return_type: Optional[pulumi.Input[builtins.str]] = None,
|
349
331
|
routine_id: Optional[pulumi.Input[builtins.str]] = None,
|
350
332
|
routine_type: Optional[pulumi.Input[builtins.str]] = None,
|
351
|
-
security_mode: Optional[pulumi.Input[builtins.str]] = None,
|
352
333
|
spark_options: Optional[pulumi.Input['RoutineSparkOptionsArgs']] = None):
|
353
334
|
"""
|
354
335
|
Input properties used for looking up and filtering Routine resources.
|
@@ -393,8 +374,6 @@ class _RoutineState:
|
|
393
374
|
:param pulumi.Input[builtins.str] routine_id: The ID of the the routine. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256 characters.
|
394
375
|
:param pulumi.Input[builtins.str] routine_type: The type of routine.
|
395
376
|
Possible values are: `SCALAR_FUNCTION`, `PROCEDURE`, `TABLE_VALUED_FUNCTION`.
|
396
|
-
:param pulumi.Input[builtins.str] security_mode: Optional. The security mode of the routine, if defined. If not defined, the security mode is automatically determined from the routine's configuration.
|
397
|
-
Possible values are: `DEFINER`, `INVOKER`.
|
398
377
|
:param pulumi.Input['RoutineSparkOptionsArgs'] spark_options: Optional. If language is one of "PYTHON", "JAVA", "SCALA", this field stores the options for spark stored procedure.
|
399
378
|
Structure is documented below.
|
400
379
|
"""
|
@@ -430,8 +409,6 @@ class _RoutineState:
|
|
430
409
|
pulumi.set(__self__, "routine_id", routine_id)
|
431
410
|
if routine_type is not None:
|
432
411
|
pulumi.set(__self__, "routine_type", routine_type)
|
433
|
-
if security_mode is not None:
|
434
|
-
pulumi.set(__self__, "security_mode", security_mode)
|
435
412
|
if spark_options is not None:
|
436
413
|
pulumi.set(__self__, "spark_options", spark_options)
|
437
414
|
|
@@ -652,19 +629,6 @@ class _RoutineState:
|
|
652
629
|
def routine_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
653
630
|
pulumi.set(self, "routine_type", value)
|
654
631
|
|
655
|
-
@property
|
656
|
-
@pulumi.getter(name="securityMode")
|
657
|
-
def security_mode(self) -> Optional[pulumi.Input[builtins.str]]:
|
658
|
-
"""
|
659
|
-
Optional. The security mode of the routine, if defined. If not defined, the security mode is automatically determined from the routine's configuration.
|
660
|
-
Possible values are: `DEFINER`, `INVOKER`.
|
661
|
-
"""
|
662
|
-
return pulumi.get(self, "security_mode")
|
663
|
-
|
664
|
-
@security_mode.setter
|
665
|
-
def security_mode(self, value: Optional[pulumi.Input[builtins.str]]):
|
666
|
-
pulumi.set(self, "security_mode", value)
|
667
|
-
|
668
632
|
@property
|
669
633
|
@pulumi.getter(name="sparkOptions")
|
670
634
|
def spark_options(self) -> Optional[pulumi.Input['RoutineSparkOptionsArgs']]:
|
@@ -699,7 +663,6 @@ class Routine(pulumi.CustomResource):
|
|
699
663
|
return_type: Optional[pulumi.Input[builtins.str]] = None,
|
700
664
|
routine_id: Optional[pulumi.Input[builtins.str]] = None,
|
701
665
|
routine_type: Optional[pulumi.Input[builtins.str]] = None,
|
702
|
-
security_mode: Optional[pulumi.Input[builtins.str]] = None,
|
703
666
|
spark_options: Optional[pulumi.Input[Union['RoutineSparkOptionsArgs', 'RoutineSparkOptionsArgsDict']]] = None,
|
704
667
|
__props__=None):
|
705
668
|
"""
|
@@ -725,7 +688,6 @@ class Routine(pulumi.CustomResource):
|
|
725
688
|
routine_id="routine_id",
|
726
689
|
routine_type="PROCEDURE",
|
727
690
|
language="SQL",
|
728
|
-
security_mode="INVOKER",
|
729
691
|
definition_body="CREATE FUNCTION Add(x FLOAT64, y FLOAT64) RETURNS FLOAT64 AS (x + y);")
|
730
692
|
```
|
731
693
|
### Bigquery Routine Json
|
@@ -989,8 +951,6 @@ class Routine(pulumi.CustomResource):
|
|
989
951
|
:param pulumi.Input[builtins.str] routine_id: The ID of the the routine. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256 characters.
|
990
952
|
:param pulumi.Input[builtins.str] routine_type: The type of routine.
|
991
953
|
Possible values are: `SCALAR_FUNCTION`, `PROCEDURE`, `TABLE_VALUED_FUNCTION`.
|
992
|
-
:param pulumi.Input[builtins.str] security_mode: Optional. The security mode of the routine, if defined. If not defined, the security mode is automatically determined from the routine's configuration.
|
993
|
-
Possible values are: `DEFINER`, `INVOKER`.
|
994
954
|
:param pulumi.Input[Union['RoutineSparkOptionsArgs', 'RoutineSparkOptionsArgsDict']] spark_options: Optional. If language is one of "PYTHON", "JAVA", "SCALA", this field stores the options for spark stored procedure.
|
995
955
|
Structure is documented below.
|
996
956
|
"""
|
@@ -1023,7 +983,6 @@ class Routine(pulumi.CustomResource):
|
|
1023
983
|
routine_id="routine_id",
|
1024
984
|
routine_type="PROCEDURE",
|
1025
985
|
language="SQL",
|
1026
|
-
security_mode="INVOKER",
|
1027
986
|
definition_body="CREATE FUNCTION Add(x FLOAT64, y FLOAT64) RETURNS FLOAT64 AS (x + y);")
|
1028
987
|
```
|
1029
988
|
### Bigquery Routine Json
|
@@ -1277,7 +1236,6 @@ class Routine(pulumi.CustomResource):
|
|
1277
1236
|
return_type: Optional[pulumi.Input[builtins.str]] = None,
|
1278
1237
|
routine_id: Optional[pulumi.Input[builtins.str]] = None,
|
1279
1238
|
routine_type: Optional[pulumi.Input[builtins.str]] = None,
|
1280
|
-
security_mode: Optional[pulumi.Input[builtins.str]] = None,
|
1281
1239
|
spark_options: Optional[pulumi.Input[Union['RoutineSparkOptionsArgs', 'RoutineSparkOptionsArgsDict']]] = None,
|
1282
1240
|
__props__=None):
|
1283
1241
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -1310,7 +1268,6 @@ class Routine(pulumi.CustomResource):
|
|
1310
1268
|
if routine_type is None and not opts.urn:
|
1311
1269
|
raise TypeError("Missing required property 'routine_type'")
|
1312
1270
|
__props__.__dict__["routine_type"] = routine_type
|
1313
|
-
__props__.__dict__["security_mode"] = security_mode
|
1314
1271
|
__props__.__dict__["spark_options"] = spark_options
|
1315
1272
|
__props__.__dict__["creation_time"] = None
|
1316
1273
|
__props__.__dict__["last_modified_time"] = None
|
@@ -1340,7 +1297,6 @@ class Routine(pulumi.CustomResource):
|
|
1340
1297
|
return_type: Optional[pulumi.Input[builtins.str]] = None,
|
1341
1298
|
routine_id: Optional[pulumi.Input[builtins.str]] = None,
|
1342
1299
|
routine_type: Optional[pulumi.Input[builtins.str]] = None,
|
1343
|
-
security_mode: Optional[pulumi.Input[builtins.str]] = None,
|
1344
1300
|
spark_options: Optional[pulumi.Input[Union['RoutineSparkOptionsArgs', 'RoutineSparkOptionsArgsDict']]] = None) -> 'Routine':
|
1345
1301
|
"""
|
1346
1302
|
Get an existing Routine resource's state with the given name, id, and optional extra
|
@@ -1390,8 +1346,6 @@ class Routine(pulumi.CustomResource):
|
|
1390
1346
|
:param pulumi.Input[builtins.str] routine_id: The ID of the the routine. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256 characters.
|
1391
1347
|
:param pulumi.Input[builtins.str] routine_type: The type of routine.
|
1392
1348
|
Possible values are: `SCALAR_FUNCTION`, `PROCEDURE`, `TABLE_VALUED_FUNCTION`.
|
1393
|
-
:param pulumi.Input[builtins.str] security_mode: Optional. The security mode of the routine, if defined. If not defined, the security mode is automatically determined from the routine's configuration.
|
1394
|
-
Possible values are: `DEFINER`, `INVOKER`.
|
1395
1349
|
:param pulumi.Input[Union['RoutineSparkOptionsArgs', 'RoutineSparkOptionsArgsDict']] spark_options: Optional. If language is one of "PYTHON", "JAVA", "SCALA", this field stores the options for spark stored procedure.
|
1396
1350
|
Structure is documented below.
|
1397
1351
|
"""
|
@@ -1415,7 +1369,6 @@ class Routine(pulumi.CustomResource):
|
|
1415
1369
|
__props__.__dict__["return_type"] = return_type
|
1416
1370
|
__props__.__dict__["routine_id"] = routine_id
|
1417
1371
|
__props__.__dict__["routine_type"] = routine_type
|
1418
|
-
__props__.__dict__["security_mode"] = security_mode
|
1419
1372
|
__props__.__dict__["spark_options"] = spark_options
|
1420
1373
|
return Routine(resource_name, opts=opts, __props__=__props__)
|
1421
1374
|
|
@@ -1572,15 +1525,6 @@ class Routine(pulumi.CustomResource):
|
|
1572
1525
|
"""
|
1573
1526
|
return pulumi.get(self, "routine_type")
|
1574
1527
|
|
1575
|
-
@property
|
1576
|
-
@pulumi.getter(name="securityMode")
|
1577
|
-
def security_mode(self) -> pulumi.Output[Optional[builtins.str]]:
|
1578
|
-
"""
|
1579
|
-
Optional. The security mode of the routine, if defined. If not defined, the security mode is automatically determined from the routine's configuration.
|
1580
|
-
Possible values are: `DEFINER`, `INVOKER`.
|
1581
|
-
"""
|
1582
|
-
return pulumi.get(self, "security_mode")
|
1583
|
-
|
1584
1528
|
@property
|
1585
1529
|
@pulumi.getter(name="sparkOptions")
|
1586
1530
|
def spark_options(self) -> pulumi.Output[Optional['outputs.RoutineSparkOptions']]:
|
pulumi_gcp/bigtable/table.py
CHANGED
@@ -33,7 +33,7 @@ class TableArgs:
|
|
33
33
|
"""
|
34
34
|
The set of arguments for constructing a Table resource.
|
35
35
|
:param pulumi.Input[builtins.str] instance_name: The name of the Bigtable instance.
|
36
|
-
:param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled,
|
36
|
+
:param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to "0". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
|
37
37
|
|
38
38
|
-----
|
39
39
|
:param pulumi.Input[builtins.str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
@@ -78,7 +78,7 @@ class TableArgs:
|
|
78
78
|
@pulumi.getter(name="automatedBackupPolicy")
|
79
79
|
def automated_backup_policy(self) -> Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]:
|
80
80
|
"""
|
81
|
-
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled,
|
81
|
+
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to "0". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
|
82
82
|
|
83
83
|
-----
|
84
84
|
"""
|
@@ -177,7 +177,7 @@ class _TableState:
|
|
177
177
|
split_keys: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
|
178
178
|
"""
|
179
179
|
Input properties used for looking up and filtering Table resources.
|
180
|
-
:param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled,
|
180
|
+
:param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to "0". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
|
181
181
|
|
182
182
|
-----
|
183
183
|
:param pulumi.Input[builtins.str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
@@ -212,7 +212,7 @@ class _TableState:
|
|
212
212
|
@pulumi.getter(name="automatedBackupPolicy")
|
213
213
|
def automated_backup_policy(self) -> Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]:
|
214
214
|
"""
|
215
|
-
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled,
|
215
|
+
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to "0". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
|
216
216
|
|
217
217
|
-----
|
218
218
|
"""
|
@@ -412,7 +412,7 @@ class Table(pulumi.CustomResource):
|
|
412
412
|
|
413
413
|
:param str resource_name: The name of the resource.
|
414
414
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
415
|
-
:param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled,
|
415
|
+
:param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to "0". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
|
416
416
|
|
417
417
|
-----
|
418
418
|
:param pulumi.Input[builtins.str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
@@ -584,7 +584,7 @@ class Table(pulumi.CustomResource):
|
|
584
584
|
:param str resource_name: The unique name of the resulting resource.
|
585
585
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
586
586
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
587
|
-
:param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled,
|
587
|
+
:param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to "0". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
|
588
588
|
|
589
589
|
-----
|
590
590
|
:param pulumi.Input[builtins.str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
@@ -616,7 +616,7 @@ class Table(pulumi.CustomResource):
|
|
616
616
|
@pulumi.getter(name="automatedBackupPolicy")
|
617
617
|
def automated_backup_policy(self) -> pulumi.Output['outputs.TableAutomatedBackupPolicy']:
|
618
618
|
"""
|
619
|
-
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled,
|
619
|
+
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to "0". If this argument is not provided in the configuration on update, the resource's automated backup policy will _not_ be modified.
|
620
620
|
|
621
621
|
-----
|
622
622
|
"""
|
@@ -410,6 +410,10 @@ if not MYPY:
|
|
410
410
|
"""
|
411
411
|
The common name of the distinguished name.
|
412
412
|
"""
|
413
|
+
organization: pulumi.Input[builtins.str]
|
414
|
+
"""
|
415
|
+
The organization of the subject.
|
416
|
+
"""
|
413
417
|
country_code: NotRequired[pulumi.Input[builtins.str]]
|
414
418
|
"""
|
415
419
|
The country code of the subject.
|
@@ -418,10 +422,6 @@ if not MYPY:
|
|
418
422
|
"""
|
419
423
|
The locality or city of the subject.
|
420
424
|
"""
|
421
|
-
organization: NotRequired[pulumi.Input[builtins.str]]
|
422
|
-
"""
|
423
|
-
The organization of the subject.
|
424
|
-
"""
|
425
425
|
organizational_unit: NotRequired[pulumi.Input[builtins.str]]
|
426
426
|
"""
|
427
427
|
The organizational unit of the subject.
|
@@ -445,30 +445,29 @@ elif False:
|
|
445
445
|
class AuthorityConfigSubjectConfigSubjectArgs:
|
446
446
|
def __init__(__self__, *,
|
447
447
|
common_name: pulumi.Input[builtins.str],
|
448
|
+
organization: pulumi.Input[builtins.str],
|
448
449
|
country_code: Optional[pulumi.Input[builtins.str]] = None,
|
449
450
|
locality: Optional[pulumi.Input[builtins.str]] = None,
|
450
|
-
organization: Optional[pulumi.Input[builtins.str]] = None,
|
451
451
|
organizational_unit: Optional[pulumi.Input[builtins.str]] = None,
|
452
452
|
postal_code: Optional[pulumi.Input[builtins.str]] = None,
|
453
453
|
province: Optional[pulumi.Input[builtins.str]] = None,
|
454
454
|
street_address: Optional[pulumi.Input[builtins.str]] = None):
|
455
455
|
"""
|
456
456
|
:param pulumi.Input[builtins.str] common_name: The common name of the distinguished name.
|
457
|
+
:param pulumi.Input[builtins.str] organization: The organization of the subject.
|
457
458
|
:param pulumi.Input[builtins.str] country_code: The country code of the subject.
|
458
459
|
:param pulumi.Input[builtins.str] locality: The locality or city of the subject.
|
459
|
-
:param pulumi.Input[builtins.str] organization: The organization of the subject.
|
460
460
|
:param pulumi.Input[builtins.str] organizational_unit: The organizational unit of the subject.
|
461
461
|
:param pulumi.Input[builtins.str] postal_code: The postal code of the subject.
|
462
462
|
:param pulumi.Input[builtins.str] province: The province, territory, or regional state of the subject.
|
463
463
|
:param pulumi.Input[builtins.str] street_address: The street address of the subject.
|
464
464
|
"""
|
465
465
|
pulumi.set(__self__, "common_name", common_name)
|
466
|
+
pulumi.set(__self__, "organization", organization)
|
466
467
|
if country_code is not None:
|
467
468
|
pulumi.set(__self__, "country_code", country_code)
|
468
469
|
if locality is not None:
|
469
470
|
pulumi.set(__self__, "locality", locality)
|
470
|
-
if organization is not None:
|
471
|
-
pulumi.set(__self__, "organization", organization)
|
472
471
|
if organizational_unit is not None:
|
473
472
|
pulumi.set(__self__, "organizational_unit", organizational_unit)
|
474
473
|
if postal_code is not None:
|
@@ -490,6 +489,18 @@ class AuthorityConfigSubjectConfigSubjectArgs:
|
|
490
489
|
def common_name(self, value: pulumi.Input[builtins.str]):
|
491
490
|
pulumi.set(self, "common_name", value)
|
492
491
|
|
492
|
+
@property
|
493
|
+
@pulumi.getter
|
494
|
+
def organization(self) -> pulumi.Input[builtins.str]:
|
495
|
+
"""
|
496
|
+
The organization of the subject.
|
497
|
+
"""
|
498
|
+
return pulumi.get(self, "organization")
|
499
|
+
|
500
|
+
@organization.setter
|
501
|
+
def organization(self, value: pulumi.Input[builtins.str]):
|
502
|
+
pulumi.set(self, "organization", value)
|
503
|
+
|
493
504
|
@property
|
494
505
|
@pulumi.getter(name="countryCode")
|
495
506
|
def country_code(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -514,18 +525,6 @@ class AuthorityConfigSubjectConfigSubjectArgs:
|
|
514
525
|
def locality(self, value: Optional[pulumi.Input[builtins.str]]):
|
515
526
|
pulumi.set(self, "locality", value)
|
516
527
|
|
517
|
-
@property
|
518
|
-
@pulumi.getter
|
519
|
-
def organization(self) -> Optional[pulumi.Input[builtins.str]]:
|
520
|
-
"""
|
521
|
-
The organization of the subject.
|
522
|
-
"""
|
523
|
-
return pulumi.get(self, "organization")
|
524
|
-
|
525
|
-
@organization.setter
|
526
|
-
def organization(self, value: Optional[pulumi.Input[builtins.str]]):
|
527
|
-
pulumi.set(self, "organization", value)
|
528
|
-
|
529
528
|
@property
|
530
529
|
@pulumi.getter(name="organizationalUnit")
|
531
530
|
def organizational_unit(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -858,41 +858,6 @@ class Authority(pulumi.CustomResource):
|
|
858
858
|
"algorithm": "RSA_PKCS1_4096_SHA256",
|
859
859
|
})
|
860
860
|
```
|
861
|
-
### Privateca Certificate Authority Basic No Org
|
862
|
-
|
863
|
-
```python
|
864
|
-
import pulumi
|
865
|
-
import pulumi_gcp as gcp
|
866
|
-
|
867
|
-
default = gcp.certificateauthority.Authority("default",
|
868
|
-
pool="ca-pool",
|
869
|
-
certificate_authority_id="my-certificate-authority",
|
870
|
-
location="us-central1",
|
871
|
-
deletion_protection=True,
|
872
|
-
config={
|
873
|
-
"subject_config": {
|
874
|
-
"subject": {
|
875
|
-
"common_name": "my-certificate-authority",
|
876
|
-
},
|
877
|
-
},
|
878
|
-
"x509_config": {
|
879
|
-
"ca_options": {
|
880
|
-
"is_ca": True,
|
881
|
-
},
|
882
|
-
"key_usage": {
|
883
|
-
"base_key_usage": {
|
884
|
-
"cert_sign": True,
|
885
|
-
"crl_sign": True,
|
886
|
-
},
|
887
|
-
"extended_key_usage": {},
|
888
|
-
},
|
889
|
-
},
|
890
|
-
},
|
891
|
-
lifetime=f"{10 * 365 * 24 * 3600}s",
|
892
|
-
key_spec={
|
893
|
-
"algorithm": "RSA_PKCS1_4096_SHA256",
|
894
|
-
})
|
895
|
-
```
|
896
861
|
### Privateca Certificate Authority Subordinate
|
897
862
|
|
898
863
|
```python
|
@@ -1228,41 +1193,6 @@ class Authority(pulumi.CustomResource):
|
|
1228
1193
|
"algorithm": "RSA_PKCS1_4096_SHA256",
|
1229
1194
|
})
|
1230
1195
|
```
|
1231
|
-
### Privateca Certificate Authority Basic No Org
|
1232
|
-
|
1233
|
-
```python
|
1234
|
-
import pulumi
|
1235
|
-
import pulumi_gcp as gcp
|
1236
|
-
|
1237
|
-
default = gcp.certificateauthority.Authority("default",
|
1238
|
-
pool="ca-pool",
|
1239
|
-
certificate_authority_id="my-certificate-authority",
|
1240
|
-
location="us-central1",
|
1241
|
-
deletion_protection=True,
|
1242
|
-
config={
|
1243
|
-
"subject_config": {
|
1244
|
-
"subject": {
|
1245
|
-
"common_name": "my-certificate-authority",
|
1246
|
-
},
|
1247
|
-
},
|
1248
|
-
"x509_config": {
|
1249
|
-
"ca_options": {
|
1250
|
-
"is_ca": True,
|
1251
|
-
},
|
1252
|
-
"key_usage": {
|
1253
|
-
"base_key_usage": {
|
1254
|
-
"cert_sign": True,
|
1255
|
-
"crl_sign": True,
|
1256
|
-
},
|
1257
|
-
"extended_key_usage": {},
|
1258
|
-
},
|
1259
|
-
},
|
1260
|
-
},
|
1261
|
-
lifetime=f"{10 * 365 * 24 * 3600}s",
|
1262
|
-
key_spec={
|
1263
|
-
"algorithm": "RSA_PKCS1_4096_SHA256",
|
1264
|
-
})
|
1265
|
-
```
|
1266
1196
|
### Privateca Certificate Authority Subordinate
|
1267
1197
|
|
1268
1198
|
```python
|
@@ -337,30 +337,29 @@ class AuthorityConfigSubjectConfigSubject(dict):
|
|
337
337
|
|
338
338
|
def __init__(__self__, *,
|
339
339
|
common_name: builtins.str,
|
340
|
+
organization: builtins.str,
|
340
341
|
country_code: Optional[builtins.str] = None,
|
341
342
|
locality: Optional[builtins.str] = None,
|
342
|
-
organization: Optional[builtins.str] = None,
|
343
343
|
organizational_unit: Optional[builtins.str] = None,
|
344
344
|
postal_code: Optional[builtins.str] = None,
|
345
345
|
province: Optional[builtins.str] = None,
|
346
346
|
street_address: Optional[builtins.str] = None):
|
347
347
|
"""
|
348
348
|
:param builtins.str common_name: The common name of the distinguished name.
|
349
|
+
:param builtins.str organization: The organization of the subject.
|
349
350
|
:param builtins.str country_code: The country code of the subject.
|
350
351
|
:param builtins.str locality: The locality or city of the subject.
|
351
|
-
:param builtins.str organization: The organization of the subject.
|
352
352
|
:param builtins.str organizational_unit: The organizational unit of the subject.
|
353
353
|
:param builtins.str postal_code: The postal code of the subject.
|
354
354
|
:param builtins.str province: The province, territory, or regional state of the subject.
|
355
355
|
:param builtins.str street_address: The street address of the subject.
|
356
356
|
"""
|
357
357
|
pulumi.set(__self__, "common_name", common_name)
|
358
|
+
pulumi.set(__self__, "organization", organization)
|
358
359
|
if country_code is not None:
|
359
360
|
pulumi.set(__self__, "country_code", country_code)
|
360
361
|
if locality is not None:
|
361
362
|
pulumi.set(__self__, "locality", locality)
|
362
|
-
if organization is not None:
|
363
|
-
pulumi.set(__self__, "organization", organization)
|
364
363
|
if organizational_unit is not None:
|
365
364
|
pulumi.set(__self__, "organizational_unit", organizational_unit)
|
366
365
|
if postal_code is not None:
|
@@ -378,6 +377,14 @@ class AuthorityConfigSubjectConfigSubject(dict):
|
|
378
377
|
"""
|
379
378
|
return pulumi.get(self, "common_name")
|
380
379
|
|
380
|
+
@property
|
381
|
+
@pulumi.getter
|
382
|
+
def organization(self) -> builtins.str:
|
383
|
+
"""
|
384
|
+
The organization of the subject.
|
385
|
+
"""
|
386
|
+
return pulumi.get(self, "organization")
|
387
|
+
|
381
388
|
@property
|
382
389
|
@pulumi.getter(name="countryCode")
|
383
390
|
def country_code(self) -> Optional[builtins.str]:
|
@@ -394,14 +401,6 @@ class AuthorityConfigSubjectConfigSubject(dict):
|
|
394
401
|
"""
|
395
402
|
return pulumi.get(self, "locality")
|
396
403
|
|
397
|
-
@property
|
398
|
-
@pulumi.getter
|
399
|
-
def organization(self) -> Optional[builtins.str]:
|
400
|
-
"""
|
401
|
-
The organization of the subject.
|
402
|
-
"""
|
403
|
-
return pulumi.get(self, "organization")
|
404
|
-
|
405
404
|
@property
|
406
405
|
@pulumi.getter(name="organizationalUnit")
|
407
406
|
def organizational_unit(self) -> Optional[builtins.str]:
|
@@ -1125,7 +1125,7 @@ class Function(pulumi.CustomResource):
|
|
1125
1125
|
},
|
1126
1126
|
opts = pulumi.ResourceOptions(depends_on=[gcf_cmek_keyuser]))
|
1127
1127
|
```
|
1128
|
-
### Cloudfunctions2
|
1128
|
+
### Cloudfunctions2 Abiu
|
1129
1129
|
|
1130
1130
|
```python
|
1131
1131
|
import pulumi
|
@@ -1183,7 +1183,7 @@ class Function(pulumi.CustomResource):
|
|
1183
1183
|
"retry_policy": "RETRY_POLICY_RETRY",
|
1184
1184
|
})
|
1185
1185
|
```
|
1186
|
-
### Cloudfunctions2 On Deploy
|
1186
|
+
### Cloudfunctions2 Abiu On Deploy
|
1187
1187
|
|
1188
1188
|
```python
|
1189
1189
|
import pulumi
|
@@ -1931,7 +1931,7 @@ class Function(pulumi.CustomResource):
|
|
1931
1931
|
},
|
1932
1932
|
opts = pulumi.ResourceOptions(depends_on=[gcf_cmek_keyuser]))
|
1933
1933
|
```
|
1934
|
-
### Cloudfunctions2
|
1934
|
+
### Cloudfunctions2 Abiu
|
1935
1935
|
|
1936
1936
|
```python
|
1937
1937
|
import pulumi
|
@@ -1989,7 +1989,7 @@ class Function(pulumi.CustomResource):
|
|
1989
1989
|
"retry_policy": "RETRY_POLICY_RETRY",
|
1990
1990
|
})
|
1991
1991
|
```
|
1992
|
-
### Cloudfunctions2 On Deploy
|
1992
|
+
### Cloudfunctions2 Abiu On Deploy
|
1993
1993
|
|
1994
1994
|
```python
|
1995
1995
|
import pulumi
|
pulumi_gcp/compute/__init__.py
CHANGED
@@ -20,7 +20,6 @@ from .backend_service_iam_member import *
|
|
20
20
|
from .backend_service_iam_policy import *
|
21
21
|
from .backend_service_signed_url_key import *
|
22
22
|
from .ca_external_account_key import *
|
23
|
-
from .cross_site_network import *
|
24
23
|
from .disk import *
|
25
24
|
from .disk_async_replication import *
|
26
25
|
from .disk_iam_binding import *
|