pulumi-gcp 8.24.0a1743177741__py3-none-any.whl → 8.25.0__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 (126) hide show
  1. pulumi_gcp/__init__.py +104 -0
  2. pulumi_gcp/_inputs.py +48 -0
  3. pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
  4. pulumi_gcp/accesscontextmanager/outputs.py +204 -12
  5. pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
  6. pulumi_gcp/apigee/__init__.py +1 -0
  7. pulumi_gcp/apigee/_inputs.py +58 -0
  8. pulumi_gcp/apigee/dns_zone.py +491 -0
  9. pulumi_gcp/apigee/outputs.py +53 -0
  10. pulumi_gcp/bigquery/reservation_assignment.py +7 -7
  11. pulumi_gcp/bigtable/table.py +8 -8
  12. pulumi_gcp/chronicle/data_access_label.py +2 -2
  13. pulumi_gcp/chronicle/data_access_scope.py +16 -0
  14. pulumi_gcp/chronicle/reference_list.py +16 -0
  15. pulumi_gcp/chronicle/retrohunt.py +16 -0
  16. pulumi_gcp/chronicle/rule.py +16 -0
  17. pulumi_gcp/chronicle/rule_deployment.py +16 -0
  18. pulumi_gcp/chronicle/watchlist.py +16 -0
  19. pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
  20. pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
  21. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  22. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  23. pulumi_gcp/compute/__init__.py +1 -0
  24. pulumi_gcp/compute/_inputs.py +2011 -43
  25. pulumi_gcp/compute/backend_service.py +121 -3
  26. pulumi_gcp/compute/get_backend_service.py +15 -4
  27. pulumi_gcp/compute/get_instance.py +12 -1
  28. pulumi_gcp/compute/get_region_backend_service.py +482 -0
  29. pulumi_gcp/compute/get_router.py +12 -1
  30. pulumi_gcp/compute/get_subnetwork.py +43 -1
  31. pulumi_gcp/compute/instance.py +47 -0
  32. pulumi_gcp/compute/instance_from_machine_image.py +94 -0
  33. pulumi_gcp/compute/instance_from_template.py +47 -0
  34. pulumi_gcp/compute/outputs.py +3578 -139
  35. pulumi_gcp/compute/public_delegated_prefix.py +69 -15
  36. pulumi_gcp/compute/router.py +54 -0
  37. pulumi_gcp/compute/subnetwork.py +35 -5
  38. pulumi_gcp/config/__init__.pyi +2 -0
  39. pulumi_gcp/config/outputs.py +27 -0
  40. pulumi_gcp/config/vars.py +4 -0
  41. pulumi_gcp/container/_inputs.py +12 -12
  42. pulumi_gcp/container/cluster.py +47 -0
  43. pulumi_gcp/container/get_cluster.py +12 -1
  44. pulumi_gcp/container/get_registry_image.py +4 -0
  45. pulumi_gcp/container/get_registry_repository.py +4 -0
  46. pulumi_gcp/container/outputs.py +8 -8
  47. pulumi_gcp/container/registry.py +4 -0
  48. pulumi_gcp/datafusion/instance.py +68 -0
  49. pulumi_gcp/dataproc/__init__.py +8 -0
  50. pulumi_gcp/dataproc/_inputs.py +196 -0
  51. pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
  52. pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
  53. pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
  54. pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
  55. pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
  56. pulumi_gcp/dataproc/metastore_federation.py +38 -2
  57. pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
  58. pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
  59. pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
  60. pulumi_gcp/dataproc/outputs.py +112 -0
  61. pulumi_gcp/datastream/_inputs.py +311 -94
  62. pulumi_gcp/datastream/connection_profile.py +40 -0
  63. pulumi_gcp/datastream/outputs.py +244 -51
  64. pulumi_gcp/datastream/stream.py +216 -0
  65. pulumi_gcp/discoveryengine/__init__.py +1 -0
  66. pulumi_gcp/discoveryengine/sitemap.py +504 -0
  67. pulumi_gcp/eventarc/__init__.py +1 -0
  68. pulumi_gcp/eventarc/enrollment.py +980 -0
  69. pulumi_gcp/firebase/__init__.py +1 -0
  70. pulumi_gcp/firebase/_inputs.py +484 -0
  71. pulumi_gcp/firebase/app_hosting_build.py +1232 -0
  72. pulumi_gcp/firebase/outputs.py +333 -0
  73. pulumi_gcp/identityplatform/_inputs.py +91 -0
  74. pulumi_gcp/identityplatform/outputs.py +73 -0
  75. pulumi_gcp/identityplatform/tenant.py +56 -0
  76. pulumi_gcp/managedkafka/cluster.py +2 -2
  77. pulumi_gcp/memorystore/__init__.py +1 -0
  78. pulumi_gcp/memorystore/_inputs.py +826 -0
  79. pulumi_gcp/memorystore/get_instance.py +23 -1
  80. pulumi_gcp/memorystore/instance.py +344 -23
  81. pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
  82. pulumi_gcp/memorystore/outputs.py +889 -8
  83. pulumi_gcp/networksecurity/_inputs.py +473 -0
  84. pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
  85. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
  86. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
  87. pulumi_gcp/networksecurity/outputs.py +291 -1
  88. pulumi_gcp/networksecurity/security_profile.py +8 -0
  89. pulumi_gcp/organizations/__init__.py +1 -0
  90. pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
  91. pulumi_gcp/organizations/outputs.py +96 -0
  92. pulumi_gcp/parametermanager/get_parameter.py +16 -1
  93. pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
  94. pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
  95. pulumi_gcp/parametermanager/get_parameters.py +4 -0
  96. pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
  97. pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
  98. pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
  99. pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
  100. pulumi_gcp/parametermanager/outputs.py +11 -0
  101. pulumi_gcp/parametermanager/parameter.py +88 -0
  102. pulumi_gcp/parametermanager/parameter_version.py +74 -0
  103. pulumi_gcp/parametermanager/regional_parameter.py +12 -0
  104. pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
  105. pulumi_gcp/provider.py +15 -0
  106. pulumi_gcp/pulumi-plugin.json +1 -1
  107. pulumi_gcp/redis/_inputs.py +136 -0
  108. pulumi_gcp/redis/cluster.py +54 -0
  109. pulumi_gcp/redis/outputs.py +114 -0
  110. pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
  111. pulumi_gcp/storage/__init__.py +4 -0
  112. pulumi_gcp/storage/_inputs.py +596 -0
  113. pulumi_gcp/storage/bucket.py +7 -7
  114. pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
  115. pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
  116. pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
  117. pulumi_gcp/storage/get_bucket_object_content.py +16 -1
  118. pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
  119. pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
  120. pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
  121. pulumi_gcp/storage/outputs.py +2132 -1312
  122. pulumi_gcp/workbench/instance.py +14 -2
  123. {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/METADATA +1 -1
  124. {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/RECORD +126 -107
  125. {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/WHEEL +0 -0
  126. {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/top_level.txt +0 -0
@@ -32,7 +32,7 @@ class TableArgs:
32
32
  """
33
33
  The set of arguments for constructing a Table resource.
34
34
  :param pulumi.Input[str] instance_name: The name of the Bigtable instance.
35
- :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.
35
+ :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
36
 
37
37
  -----
38
38
  :param pulumi.Input[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.
@@ -77,7 +77,7 @@ class TableArgs:
77
77
  @pulumi.getter(name="automatedBackupPolicy")
78
78
  def automated_backup_policy(self) -> Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]:
79
79
  """
80
- 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.
80
+ 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
81
 
82
82
  -----
83
83
  """
@@ -176,7 +176,7 @@ class _TableState:
176
176
  split_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
177
177
  """
178
178
  Input properties used for looking up and filtering Table resources.
179
- :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.
179
+ :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
180
 
181
181
  -----
182
182
  :param pulumi.Input[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.
@@ -211,7 +211,7 @@ class _TableState:
211
211
  @pulumi.getter(name="automatedBackupPolicy")
212
212
  def automated_backup_policy(self) -> Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]:
213
213
  """
214
- 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.
214
+ 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
215
 
216
216
  -----
217
217
  """
@@ -410,7 +410,7 @@ class Table(pulumi.CustomResource):
410
410
 
411
411
  :param str resource_name: The name of the resource.
412
412
  :param pulumi.ResourceOptions opts: Options for the resource.
413
- :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.
413
+ :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.
414
414
 
415
415
  -----
416
416
  :param pulumi.Input[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.
@@ -582,7 +582,7 @@ class Table(pulumi.CustomResource):
582
582
  :param str resource_name: The unique name of the resulting resource.
583
583
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
584
584
  :param pulumi.ResourceOptions opts: Options for the resource.
585
- :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.
585
+ :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.
586
586
 
587
587
  -----
588
588
  :param pulumi.Input[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.
@@ -612,9 +612,9 @@ class Table(pulumi.CustomResource):
612
612
 
613
613
  @property
614
614
  @pulumi.getter(name="automatedBackupPolicy")
615
- def automated_backup_policy(self) -> pulumi.Output[Optional['outputs.TableAutomatedBackupPolicy']]:
615
+ def automated_backup_policy(self) -> pulumi.Output['outputs.TableAutomatedBackupPolicy']:
616
616
  """
617
- 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.
617
+ 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.
618
618
 
619
619
  -----
620
620
  """
@@ -365,7 +365,7 @@ class DataAccessLabel(pulumi.CustomResource):
365
365
 
366
366
  To get more information about DataAccessLabel, see:
367
367
 
368
- * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1alpha/projects.locations.instances.dataAccessLabels)
368
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.dataAccessLabels)
369
369
  * How-to Guides
370
370
  * [Introduction to data RBAC](https://cloud.google.com/chronicle/docs/onboard/onboard-datarbac)
371
371
 
@@ -436,7 +436,7 @@ class DataAccessLabel(pulumi.CustomResource):
436
436
 
437
437
  To get more information about DataAccessLabel, see:
438
438
 
439
- * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1alpha/projects.locations.instances.dataAccessLabels)
439
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.dataAccessLabels)
440
440
  * How-to Guides
441
441
  * [Introduction to data RBAC](https://cloud.google.com/chronicle/docs/onboard/onboard-datarbac)
442
442
 
@@ -498,6 +498,14 @@ class DataAccessScope(pulumi.CustomResource):
498
498
  project: Optional[pulumi.Input[str]] = None,
499
499
  __props__=None):
500
500
  """
501
+ A DataAccessScope is a boolean expression of data access labels used to restrict access to data for users.
502
+
503
+ To get more information about DataAccessScope, see:
504
+
505
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.dataAccessScopes)
506
+ * How-to Guides
507
+ * [Introduction to data RBAC](https://cloud.google.com/chronicle/docs/onboard/onboard-datarbac)
508
+
501
509
  ## Example Usage
502
510
 
503
511
  ### Chronicle Dataaccessscope With Logtype
@@ -675,6 +683,14 @@ class DataAccessScope(pulumi.CustomResource):
675
683
  args: DataAccessScopeArgs,
676
684
  opts: Optional[pulumi.ResourceOptions] = None):
677
685
  """
686
+ A DataAccessScope is a boolean expression of data access labels used to restrict access to data for users.
687
+
688
+ To get more information about DataAccessScope, see:
689
+
690
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.dataAccessScopes)
691
+ * How-to Guides
692
+ * [Introduction to data RBAC](https://cloud.google.com/chronicle/docs/onboard/onboard-datarbac)
693
+
678
694
  ## Example Usage
679
695
 
680
696
  ### Chronicle Dataaccessscope With Logtype
@@ -416,6 +416,14 @@ class ReferenceList(pulumi.CustomResource):
416
416
  syntax_type: Optional[pulumi.Input[str]] = None,
417
417
  __props__=None):
418
418
  """
419
+ Reference lists are user-defined lists of values which users can use in multiple Rules.
420
+
421
+ To get more information about ReferenceList, see:
422
+
423
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.referenceLists)
424
+ * How-to Guides
425
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
426
+
419
427
  ## Example Usage
420
428
 
421
429
  ### Chronicle Referencelist Basic
@@ -488,6 +496,14 @@ class ReferenceList(pulumi.CustomResource):
488
496
  args: ReferenceListArgs,
489
497
  opts: Optional[pulumi.ResourceOptions] = None):
490
498
  """
499
+ Reference lists are user-defined lists of values which users can use in multiple Rules.
500
+
501
+ To get more information about ReferenceList, see:
502
+
503
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.referenceLists)
504
+ * How-to Guides
505
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
506
+
491
507
  ## Example Usage
492
508
 
493
509
  ### Chronicle Referencelist Basic
@@ -339,6 +339,14 @@ class Retrohunt(pulumi.CustomResource):
339
339
  rule: Optional[pulumi.Input[str]] = None,
340
340
  __props__=None):
