pulumi-gcp 8.31.0a1747205151__py3-none-any.whl → 8.31.0a1747312116__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.
Files changed (45) hide show
  1. pulumi_gcp/__init__.py +8 -0
  2. pulumi_gcp/alloydb/_inputs.py +164 -0
  3. pulumi_gcp/alloydb/outputs.py +211 -0
  4. pulumi_gcp/apigee/_inputs.py +20 -0
  5. pulumi_gcp/apigee/outputs.py +12 -0
  6. pulumi_gcp/bigquery/routine.py +56 -0
  7. pulumi_gcp/bigtable/table.py +7 -7
  8. pulumi_gcp/certificateauthority/_inputs.py +20 -19
  9. pulumi_gcp/certificateauthority/authority.py +70 -0
  10. pulumi_gcp/certificateauthority/outputs.py +12 -11
  11. pulumi_gcp/cloudfunctionsv2/function.py +4 -4
  12. pulumi_gcp/compute/__init__.py +1 -0
  13. pulumi_gcp/compute/_inputs.py +312 -0
  14. pulumi_gcp/compute/cross_site_network.py +374 -0
  15. pulumi_gcp/compute/get_health_check.py +12 -1
  16. pulumi_gcp/compute/health_check.py +120 -0
  17. pulumi_gcp/compute/outputs.py +353 -0
  18. pulumi_gcp/compute/region_health_check.py +120 -0
  19. pulumi_gcp/container/_inputs.py +6 -6
  20. pulumi_gcp/container/outputs.py +4 -4
  21. pulumi_gcp/dataproc/get_metastore_service.py +1 -12
  22. pulumi_gcp/dataproc/metastore_service.py +0 -61
  23. pulumi_gcp/diagflow/_inputs.py +6280 -2644
  24. pulumi_gcp/diagflow/cx_flow.py +304 -0
  25. pulumi_gcp/diagflow/cx_page.py +290 -0
  26. pulumi_gcp/diagflow/outputs.py +4616 -1862
  27. pulumi_gcp/netapp/backup.py +56 -0
  28. pulumi_gcp/netapp/backup_vault.py +185 -0
  29. pulumi_gcp/netapp/storage_pool.py +2 -2
  30. pulumi_gcp/networkconnectivity/internal_range.py +47 -0
  31. pulumi_gcp/networkconnectivity/regional_endpoint.py +13 -13
  32. pulumi_gcp/networkservices/_inputs.py +43 -0
  33. pulumi_gcp/networkservices/edge_cache_origin.py +61 -0
  34. pulumi_gcp/networkservices/outputs.py +43 -0
  35. pulumi_gcp/pulumi-plugin.json +1 -1
  36. pulumi_gcp/redis/get_instance.py +1 -12
  37. pulumi_gcp/redis/instance.py +0 -61
  38. pulumi_gcp/spanner/database.py +56 -0
  39. pulumi_gcp/spanner/get_database.py +12 -1
  40. pulumi_gcp/storage/bucket.py +4 -4
  41. pulumi_gcp/storage/get_bucket_object_content.py +29 -1
  42. {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/METADATA +1 -1
  43. {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/RECORD +45 -44
  44. {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/WHEEL +1 -1
  45. {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/top_level.txt +0 -0
@@ -36,6 +36,7 @@ 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,
39
40
  spark_options: Optional[pulumi.Input['RoutineSparkOptionsArgs']] = None):
40
41
  """
41
42
  The set of arguments for constructing a Routine resource.
@@ -76,6 +77,8 @@ class RoutineArgs:
76
77
  d the order of values or replaced STRUCT field type with RECORD field type, we currently
77
78
  cannot suppress the recurring diff this causes. As a workaround, we recommend using
78
79
  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`.
79
82
  :param pulumi.Input['RoutineSparkOptionsArgs'] spark_options: Optional. If language is one of "PYTHON", "JAVA", "SCALA", this field stores the options for spark stored procedure.
80
83
  Structure is documented below.
81
84
  """
@@ -103,6 +106,8 @@ class RoutineArgs:
103
106
  pulumi.set(__self__, "return_table_type", return_table_type)
104
107
  if return_type is not None:
105
108
  pulumi.set(__self__, "return_type", return_type)
109
+ if security_mode is not None:
110
+ pulumi.set(__self__, "security_mode", security_mode)
106
111
  if spark_options is not None:
107
112
  pulumi.set(__self__, "spark_options", spark_options)
108
113
 
@@ -297,6 +302,19 @@ class RoutineArgs:
297
302
  def return_type(self, value: Optional[pulumi.Input[builtins.str]]):
298
303
  pulumi.set(self, "return_type", value)
299
304
 
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
+
300
318
  @property
301
319
  @pulumi.getter(name="sparkOptions")
302
320
  def spark_options(self) -> Optional[pulumi.Input['RoutineSparkOptionsArgs']]:
@@ -330,6 +348,7 @@ class _RoutineState:
330
348
  return_type: Optional[pulumi.Input[builtins.str]] = None,
331
349
  routine_id: Optional[pulumi.Input[builtins.str]] = None,
332
350
  routine_type: Optional[pulumi.Input[builtins.str]] = None,
351
+ security_mode: Optional[pulumi.Input[builtins.str]] = None,
333
352
  spark_options: Optional[pulumi.Input['RoutineSparkOptionsArgs']] = None):
334
353
  """
335
354
  Input properties used for looking up and filtering Routine resources.
@@ -374,6 +393,8 @@ class _RoutineState:
374
393
  :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.
375
394
  :param pulumi.Input[builtins.str] routine_type: The type of routine.
376
395
  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`.
377
398
  :param pulumi.Input['RoutineSparkOptionsArgs'] spark_options: Optional. If language is one of "PYTHON", "JAVA", "SCALA", this field stores the options for spark stored procedure.
378
399
  Structure is documented below.
379
400
  """
@@ -409,6 +430,8 @@ class _RoutineState:
409
430
  pulumi.set(__self__, "routine_id", routine_id)
410
431
  if routine_type is not None:
411
432
  pulumi.set(__self__, "routine_type", routine_type)
433
+ if security_mode is not None:
434
+ pulumi.set(__self__, "security_mode", security_mode)
412
435
  if spark_options is not None:
413
436
  pulumi.set(__self__, "spark_options", spark_options)
414
437
 
@@ -629,6 +652,19 @@ class _RoutineState:
629
652
  def routine_type(self, value: Optional[pulumi.Input[builtins.str]]):
630
653
  pulumi.set(self, "routine_type", value)
631
654
 
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
+
632
668
  @property
633
669
  @pulumi.getter(name="sparkOptions")
634
670
  def spark_options(self) -> Optional[pulumi.Input['RoutineSparkOptionsArgs']]:
@@ -663,6 +699,7 @@ class Routine(pulumi.CustomResource):
663
699
  return_type: Optional[pulumi.Input[builtins.str]] = None,
664
700
  routine_id: Optional[pulumi.Input[builtins.str]] = None,
665
701
  routine_type: Optional[pulumi.Input[builtins.str]] = None,
702
+ security_mode: Optional[pulumi.Input[builtins.str]] = None,
666
703
  spark_options: Optional[pulumi.Input[Union['RoutineSparkOptionsArgs', 'RoutineSparkOptionsArgsDict']]] = None,
667
704
  __props__=None):
668
705
  """
@@ -688,6 +725,7 @@ class Routine(pulumi.CustomResource):
688
725
  routine_id="routine_id",
689
726
  routine_type="PROCEDURE",
690
727
  language="SQL",
728
+ security_mode="INVOKER",
691
729
  definition_body="CREATE FUNCTION Add(x FLOAT64, y FLOAT64) RETURNS FLOAT64 AS (x + y);")
692
730
  ```
693
731
  ### Bigquery Routine Json
@@ -951,6 +989,8 @@ class Routine(pulumi.CustomResource):
951
989
  :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.
952
990
  :param pulumi.Input[builtins.str] routine_type: The type of routine.
953
991
  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`.
954
994
  :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.
955
995
  Structure is documented below.
956
996
  """
@@ -983,6 +1023,7 @@ class Routine(pulumi.CustomResource):
983
1023
  routine_id="routine_id",
984
1024
  routine_type="PROCEDURE",
985
1025
  language="SQL",
1026
+ security_mode="INVOKER",
986
1027
  definition_body="CREATE FUNCTION Add(x FLOAT64, y FLOAT64) RETURNS FLOAT64 AS (x + y);")
