pulumi-gcp 7.5.0a1704347630__py3-none-any.whl → 7.6.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. pulumi_gcp/__init__.py +99 -0
  2. pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
  3. pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
  4. pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
  5. pulumi_gcp/clouddeploy/__init__.py +1 -0
  6. pulumi_gcp/clouddeploy/_inputs.py +239 -0
  7. pulumi_gcp/clouddeploy/automation.py +1103 -0
  8. pulumi_gcp/clouddeploy/outputs.py +246 -0
  9. pulumi_gcp/clouddomains/__init__.py +10 -0
  10. pulumi_gcp/clouddomains/_inputs.py +1098 -0
  11. pulumi_gcp/clouddomains/outputs.py +1156 -0
  12. pulumi_gcp/clouddomains/registration.py +1068 -0
  13. pulumi_gcp/cloudrunv2/job.py +4 -4
  14. pulumi_gcp/composer/_inputs.py +79 -1
  15. pulumi_gcp/composer/outputs.py +131 -4
  16. pulumi_gcp/compute/__init__.py +1 -0
  17. pulumi_gcp/compute/_inputs.py +180 -0
  18. pulumi_gcp/compute/get_instance_template.py +11 -1
  19. pulumi_gcp/compute/get_region_instance_template.py +11 -1
  20. pulumi_gcp/compute/get_reservation.py +212 -0
  21. pulumi_gcp/compute/instance_template.py +47 -0
  22. pulumi_gcp/compute/network_firewall_policy.py +20 -22
  23. pulumi_gcp/compute/outputs.py +325 -0
  24. pulumi_gcp/compute/region_instance_template.py +47 -0
  25. pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
  26. pulumi_gcp/compute/router_peer.py +54 -0
  27. pulumi_gcp/compute/vpn_tunnel.py +8 -4
  28. pulumi_gcp/config/__init__.pyi +2 -0
  29. pulumi_gcp/config/vars.py +4 -0
  30. pulumi_gcp/container/_inputs.py +23 -0
  31. pulumi_gcp/container/aws_node_pool.py +7 -7
  32. pulumi_gcp/container/cluster.py +68 -14
  33. pulumi_gcp/container/get_cluster.py +11 -1
  34. pulumi_gcp/container/outputs.py +49 -0
  35. pulumi_gcp/dataflow/pipeline.py +1 -1
  36. pulumi_gcp/dataproc/_inputs.py +413 -39
  37. pulumi_gcp/dataproc/metastore_service.py +63 -0
  38. pulumi_gcp/dataproc/outputs.py +461 -39
  39. pulumi_gcp/dns/__init__.py +1 -0
  40. pulumi_gcp/dns/_inputs.py +94 -0
  41. pulumi_gcp/dns/get_managed_zones.py +89 -0
  42. pulumi_gcp/dns/outputs.py +62 -0
  43. pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
  44. pulumi_gcp/filestore/__init__.py +1 -0
  45. pulumi_gcp/filestore/get_instance.py +258 -0
  46. pulumi_gcp/filestore/instance.py +7 -7
  47. pulumi_gcp/filestore/outputs.py +126 -0
  48. pulumi_gcp/gkebackup/backup_plan.py +24 -8
  49. pulumi_gcp/gkebackup/restore_plan.py +36 -12
  50. pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
  51. pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
  52. pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
  53. pulumi_gcp/gkehub/_inputs.py +502 -2
  54. pulumi_gcp/gkehub/feature.py +34 -0
  55. pulumi_gcp/gkehub/feature_membership.py +177 -0
  56. pulumi_gcp/gkehub/membership.py +18 -6
  57. pulumi_gcp/gkehub/outputs.py +502 -2
  58. pulumi_gcp/gkeonprem/_inputs.py +21 -25
  59. pulumi_gcp/gkeonprem/outputs.py +34 -25
  60. pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
  61. pulumi_gcp/integrationconnectors/__init__.py +1 -0
  62. pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
  63. pulumi_gcp/kms/_inputs.py +42 -0
  64. pulumi_gcp/kms/crypto_key.py +36 -0
  65. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  66. pulumi_gcp/kms/outputs.py +62 -0
  67. pulumi_gcp/logging/__init__.py +2 -0
  68. pulumi_gcp/logging/folder_settings.py +490 -0
  69. pulumi_gcp/logging/folder_sink.py +21 -21
  70. pulumi_gcp/logging/organization_settings.py +484 -0
  71. pulumi_gcp/logging/organization_sink.py +21 -21
  72. pulumi_gcp/logging/project_sink.py +7 -14
  73. pulumi_gcp/netapp/__init__.py +3 -0
  74. pulumi_gcp/netapp/active_directory.py +1413 -0
  75. pulumi_gcp/netapp/backup_vault.py +593 -0
  76. pulumi_gcp/netapp/kmsconfig.py +649 -0
  77. pulumi_gcp/orgpolicy/policy.py +28 -0
  78. pulumi_gcp/provider.py +20 -0
  79. pulumi_gcp/pubsub/subscription.py +29 -37
  80. pulumi_gcp/serviceaccount/account.py +47 -0
  81. pulumi_gcp/servicenetworking/connection.py +55 -1
  82. pulumi_gcp/sql/database_instance.py +2 -2
  83. pulumi_gcp/sql/ssl_cert.py +1 -1
  84. pulumi_gcp/sql/user.py +7 -7
  85. pulumi_gcp/storage/transfer_job.py +24 -5
  86. pulumi_gcp/vertex/__init__.py +3 -0
  87. pulumi_gcp/vertex/_inputs.py +339 -0
  88. pulumi_gcp/vertex/ai_feature_group.py +710 -0
  89. pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
  90. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
  91. pulumi_gcp/vertex/outputs.py +406 -0
  92. pulumi_gcp/vmwareengine/__init__.py +2 -0
  93. pulumi_gcp/vmwareengine/_inputs.py +84 -0
  94. pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
  95. pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
  96. pulumi_gcp/vmwareengine/outputs.py +146 -0
  97. pulumi_gcp/workflows/workflow.py +7 -7
  98. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
  100. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
  101. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