341
341
  """
342
+ Retrohunt is an execution of a Rule over a time range in the past.
343
+
344
+ To get more information about Retrohunt, see:
345
+
346
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.rules.retrohunts)
347
+ * How-to Guides
348
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
349
+
342
350
  ## Example Usage
343
351
 
344
352
  ## Import
@@ -385,6 +393,14 @@ class Retrohunt(pulumi.CustomResource):
385
393
  args: RetrohuntArgs,
386
394
  opts: Optional[pulumi.ResourceOptions] = None):
387
395
  """
396
+ Retrohunt is an execution of a Rule over a time range in the past.
397
+
398
+ To get more information about Retrohunt, see:
399
+
400
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.rules.retrohunts)
401
+ * How-to Guides
402
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
403
+
388
404
  ## Example Usage
389
405
 
390
406
  ## Import
@@ -687,6 +687,14 @@ class Rule(pulumi.CustomResource):
687
687
  text: Optional[pulumi.Input[str]] = None,
688
688
  __props__=None):
689
689
  """
690
+ The Rule resource represents a user-created rule.
691
+
692
+ To get more information about Rule, see:
693
+
694
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.rules)
695
+ * How-to Guides
696
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
697
+
690
698
  ## Example Usage
691
699
 
692
700
  ### Chronicle Rule Basic
@@ -797,6 +805,14 @@ class Rule(pulumi.CustomResource):
797
805
  args: RuleArgs,
798
806
  opts: Optional[pulumi.ResourceOptions] = None):
799
807
  """