987
1028
  ```
988
1029
  ### Bigquery Routine Json
@@ -1236,6 +1277,7 @@ class Routine(pulumi.CustomResource):
1236
1277
  return_type: Optional[pulumi.Input[builtins.str]] = None,
1237
1278
  routine_id: Optional[pulumi.Input[builtins.str]] = None,
1238
1279
  routine_type: Optional[pulumi.Input[builtins.str]] = None,
1280
+ security_mode: Optional[pulumi.Input[builtins.str]] = None,
1239
1281
  spark_options: Optional[pulumi.Input[Union['RoutineSparkOptionsArgs', 'RoutineSparkOptionsArgsDict']]] = None,
1240
1282
  __props__=None):
1241
1283
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -1268,6 +1310,7 @@ class Routine(pulumi.CustomResource):
1268
1310
  if routine_type is None and not opts.urn:
1269
1311
  raise TypeError("Missing required property 'routine_type'")
1270
1312
  __props__.__dict__["routine_type"] = routine_type
1313
+ __props__.__dict__["security_mode"] = security_mode
1271
1314
  __props__.__dict__["spark_options"] = spark_options
1272
1315
  __props__.__dict__["creation_time"] = None
1273
1316
  __props__.__dict__["last_modified_time"] = None
@@ -1297,6 +1340,7 @@ class Routine(pulumi.CustomResource):
1297
1340
  return_type: Optional[pulumi.Input[builtins.str]] = None,
1298
1341
  routine_id: Optional[pulumi.Input[builtins.str]] = None,
1299
1342
  routine_type: Optional[pulumi.Input[builtins.str]] = None,
1343
+ security_mode: Optional[pulumi.Input[builtins.str]] = None,
1300
1344
  spark_options: Optional[pulumi.Input[Union['RoutineSparkOptionsArgs', 'RoutineSparkOptionsArgsDict']]] = None) -> 'Routine':
1301
1345
  """
1302
1346
  Get an existing Routine resource's state with the given name, id, and optional extra
@@ -1346,6 +1390,8 @@ class Routine(pulumi.CustomResource):
1346
1390
  :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.
1347
1391
  :param pulumi.Input[builtins.str] routine_type: The type of routine.
1348
1392
  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`.