@@ -36,6 +36,7 @@ class InstanceTemplateArgs:
36
36
  project: Optional[pulumi.Input[str]] = None,
37
37
  region: Optional[pulumi.Input[str]] = None,
38
38
  reservation_affinity: Optional[pulumi.Input['InstanceTemplateReservationAffinityArgs']] = None,
39
+ resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
39
40
  resource_policies: Optional[pulumi.Input[str]] = None,
40
41
  scheduling: Optional[pulumi.Input['InstanceTemplateSchedulingArgs']] = None,
41
42
  service_account: Optional[pulumi.Input['InstanceTemplateServiceAccountArgs']] = None,
@@ -97,6 +98,7 @@ class InstanceTemplateArgs:
97
98
  Provider if no value is given.
98
99
  :param pulumi.Input['InstanceTemplateReservationAffinityArgs'] reservation_affinity: Specifies the reservations that this instance can consume from.
99
100
  Structure is documented below.
101
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A set of key/value resource manager tag pairs to bind to the instances. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
100
102
  :param pulumi.Input[str] resource_policies: - A list of self_links of resource policies to attach to the instance. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
101
103
  :param pulumi.Input['InstanceTemplateSchedulingArgs'] scheduling: The scheduling strategy to use. More details about
102
104
  this configuration option are detailed below.
@@ -143,6 +145,8 @@ class InstanceTemplateArgs:
143
145
  pulumi.set(__self__, "region", region)
144
146
  if reservation_affinity is not None:
145
147
  pulumi.set(__self__, "reservation_affinity", reservation_affinity)
148
+ if resource_manager_tags is not None:
149
+ pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
146
150
  if resource_policies is not None:
147
151
  pulumi.set(__self__, "resource_policies", resource_policies)
148
152
  if scheduling is not None:
@@ -428,6 +432,18 @@ class InstanceTemplateArgs:
428
432
  def reservation_affinity(self, value: Optional[pulumi.Input['InstanceTemplateReservationAffinityArgs']]):
429
433
  pulumi.set(self, "reservation_affinity", value)
430
434
 
435
+ @property
436
+ @pulumi.getter(name="resourceManagerTags")
437
+ def resource_manager_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
438
+ """
439
+ A set of key/value resource manager tag pairs to bind to the instances. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
440
+ """
441
+ return pulumi.get(self, "resource_manager_tags")
442
+
443
+ @resource_manager_tags.setter
444
+ def resource_manager_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
445
+ pulumi.set(self, "resource_manager_tags", value)
446
+
431
447
  @property
432
448
  @pulumi.getter(name="resourcePolicies")
433
449
  def resource_policies(self) -> Optional[pulumi.Input[str]]:
@@ -517,6 +533,7 @@ class _InstanceTemplateState:
517
533
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
518
534
  region: Optional[pulumi.Input[str]] = None,