808
+ The Rule resource represents a user-created rule.
809
+
810
+ To get more information about Rule, see:
811
+
812
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.rules)
813
+ * How-to Guides
814
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
815
+
800
816
  ## Example Usage
801
817
 
802
818
  ### Chronicle Rule Basic
@@ -486,6 +486,14 @@ class RuleDeployment(pulumi.CustomResource):
486
486
  run_frequency: Optional[pulumi.Input[str]] = None,
487
487
  __props__=None):
488
488
  """
489
+ The RuleDeployment resource represents the deployment state of a Rule.
490
+
491
+ To get more information about RuleDeployment, see:
492
+
493
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/RuleDeployment)
494
+ * How-to Guides
495
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
496
+
489
497
  ## Example Usage
490
498
 
491
499
  ## Import
@@ -545,6 +553,14 @@ class RuleDeployment(pulumi.CustomResource):
545
553
  args: RuleDeploymentArgs,
546
554
  opts: Optional[pulumi.ResourceOptions] = None):
547
555
  """
556
+ The RuleDeployment resource represents the deployment state of a Rule.
557
+
558
+ To get more information about RuleDeployment, see:
559
+
560
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/RuleDeployment)
561
+ * How-to Guides
562
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
563
+
548
564
  ## Example Usage
549
565
 