1349
1395
  :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.
1350
1396
  Structure is documented below.
1351
1397
  """
@@ -1369,6 +1415,7 @@ class Routine(pulumi.CustomResource):
1369
1415
  __props__.__dict__["return_type"] = return_type
1370
1416
  __props__.__dict__["routine_id"] = routine_id
1371
1417
  __props__.__dict__["routine_type"] = routine_type
1418
+ __props__.__dict__["security_mode"] = security_mode
1372
1419
  __props__.__dict__["spark_options"] = spark_options
1373
1420
  return Routine(resource_name, opts=opts, __props__=__props__)
1374
1421
 
@@ -1525,6 +1572,15 @@ class Routine(pulumi.CustomResource):
1525
1572
  """
1526
1573
  return pulumi.get(self, "routine_type")
1527
1574
 
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
+
1528
1584
  @property
1529
1585
  @pulumi.getter(name="sparkOptions")
1530
1586
  def spark_options(self) -> pulumi.Output[Optional['outputs.RoutineSparkOptions']]:
@@ -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, 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.
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, either omit the automated_backup_policy argument, or set both Retention Period and Frequency properties to "0". To disable automated backup on an _existing_ table that has automated backup enabled, set _both_ Retention Period and Frequency properties to "0". When updating an existing table, to modify the Retention Period or Frequency properties of the resource's automated backup policy, set the respective property to a non-zero value. If the automated_backup_policy 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, 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.
81
+ Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, either omit the automated_backup_policy argument, or set both Retention Period and Frequency properties to "0". To disable automated backup on an _existing_ table that has automated backup enabled, set _both_ Retention Period and Frequency properties to "0". When updating an existing table, to modify the Retention Period or Frequency properties of the resource's automated backup policy, set the respective property to a non-zero value. If the automated_backup_policy 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, 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.
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, either omit the automated_backup_policy argument, or set both Retention Period and Frequency properties to "0". To disable automated backup on an _existing_ table that has automated backup enabled, set _both_ Retention Period and Frequency properties to "0". When updating an existing table, to modify the Retention Period or Frequency properties of the resource's automated backup policy, set the respective property to a non-zero value. If the automated_backup_policy 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, 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.
215
+ Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, either omit the automated_backup_policy argument, or set both Retention Period and Frequency properties to "0". To disable automated backup on an _existing_ table that has automated backup enabled, set _both_ Retention Period and Frequency properties to "0". When updating an existing table, to modify the Retention Period or Frequency properties of the resource's automated backup policy, set the respective property to a non-zero value. If the automated_backup_policy 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, 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.
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, either omit the automated_backup_policy argument, or set both Retention Period and Frequency properties to "0". To disable automated backup on an _existing_ table that has automated backup enabled, set _both_ Retention Period and Frequency properties to "0". When updating an existing table, to modify the Retention Period or Frequency properties of the resource's automated backup policy, set the respective property to a non-zero value. If the automated_backup_policy 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, 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.
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, either omit the automated_backup_policy argument, or set both Retention Period and Frequency properties to "0". To disable automated backup on an _existing_ table that has automated backup enabled, set _both_ Retention Period and Frequency properties to "0". When updating an existing table, to modify the Retention Period or Frequency properties of the resource's automated backup policy, set the respective property to a non-zero value. If the automated_backup_policy 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, 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.
619
+ Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, either omit the automated_backup_policy argument, or set both Retention Period and Frequency properties to "0". To disable automated backup on an _existing_ table that has automated backup enabled, set _both_ Retention Period and Frequency properties to "0". When updating an existing table, to modify the Retention Period or Frequency properties of the resource's automated backup policy, set the respective property to a non-zero value. If the automated_backup_policy 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,10 +410,6 @@ 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
- """
417
413
  country_code: NotRequired[pulumi.Input[builtins.str]]
418
414
  """