519
535
  reservation_affinity: Optional[pulumi.Input['InstanceTemplateReservationAffinityArgs']] = None,
536
+ resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
520
537
  resource_policies: Optional[pulumi.Input[str]] = None,
521
538
  scheduling: Optional[pulumi.Input['InstanceTemplateSchedulingArgs']] = None,
522
539
  self_link: Optional[pulumi.Input[str]] = None,
@@ -584,6 +601,7 @@ class _InstanceTemplateState:
584
601
  Provider if no value is given.
585
602
  :param pulumi.Input['InstanceTemplateReservationAffinityArgs'] reservation_affinity: Specifies the reservations that this instance can consume from.
586
603
  Structure is documented below.
604
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A set of key/value resource manager tag pairs to bind to the instances. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
587
605
  :param pulumi.Input[str] resource_policies: - A list of self_links of resource policies to attach to the instance. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
588
606
  :param pulumi.Input['InstanceTemplateSchedulingArgs'] scheduling: The scheduling strategy to use. More details about
589
607
  this configuration option are detailed below.
@@ -642,6 +660,8 @@ class _InstanceTemplateState:
642
660
  pulumi.set(__self__, "region", region)
643
661
  if reservation_affinity is not None:
644
662
  pulumi.set(__self__, "reservation_affinity", reservation_affinity)
663
+ if resource_manager_tags is not None:
664
+ pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
645
665
  if resource_policies is not None:
646
666
  pulumi.set(__self__, "resource_policies", resource_policies)
647
667
  if scheduling is not None:
@@ -969,6 +989,18 @@ class _InstanceTemplateState:
969
989
  def reservation_affinity(self, value: Optional[pulumi.Input['InstanceTemplateReservationAffinityArgs']]):
970
990
  pulumi.set(self, "reservation_affinity", value)
971
991
 
992
+ @property
993
+ @pulumi.getter(name="resourceManagerTags")
994
+ def resource_manager_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
995
+ """
996
+ A set of key/value resource manager tag pairs to bind to the instances. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
997
+ """
998
+ return pulumi.get(self, "resource_manager_tags")
999
+
1000
+ @resource_manager_tags.setter
1001
+ def resource_manager_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
1002
+ pulumi.set(self, "resource_manager_tags", value)
1003
+
972
1004
  @property
973
1005
  @pulumi.getter(name="resourcePolicies")
974
1006
  def resource_policies(self) -> Optional[pulumi.Input[str]]:
@@ -1094,6 +1126,7 @@ class InstanceTemplate(pulumi.CustomResource):
1094
1126
  project: Optional[pulumi.Input[str]] = None,
1095
1127
  region: Optional[pulumi.Input[str]] = None,
1096
1128
  reservation_affinity: Optional[pulumi.Input[pulumi.InputType['InstanceTemplateReservationAffinityArgs']]] = None,
1129
+ resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1097
1130
  resource_policies: Optional[pulumi.Input[str]] = None,
1098
1131
  scheduling: Optional[pulumi.Input[pulumi.InputType['InstanceTemplateSchedulingArgs']]] = None,
1099
1132
  service_account: Optional[pulumi.Input[pulumi.InputType['InstanceTemplateServiceAccountArgs']]] = None,
@@ -1307,6 +1340,7 @@ class InstanceTemplate(pulumi.CustomResource):
1307
1340
  Provider if no value is given.
1308
1341
  :param pulumi.Input[pulumi.InputType['InstanceTemplateReservationAffinityArgs']] reservation_affinity: Specifies the reservations that this instance can consume from.
1309
1342
  Structure is documented below.
1343
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A set of key/value resource manager tag pairs to bind to the instances. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
1310
1344
  :param pulumi.Input[str] resource_policies: - A list of self_links of resource policies to attach to the instance. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
1311
1345
  :param pulumi.Input[pulumi.InputType['InstanceTemplateSchedulingArgs']] scheduling: The scheduling strategy to use. More details about
1312
1346
  this configuration option are detailed below.
@@ -1507,6 +1541,7 @@ class InstanceTemplate(pulumi.CustomResource):
1507
1541
  project: Optional[pulumi.Input[str]] = None,
1508
1542
  region: Optional[pulumi.Input[str]] = None,
1509
1543
  reservation_affinity: Optional[pulumi.Input[pulumi.InputType['InstanceTemplateReservationAffinityArgs']]] = None,
1544
+ resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1510
1545
  resource_policies: Optional[pulumi.Input[str]] = None,