550
566
  ## Import
@@ -412,6 +412,14 @@ class Watchlist(pulumi.CustomResource):
412
412
  watchlist_user_preferences: Optional[pulumi.Input[Union['WatchlistWatchlistUserPreferencesArgs', 'WatchlistWatchlistUserPreferencesArgsDict']]] = None,
413
413
  __props__=None):
414
414
  """
415
+ A watchlist is a list of entities that allows for bulk operations over the included entities.
416
+
417
+ To get more information about Watchlist, see:
418
+
419
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.watchlists)
420
+ * How-to Guides
421
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
422
+
415
423
  ## Example Usage
416
424
 
417
425
  ### Chronicle Watchlist Basic
@@ -500,6 +508,14 @@ class Watchlist(pulumi.CustomResource):
500
508
  args: WatchlistArgs,
501
509
  opts: Optional[pulumi.ResourceOptions] = None):
502
510
  """
511
+ A watchlist is a list of entities that allows for bulk operations over the included entities.
512
+
513
+ To get more information about Watchlist, see:
514
+
515
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1/projects.locations.instances.watchlists)
516
+ * How-to Guides
517
+ * [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
518
+
503
519
  ## Example Usage
504
520
 
505
521
  ### Chronicle Watchlist Basic
@@ -1010,6 +1010,10 @@ if not MYPY:
1010
1010
  Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
1011
1011
  supplied the value is interpreted as bytes.
1012
1012
  """
1013
+ binary_authorization_policy: NotRequired[pulumi.Input[str]]
1014
+ """
1015
+ The binary authorization policy to be checked when deploying the Cloud Run service.
1016
+ """
1013
1017
  environment_variables: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
1014
1018
  """
1015
1019
  Environment variables that shall be available during function execution.
@@ -1086,6 +1090,7 @@ class FunctionServiceConfigArgs:
1086
1090
  all_traffic_on_latest_revision: Optional[pulumi.Input[bool]] = None,
1087
1091
  available_cpu: Optional[pulumi.Input[str]] = None,
1088
1092
  available_memory: Optional[pulumi.Input[str]] = None,
1093
+ binary_authorization_policy: Optional[pulumi.Input[str]] = None,
1089
1094
  environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1090
1095
  gcf_uri: Optional[pulumi.Input[str]] = None,
1091
1096
  ingress_settings: Optional[pulumi.Input[str]] = None,
@@ -1106,6 +1111,7 @@ class FunctionServiceConfigArgs:
1106
1111
  :param pulumi.Input[str] available_memory: The amount of memory available for a function.
1107
1112
  Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
1108
1113
  supplied the value is interpreted as bytes.
1114
+ :param pulumi.Input[str] binary_authorization_policy: The binary authorization policy to be checked when deploying the Cloud Run service.
1109
1115
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] environment_variables: Environment variables that shall be available during function execution.
1110
1116
  :param pulumi.Input[str] gcf_uri: (Output)