419
415
  The country code of the subject.
@@ -422,6 +418,10 @@ if not MYPY:
422
418
  """
423
419
  The locality or city of the subject.
424
420
  """
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,29 +445,30 @@ 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],
449
448
  country_code: Optional[pulumi.Input[builtins.str]] = None,
450
449
  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.
458
457
  :param pulumi.Input[builtins.str] country_code: The country code of the subject.
459
458
  :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)
467
466
  if country_code is not None:
468
467
  pulumi.set(__self__, "country_code", country_code)
469
468
  if locality is not None:
470
469
  pulumi.set(__self__, "locality", locality)
470
+ if organization is not None:
471
+ pulumi.set(__self__, "organization", organization)
471
472
  if organizational_unit is not None:
472
473
  pulumi.set(__self__, "organizational_unit", organizational_unit)
473
474
  if postal_code is not None:
@@ -489,18 +490,6 @@ class AuthorityConfigSubjectConfigSubjectArgs:
489
490
  def common_name(self, value: pulumi.Input[builtins.str]):
490
491
  pulumi.set(self, "common_name", value)
491
492
 
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
-
504
493
  @property
505
494
  @pulumi.getter(name="countryCode")
506
495
  def country_code(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -525,6 +514,18 @@ class AuthorityConfigSubjectConfigSubjectArgs:
525
514
  def locality(self, value: Optional[pulumi.Input[builtins.str]]):
526
515
  pulumi.set(self, "locality", value)
527
516
 
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
+
528
529
  @property
529
530
  @pulumi.getter(name="organizationalUnit")
530
531
  def organizational_unit(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -858,6 +858,41 @@ 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
+ ```
861
896
  ### Privateca Certificate Authority Subordinate
862
897
 
863
898
  ```python
@@ -1193,6 +1228,41 @@ class Authority(pulumi.CustomResource):
1193
1228
  "algorithm": "RSA_PKCS1_4096_SHA256",
1194
1229
  })
1195
1230
  ```
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
+ ```
1196
1266
  ### Privateca Certificate Authority Subordinate
1197
1267
 
1198
1268
  ```python
@@ -337,29 +337,30 @@ class AuthorityConfigSubjectConfigSubject(dict):
337
337
 
338
338
  def __init__(__self__, *,
339
339
  common_name: builtins.str,
340
- organization: builtins.str,
341
340
  country_code: Optional[builtins.str] = None,
342
341
  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.
350
349
  :param builtins.str country_code: The country code of the subject.
351
350
  :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)
359
358
  if country_code is not None:
360
359
  pulumi.set(__self__, "country_code", country_code)
361
360
  if locality is not None:
362
361
  pulumi.set(__self__, "locality", locality)
362
+ if organization is not None:
363
+ pulumi.set(__self__, "organization", organization)
363
364
  if organizational_unit is not None:
364
365
  pulumi.set(__self__, "organizational_unit", organizational_unit)
365
366
  if postal_code is not None:
@@ -377,14 +378,6 @@ class AuthorityConfigSubjectConfigSubject(dict):
377
378
  """
378
379
  return pulumi.get(self, "common_name")
379
380
 
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
-
388
381
  @property
389
382
  @pulumi.getter(name="countryCode")
390
383
  def country_code(self) -> Optional[builtins.str]:
@@ -401,6 +394,14 @@ class AuthorityConfigSubjectConfigSubject(dict):
401
394
  """
402
395
  return pulumi.get(self, "locality")
403
396
 
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
+
404
405
  @property
405
406
  @pulumi.getter(name="organizationalUnit")
406
407
  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 Abiu
1128
+ ### Cloudfunctions2 Automatic Base Image Update
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 Abiu On Deploy
1186
+ ### Cloudfunctions2 On Deploy Base Image Update
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 Abiu
1934
+ ### Cloudfunctions2 Automatic Base Image Update
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 Abiu On Deploy
1992
+ ### Cloudfunctions2 On Deploy Base Image Update
1993
1993
 
1994
1994
  ```python
1995
1995
  import pulumi
@@ -20,6 +20,7 @@ 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 *
23
24
  from .disk import *
24
25
  from .disk_async_replication import *
25
26
  from .disk_iam_binding import *