1511
1546
  scheduling: Optional[pulumi.Input[pulumi.InputType['InstanceTemplateSchedulingArgs']]] = None,
1512
1547
  service_account: Optional[pulumi.Input[pulumi.InputType['InstanceTemplateServiceAccountArgs']]] = None,
@@ -1545,6 +1580,7 @@ class InstanceTemplate(pulumi.CustomResource):
1545
1580
  __props__.__dict__["project"] = project
1546
1581
  __props__.__dict__["region"] = region
1547
1582
  __props__.__dict__["reservation_affinity"] = reservation_affinity
1583
+ __props__.__dict__["resource_manager_tags"] = resource_manager_tags
1548
1584
  __props__.__dict__["resource_policies"] = resource_policies
1549
1585
  __props__.__dict__["scheduling"] = scheduling
1550
1586
  __props__.__dict__["service_account"] = service_account
@@ -1591,6 +1627,7 @@ class InstanceTemplate(pulumi.CustomResource):
1591
1627
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1592
1628
  region: Optional[pulumi.Input[str]] = None,
1593
1629
  reservation_affinity: Optional[pulumi.Input[pulumi.InputType['InstanceTemplateReservationAffinityArgs']]] = None,
1630
+ resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1594
1631
  resource_policies: Optional[pulumi.Input[str]] = None,
1595
1632
  scheduling: Optional[pulumi.Input[pulumi.InputType['InstanceTemplateSchedulingArgs']]] = None,
1596
1633
  self_link: Optional[pulumi.Input[str]] = None,
@@ -1663,6 +1700,7 @@ class InstanceTemplate(pulumi.CustomResource):
1663
1700
  Provider if no value is given.
1664
1701
  :param pulumi.Input[pulumi.InputType['InstanceTemplateReservationAffinityArgs']] reservation_affinity: Specifies the reservations that this instance can consume from.
1665
1702
  Structure is documented below.
1703
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A set of key/value resource manager tag pairs to bind to the instances. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
1666
1704
  :param pulumi.Input[str] resource_policies: - A list of self_links of resource policies to attach to the instance. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
1667
1705
  :param pulumi.Input[pulumi.InputType['InstanceTemplateSchedulingArgs']] scheduling: The scheduling strategy to use. More details about
1668
1706
  this configuration option are detailed below.
@@ -1702,6 +1740,7 @@ class InstanceTemplate(pulumi.CustomResource):
1702
1740
  __props__.__dict__["pulumi_labels"] = pulumi_labels
1703
1741
  __props__.__dict__["region"] = region
1704
1742
  __props__.__dict__["reservation_affinity"] = reservation_affinity
1743
+ __props__.__dict__["resource_manager_tags"] = resource_manager_tags
1705
1744
  __props__.__dict__["resource_policies"] = resource_policies
1706
1745
  __props__.__dict__["scheduling"] = scheduling
1707
1746
  __props__.__dict__["self_link"] = self_link
@@ -1930,6 +1969,14 @@ class InstanceTemplate(pulumi.CustomResource):
1930
1969
  """
1931
1970
  return pulumi.get(self, "reservation_affinity")
1932
1971
 
1972
+ @property
1973
+ @pulumi.getter(name="resourceManagerTags")
1974
+ def resource_manager_tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
1975
+ """
1976
+ A set of key/value resource manager tag pairs to bind to the instances. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
1977
+ """
1978
+ return pulumi.get(self, "resource_manager_tags")
1979
+
1933
1980
  @property
1934
1981
  @pulumi.getter(name="resourcePolicies")
1935
1982
  def resource_policies(self) -> pulumi.Output[Optional[str]]:
@@ -23,9 +23,9 @@ class NetworkFirewallPolicyArgs:
23
23
  :param pulumi.Input[str] name: User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
24
24
 
25
25
 
26
-
27
26
  - - -
28
- :param pulumi.Input[str] project: The project for the resource
27
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
28
+ If it is not provided, the provider project is used.
29
29
  """
30
30
  if description is not None:
31
31
  pulumi.set(__self__, "description", description)
@@ -53,7 +53,6 @@ class NetworkFirewallPolicyArgs:
53
53
  User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
54
54
 
55
55
 
56
-
57
56
  - - -
58
57
  """
59
58
  return pulumi.get(self, "name")
@@ -66,7 +65,8 @@ class NetworkFirewallPolicyArgs:
66
65
  @pulumi.getter
67
66
  def project(self) -> Optional[pulumi.Input[str]]:
68
67
  """