1111
1117
  URIs of the Service deployed
@@ -1138,6 +1144,8 @@ class FunctionServiceConfigArgs:
1138
1144
  pulumi.set(__self__, "available_cpu", available_cpu)
1139
1145
  if available_memory is not None:
1140
1146
  pulumi.set(__self__, "available_memory", available_memory)
1147
+ if binary_authorization_policy is not None:
1148
+ pulumi.set(__self__, "binary_authorization_policy", binary_authorization_policy)
1141
1149
  if environment_variables is not None:
1142
1150
  pulumi.set(__self__, "environment_variables", environment_variables)
1143
1151
  if gcf_uri is not None:
@@ -1205,6 +1213,18 @@ class FunctionServiceConfigArgs:
1205
1213
  def available_memory(self, value: Optional[pulumi.Input[str]]):
1206
1214
  pulumi.set(self, "available_memory", value)
1207
1215
 
1216
+ @property
1217
+ @pulumi.getter(name="binaryAuthorizationPolicy")
1218
+ def binary_authorization_policy(self) -> Optional[pulumi.Input[str]]:
1219
+ """
1220
+ The binary authorization policy to be checked when deploying the Cloud Run service.
1221
+ """
1222
+ return pulumi.get(self, "binary_authorization_policy")
1223
+
1224
+ @binary_authorization_policy.setter
1225
+ def binary_authorization_policy(self, value: Optional[pulumi.Input[str]]):
1226
+ pulumi.set(self, "binary_authorization_policy", value)
1227
+
1208
1228
  @property
1209
1229
  @pulumi.getter(name="environmentVariables")