69
- The project for the resource
68
+ The ID of the project in which the resource belongs.
69
+ If it is not provided, the provider project is used.
70
70
  """
71
71
  return pulumi.get(self, "project")
72
72
 
@@ -95,10 +95,10 @@ class _NetworkFirewallPolicyState:
95
95
  :param pulumi.Input[str] name: User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
96
96
 
97
97
 
98
-
99
98
  - - -
100
99
  :param pulumi.Input[str] network_firewall_policy_id: The unique identifier for the resource. This identifier is defined by the server.
101
- :param pulumi.Input[str] project: The project for the resource
100
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
101
+ If it is not provided, the provider project is used.
102
102
  :param pulumi.Input[int] rule_tuple_count: Total count of all firewall policy rule tuples. A firewall policy can not exceed a set number of tuples.
103
103
  :param pulumi.Input[str] self_link: Server-defined URL for the resource.
104
104
  :param pulumi.Input[str] self_link_with_id: Server-defined URL for this resource with the resource id.
@@ -165,7 +165,6 @@ class _NetworkFirewallPolicyState:
165
165
  User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
166
166
 
167
167
 
168
-
169
168
  - - -
170
169
  """
171
170
  return pulumi.get(self, "name")
@@ -190,7 +189,8 @@ class _NetworkFirewallPolicyState:
190
189
  @pulumi.getter
191
190
  def project(self) -> Optional[pulumi.Input[str]]:
192
191
  """
193
- The project for the resource
192
+ The ID of the project in which the resource belongs.
193
+ If it is not provided, the provider project is used.
194
194
  """
195
195
  return pulumi.get(self, "project")
196
196
 
@@ -248,14 +248,13 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
248
248
  The Compute NetworkFirewallPolicy resource
249
249
 
250
250
  ## Example Usage
251
- ### Global
251
+ ### Network Firewall Policy Full
252
+
252
253
  ```python
253
254
  import pulumi
254
255
  import pulumi_gcp as gcp
255
256
 
256
- primary = gcp.compute.NetworkFirewallPolicy("primary",
257
- description="Sample global network firewall policy",
258
- project="my-project-name")
257
+ policy = gcp.compute.NetworkFirewallPolicy("policy", description="Terraform test")
259
258
  ```
260
259
 
261
260
  ## Import
@@ -288,9 +287,9 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
288
287
  :param pulumi.Input[str] name: User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
289
288
 
290
289
 
291
-
292
290
  - - -
293
- :param pulumi.Input[str] project: The project for the resource
291
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
292
+ If it is not provided, the provider project is used.
294
293
  """
295
294
  ...
296
295
  @overload
@@ -302,14 +301,13 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
302
301
  The Compute NetworkFirewallPolicy resource
303
302
 
304
303
  ## Example Usage
305
- ### Global
304
+ ### Network Firewall Policy Full
305
+
306
306
  ```python
307
307
  import pulumi
308
308
  import pulumi_gcp as gcp
309
309
 
310
- primary = gcp.compute.NetworkFirewallPolicy("primary",
311
- description="Sample global network firewall policy",
312
- project="my-project-name")
310
+ policy = gcp.compute.NetworkFirewallPolicy("policy", description="Terraform test")
313
311
  ```
314
312
 
315
313
  ## Import
@@ -404,10 +402,10 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
404
402
  :param pulumi.Input[str] name: User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
405
403
 
406
404
 
407
-
408
405
  - - -
409
406
  :param pulumi.Input[str] network_firewall_policy_id: The unique identifier for the resource. This identifier is defined by the server.
410
- :param pulumi.Input[str] project: The project for the resource
407
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
408
+ If it is not provided, the provider project is used.
411
409
  :param pulumi.Input[int] rule_tuple_count: Total count of all firewall policy rule tuples. A firewall policy can not exceed a set number of tuples.
412
410
  :param pulumi.Input[str] self_link: Server-defined URL for the resource.
413
411
  :param pulumi.Input[str] self_link_with_id: Server-defined URL for this resource with the resource id.
@@ -458,7 +456,6 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
458
456
  User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
459
457
 
460
458
 
461
-
462
459
  - - -
463
460
  """
464
461
  return pulumi.get(self, "name")
@@ -475,7 +472,8 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
475
472
  @pulumi.getter
476
473
  def project(self) -> pulumi.Output[str]:
477
474
  """
478
- The project for the resource
475
+ The ID of the project in which the resource belongs.
476
+ If it is not provided, the provider project is used.
479
477
  """
480
478
  return pulumi.get(self, "project")
481
479