1210
1230
  def environment_variables(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -743,6 +743,8 @@ class FunctionServiceConfig(dict):
743
743
  suggest = "available_cpu"
744
744
  elif key == "availableMemory":
745
745
  suggest = "available_memory"
746
+ elif key == "binaryAuthorizationPolicy":
747
+ suggest = "binary_authorization_policy"
746
748
  elif key == "environmentVariables":
747
749
  suggest = "environment_variables"
748
750
  elif key == "gcfUri":
@@ -783,6 +785,7 @@ class FunctionServiceConfig(dict):
783
785
  all_traffic_on_latest_revision: Optional[bool] = None,
784
786
  available_cpu: Optional[str] = None,
785
787
  available_memory: Optional[str] = None,
788
+ binary_authorization_policy: Optional[str] = None,
786
789
  environment_variables: Optional[Mapping[str, str]] = None,
787
790
  gcf_uri: Optional[str] = None,
788
791
  ingress_settings: Optional[str] = None,
@@ -803,6 +806,7 @@ class FunctionServiceConfig(dict):
803
806
  :param str available_memory: The amount of memory available for a function.
804
807
  Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
805
808
  supplied the value is interpreted as bytes.
809
+ :param str binary_authorization_policy: The binary authorization policy to be checked when deploying the Cloud Run service.
806
810
  :param Mapping[str, str] environment_variables: Environment variables that shall be available during function execution.
807
811
  :param str gcf_uri: (Output)
808
812
  URIs of the Service deployed
@@ -835,6 +839,8 @@ class FunctionServiceConfig(dict):
835
839
  pulumi.set(__self__, "available_cpu", available_cpu)
836
840
  if available_memory is not None:
837
841
  pulumi.set(__self__, "available_memory", available_memory)
842
+ if binary_authorization_policy is not None:
843
+ pulumi.set(__self__, "binary_authorization_policy", binary_authorization_policy)
838
844
  if environment_variables is not None:
839
845
  pulumi.set(__self__, "environment_variables", environment_variables)
840
846
  if gcf_uri is not None:
@@ -890,6 +896,14 @@ class FunctionServiceConfig(dict):
890
896
  """
891
897
  return pulumi.get(self, "available_memory")
892
898
 
899
+ @property
900
+ @pulumi.getter(name="binaryAuthorizationPolicy")
901
+ def binary_authorization_policy(self) -> Optional[str]:
902
+ """
903
+ The binary authorization policy to be checked when deploying the Cloud Run service.
904
+ """
905
+ return pulumi.get(self, "binary_authorization_policy")
906
+
893
907
  @property
894
908
  @pulumi.getter(name="environmentVariables")
895
909
  def environment_variables(self) -> Optional[Mapping[str, str]]:
@@ -1656,6 +1670,7 @@ class GetFunctionServiceConfigResult(dict):
1656
1670
  all_traffic_on_latest_revision: bool,
1657
1671
  available_cpu: str,
1658
1672
  available_memory: str,
1673
+ binary_authorization_policy: str,
1659
1674
  environment_variables: Mapping[str, str],
1660
1675
  gcf_uri: str,
1661
1676
  ingress_settings: str,
@@ -1676,6 +1691,7 @@ class GetFunctionServiceConfigResult(dict):
1676
1691
  :param str available_memory: The amount of memory available for a function.
1677
1692
  Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
1678
1693
  supplied the value is interpreted as bytes.
1694
+ :param str binary_authorization_policy: The binary authorization policy to be checked when deploying the Cloud Run service.
1679
1695
  :param Mapping[str, str] environment_variables: Environment variables that shall be available during function execution.
1680
1696
  :param str gcf_uri: URIs of the Service deployed
1681
1697
  :param str ingress_settings: Available ingress settings. Defaults to "ALLOW_ALL" if unspecified. Default value: "ALLOW_ALL" Possible values: ["ALLOW_ALL", "ALLOW_INTERNAL_ONLY", "ALLOW_INTERNAL_AND_GCLB"]
@@ -1698,6 +1714,7 @@ class GetFunctionServiceConfigResult(dict):
1698
1714
  pulumi.set(__self__, "all_traffic_on_latest_revision", all_traffic_on_latest_revision)
1699
1715
  pulumi.set(__self__, "available_cpu", available_cpu)
1700
1716
  pulumi.set(__self__, "available_memory", available_memory)
1717
+ pulumi.set(__self__, "binary_authorization_policy", binary_authorization_policy)
1701
1718
  pulumi.set(__self__, "environment_variables", environment_variables)
1702
1719
  pulumi.set(__self__, "gcf_uri", gcf_uri)
1703
1720
  pulumi.set(__self__, "ingress_settings", ingress_settings)
@@ -1739,6 +1756,14 @@ class GetFunctionServiceConfigResult(dict):
1739
1756
  """
1740
1757
  return pulumi.get(self, "available_memory")
1741
1758
 
1759
+ @property
1760
+ @pulumi.getter(name="binaryAuthorizationPolicy")
1761
+ def binary_authorization_policy(self) -> str:
1762
+ """
1763
+ The binary authorization policy to be checked when deploying the Cloud Run service.
1764
+ """
1765
+ return pulumi.get(self, "binary_authorization_policy")
1766
+
1742
1767
  @property
1743
1768
  @pulumi.getter(name="environmentVariables")
1744
1769
  def environment_variables(self) -> Mapping[str, str]:
@@ -2924,6 +2924,10 @@ if not MYPY:
2924
2924
  The sandbox environment to host this Revision.
2925
2925
  Possible values are: `EXECUTION_ENVIRONMENT_GEN1`, `EXECUTION_ENVIRONMENT_GEN2`.
2926
2926
  """
2927
+ gpu_zonal_redundancy_disabled: NotRequired[pulumi.Input[bool]]
2928
+ """
2929
+ True if GPU zonal redundancy is disabled on this revision.
2930
+ """
2927
2931
  labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
2928
2932
  """
2929
2933
  Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment, state, etc.
@@ -2988,6 +2992,7 @@ class ServiceTemplateArgs:
2988
2992
  containers: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTemplateContainerArgs']]]] = None,
2989
2993
  encryption_key: Optional[pulumi.Input[str]] = None,
2990
2994
  execution_environment: Optional[pulumi.Input[str]] = None,
2995
+ gpu_zonal_redundancy_disabled: Optional[pulumi.Input[bool]] = None,
2991
2996
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2992
2997
  max_instance_request_concurrency: Optional[pulumi.Input[int]] = None,
2993
2998
  node_selector: Optional[pulumi.Input['ServiceTemplateNodeSelectorArgs']] = None,
@@ -3009,6 +3014,7 @@ class ServiceTemplateArgs:
3009
3014
  :param pulumi.Input[str] encryption_key: A reference to a customer managed encryption key (CMEK) to use to encrypt this container image. For more information, go to https://cloud.google.com/run/docs/securing/using-cmek
3010
3015
  :param pulumi.Input[str] execution_environment: The sandbox environment to host this Revision.
3011
3016
  Possible values are: `EXECUTION_ENVIRONMENT_GEN1`, `EXECUTION_ENVIRONMENT_GEN2`.
3017
+ :param pulumi.Input[bool] gpu_zonal_redundancy_disabled: True if GPU zonal redundancy is disabled on this revision.
3012
3018
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment, state, etc.
3013
3019
  For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or https://cloud.google.com/run/docs/configuring/labels.
3014
3020
  Cloud Run API v2 does not support labels with `run.googleapis.com`, `cloud.googleapis.com`, `serving.knative.dev`, or `autoscaling.knative.dev` namespaces, and they will be rejected.
@@ -3039,6 +3045,8 @@ class ServiceTemplateArgs:
3039
3045
  pulumi.set(__self__, "encryption_key", encryption_key)
3040
3046
  if execution_environment is not None:
3041
3047
  pulumi.set(__self__, "execution_environment", execution_environment)
3048
+ if gpu_zonal_redundancy_disabled is not None:
3049
+ pulumi.set(__self__, "gpu_zonal_redundancy_disabled", gpu_zonal_redundancy_disabled)
3042
3050
  if labels is not None:
3043
3051
  pulumi.set(__self__, "labels", labels)
3044
3052
  if max_instance_request_concurrency is not None:
@@ -3115,6 +3123,18 @@ class ServiceTemplateArgs:
3115
3123
  def execution_environment(self, value: Optional[pulumi.Input[str]]):
3116
3124
  pulumi.set(self, "execution_environment", value)
3117
3125
 
3126
+ @property
3127
+ @pulumi.getter(name="gpuZonalRedundancyDisabled")
3128
+ def gpu_zonal_redundancy_disabled(self) -> Optional[pulumi.Input[bool]]:
3129
+ """
3130
+ True if GPU zonal redundancy is disabled on this revision.
3131
+ """
3132
+ return pulumi.get(self, "gpu_zonal_redundancy_disabled")
3133
+
3134
+ @gpu_zonal_redundancy_disabled.setter
3135
+ def gpu_zonal_redundancy_disabled(self, value: Optional[pulumi.Input[bool]]):
3136
+ pulumi.set(self, "gpu_zonal_redundancy_disabled", value)
3137
+
3118
3138
  @property
3119
3139
  @pulumi.getter
3120
3140
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -2205,6 +2205,8 @@ class ServiceTemplate(dict):
2205
2205
  suggest = "encryption_key"
2206
2206
  elif key == "executionEnvironment":
2207
2207
  suggest = "execution_environment"
2208
+ elif key == "gpuZonalRedundancyDisabled":
2209
+ suggest = "gpu_zonal_redundancy_disabled"
2208
2210
  elif key == "maxInstanceRequestConcurrency":
2209
2211
  suggest = "max_instance_request_concurrency"
2210
2212
  elif key == "nodeSelector":
@@ -2234,6 +2236,7 @@ class ServiceTemplate(dict):
2234
2236
  containers: Optional[Sequence['outputs.ServiceTemplateContainer']] = None,
2235
2237
  encryption_key: Optional[str] = None,
2236
2238
  execution_environment: Optional[str] = None,
2239
+ gpu_zonal_redundancy_disabled: Optional[bool] = None,
2237
2240
  labels: Optional[Mapping[str, str]] = None,
2238
2241
  max_instance_request_concurrency: Optional[int] = None,
2239
2242
  node_selector: Optional['outputs.ServiceTemplateNodeSelector'] = None,
@@ -2255,6 +2258,7 @@ class ServiceTemplate(dict):
2255
2258
  :param str encryption_key: A reference to a customer managed encryption key (CMEK) to use to encrypt this container image. For more information, go to https://cloud.google.com/run/docs/securing/using-cmek
2256
2259
  :param str execution_environment: The sandbox environment to host this Revision.
2257
2260
  Possible values are: `EXECUTION_ENVIRONMENT_GEN1`, `EXECUTION_ENVIRONMENT_GEN2`.
2261
+ :param bool gpu_zonal_redundancy_disabled: True if GPU zonal redundancy is disabled on this revision.
2258
2262
  :param Mapping[str, str] labels: Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment, state, etc.
2259
2263
  For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or https://cloud.google.com/run/docs/configuring/labels.
2260
2264
  Cloud Run API v2 does not support labels with `run.googleapis.com`, `cloud.googleapis.com`, `serving.knative.dev`, or `autoscaling.knative.dev` namespaces, and they will be rejected.
@@ -2285,6 +2289,8 @@ class ServiceTemplate(dict):
2285
2289
  pulumi.set(__self__, "encryption_key", encryption_key)
2286
2290
  if execution_environment is not None:
2287
2291
  pulumi.set(__self__, "execution_environment", execution_environment)
2292
+ if gpu_zonal_redundancy_disabled is not None:
2293
+ pulumi.set(__self__, "gpu_zonal_redundancy_disabled", gpu_zonal_redundancy_disabled)
2288
2294
  if labels is not None:
2289
2295
  pulumi.set(__self__, "labels", labels)
2290
2296
  if max_instance_request_concurrency is not None:
@@ -2345,6 +2351,14 @@ class ServiceTemplate(dict):
2345
2351
  """
2346
2352
  return pulumi.get(self, "execution_environment")
2347
2353
 
2354
+ @property
2355
+ @pulumi.getter(name="gpuZonalRedundancyDisabled")
2356
+ def gpu_zonal_redundancy_disabled(self) -> Optional[bool]:
2357
+ """
2358
+ True if GPU zonal redundancy is disabled on this revision.
2359
+ """
2360
+ return pulumi.get(self, "gpu_zonal_redundancy_disabled")
2361
+
2348
2362
  @property
2349
2363
  @pulumi.getter
2350
2364
  def labels(self) -> Optional[Mapping[str, str]]:
@@ -5827,6 +5841,7 @@ class GetServiceTemplateResult(dict):
5827
5841
  containers: Sequence['outputs.GetServiceTemplateContainerResult'],
5828
5842
  encryption_key: str,
5829
5843
  execution_environment: str,
5844
+ gpu_zonal_redundancy_disabled: bool,
5830
5845
  labels: Mapping[str, str],
5831
5846
  max_instance_request_concurrency: int,
5832
5847
  node_selectors: Sequence['outputs.GetServiceTemplateNodeSelectorResult'],
@@ -5848,6 +5863,7 @@ class GetServiceTemplateResult(dict):
5848
5863
  :param Sequence['GetServiceTemplateContainerArgs'] containers: Holds the containers that define the unit of execution for this Service.
5849
5864
  :param str encryption_key: A reference to a customer managed encryption key (CMEK) to use to encrypt this container image. For more information, go to https://cloud.google.com/run/docs/securing/using-cmek
5850
5865
  :param str execution_environment: The sandbox environment to host this Revision. Possible values: ["EXECUTION_ENVIRONMENT_GEN1", "EXECUTION_ENVIRONMENT_GEN2"]
5866
+ :param bool gpu_zonal_redundancy_disabled: True if GPU zonal redundancy is disabled on this revision.
5851
5867
  :param Mapping[str, str] labels: Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment, state, etc.
5852
5868
  For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or https://cloud.google.com/run/docs/configuring/labels.
5853
5869
 
@@ -5871,6 +5887,7 @@ class GetServiceTemplateResult(dict):
5871
5887
  pulumi.set(__self__, "containers", containers)
5872
5888
  pulumi.set(__self__, "encryption_key", encryption_key)
5873
5889
  pulumi.set(__self__, "execution_environment", execution_environment)
5890
+ pulumi.set(__self__, "gpu_zonal_redundancy_disabled", gpu_zonal_redundancy_disabled)
5874
5891
  pulumi.set(__self__, "labels", labels)
5875
5892
  pulumi.set(__self__, "max_instance_request_concurrency", max_instance_request_concurrency)
5876
5893
  pulumi.set(__self__, "node_selectors", node_selectors)
@@ -5920,6 +5937,14 @@ class GetServiceTemplateResult(dict):
5920
5937
  """
5921
5938
  return pulumi.get(self, "execution_environment")
5922
5939
 
5940
+ @property
5941
+ @pulumi.getter(name="gpuZonalRedundancyDisabled")
5942
+ def gpu_zonal_redundancy_disabled(self) -> bool:
5943
+ """
5944
+ True if GPU zonal redundancy is disabled on this revision.
5945
+ """
5946
+ return pulumi.get(self, "gpu_zonal_redundancy_disabled")
5947
+
5923
5948
  @property
5924
5949
  @pulumi.getter
5925
5950
  def labels(self) -> Mapping[str, str]:
@@ -69,6 +69,7 @@ from .get_network_endpoint_group import *
69
69
  from .get_network_peering import *
70
70
  from .get_networks import *
71
71
  from .get_node_types import *
72
+ from .get_region_backend_service import *
72
73
  from .get_region_backend_service_iam_policy import *
73
74
  from .get_region_disk import *
74
75
  from .get_region_disk_iam_policy import *