pulumi-gcp 8.6.0a1728595713__py3-none-any.whl → 8.7.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 (128) hide show
  1. pulumi_gcp/__init__.py +78 -0
  2. pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
  3. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +4 -0
  4. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +4 -0
  5. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +4 -0
  6. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +4 -0
  7. pulumi_gcp/accesscontextmanager/service_perimeters.py +2 -0
  8. pulumi_gcp/apigee/__init__.py +2 -0
  9. pulumi_gcp/apigee/_inputs.py +108 -0
  10. pulumi_gcp/apigee/app_group.py +811 -0
  11. pulumi_gcp/apigee/developer.py +757 -0
  12. pulumi_gcp/apigee/outputs.py +64 -0
  13. pulumi_gcp/artifactregistry/get_docker_image.py +40 -0
  14. pulumi_gcp/bigquery/connection.py +12 -12
  15. pulumi_gcp/bigquery/job.py +6 -6
  16. pulumi_gcp/bigtable/_inputs.py +58 -0
  17. pulumi_gcp/bigtable/instance_iam_binding.py +13 -34
  18. pulumi_gcp/bigtable/instance_iam_member.py +13 -34
  19. pulumi_gcp/bigtable/instance_iam_policy.py +0 -47
  20. pulumi_gcp/bigtable/outputs.py +36 -0
  21. pulumi_gcp/cloudrunv2/get_service.py +12 -1
  22. pulumi_gcp/cloudrunv2/service.py +92 -0
  23. pulumi_gcp/compute/_inputs.py +217 -119
  24. pulumi_gcp/compute/backend_service.py +76 -0
  25. pulumi_gcp/compute/get_backend_service.py +12 -1
  26. pulumi_gcp/compute/get_instance.py +29 -1
  27. pulumi_gcp/compute/get_instance_template.py +29 -1
  28. pulumi_gcp/compute/get_region_instance_group_manager.py +0 -18
  29. pulumi_gcp/compute/get_region_instance_template.py +29 -1
  30. pulumi_gcp/compute/instance.py +89 -0
  31. pulumi_gcp/compute/instance_from_machine_image.py +82 -0
  32. pulumi_gcp/compute/instance_from_template.py +82 -0
  33. pulumi_gcp/compute/instance_template.py +75 -0
  34. pulumi_gcp/compute/network_firewall_policy_association.py +76 -50
  35. pulumi_gcp/compute/network_firewall_policy_rule.py +149 -103
  36. pulumi_gcp/compute/outputs.py +172 -82
  37. pulumi_gcp/compute/region_backend_service.py +94 -0
  38. pulumi_gcp/compute/region_instance_template.py +75 -0
  39. pulumi_gcp/compute/region_network_endpoint_group.py +6 -4
  40. pulumi_gcp/compute/region_network_firewall_policy_association.py +104 -54
  41. pulumi_gcp/compute/region_network_firewall_policy_rule.py +160 -107
  42. pulumi_gcp/config/__init__.pyi +4 -0
  43. pulumi_gcp/config/vars.py +8 -0
  44. pulumi_gcp/container/_inputs.py +12 -0
  45. pulumi_gcp/container/attached_cluster.py +9 -6
  46. pulumi_gcp/container/outputs.py +10 -2
  47. pulumi_gcp/datastream/stream.py +2 -2
  48. pulumi_gcp/diagflow/_inputs.py +472 -2
  49. pulumi_gcp/diagflow/cx_agent.py +64 -4
  50. pulumi_gcp/diagflow/cx_flow.py +30 -0
  51. pulumi_gcp/diagflow/outputs.py +378 -2
  52. pulumi_gcp/discoveryengine/_inputs.py +32 -5
  53. pulumi_gcp/discoveryengine/chat_engine.py +64 -0
  54. pulumi_gcp/discoveryengine/outputs.py +22 -3
  55. pulumi_gcp/gkehub/feature.py +2 -4
  56. pulumi_gcp/iam/workload_identity_pool_provider.py +56 -0
  57. pulumi_gcp/kms/key_handle.py +8 -8
  58. pulumi_gcp/looker/instance.py +104 -2
  59. pulumi_gcp/monitoring/_inputs.py +23 -0
  60. pulumi_gcp/monitoring/get_secret_version.py +22 -3
  61. pulumi_gcp/monitoring/outputs.py +16 -0
  62. pulumi_gcp/netapp/backup_vault.py +2 -2
  63. pulumi_gcp/networkconnectivity/__init__.py +1 -0
  64. pulumi_gcp/networkconnectivity/_inputs.py +218 -0
  65. pulumi_gcp/networkconnectivity/group.py +764 -0
  66. pulumi_gcp/networkconnectivity/internal_range.py +117 -7
  67. pulumi_gcp/networkconnectivity/outputs.py +167 -0
  68. pulumi_gcp/networkconnectivity/spoke.py +144 -0
  69. pulumi_gcp/networksecurity/server_tls_policy.py +2 -2
  70. pulumi_gcp/networkservices/gateway.py +54 -0
  71. pulumi_gcp/oracledatabase/__init__.py +20 -0
  72. pulumi_gcp/oracledatabase/_inputs.py +4745 -0
  73. pulumi_gcp/oracledatabase/autonomous_database.py +983 -0
  74. pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +842 -0
  75. pulumi_gcp/oracledatabase/cloud_vm_cluster.py +1086 -0
  76. pulumi_gcp/oracledatabase/get_autonomous_database.py +290 -0
  77. pulumi_gcp/oracledatabase/get_autonomous_databases.py +150 -0
  78. pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +257 -0
  79. pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructures.py +150 -0
  80. pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +290 -0
  81. pulumi_gcp/oracledatabase/get_cloud_vm_clusters.py +150 -0
  82. pulumi_gcp/oracledatabase/get_db_nodes.py +245 -0
  83. pulumi_gcp/oracledatabase/get_db_servers.py +245 -0
  84. pulumi_gcp/oracledatabase/outputs.py +9304 -0
  85. pulumi_gcp/organizations/folder.py +7 -7
  86. pulumi_gcp/organizations/project.py +7 -7
  87. pulumi_gcp/orgpolicy/_inputs.py +3 -3
  88. pulumi_gcp/orgpolicy/outputs.py +2 -2
  89. pulumi_gcp/privilegedaccessmanager/get_entitlement.py +46 -2
  90. pulumi_gcp/provider.py +40 -0
  91. pulumi_gcp/pulumi-plugin.json +1 -1
  92. pulumi_gcp/secretmanager/get_regional_secret_version.py +24 -5
  93. pulumi_gcp/secretmanager/get_regional_secret_version_access.py +24 -5
  94. pulumi_gcp/secretmanager/get_secret_version.py +22 -3
  95. pulumi_gcp/secretmanager/get_secret_version_access.py +22 -3
  96. pulumi_gcp/secretmanager/outputs.py +2 -10
  97. pulumi_gcp/secretmanager/regional_secret.py +2 -2
  98. pulumi_gcp/securesourcemanager/__init__.py +1 -0
  99. pulumi_gcp/securesourcemanager/branch_rule.py +975 -0
  100. pulumi_gcp/siteverification/get_token.py +0 -16
  101. pulumi_gcp/siteverification/owner.py +0 -16
  102. pulumi_gcp/spanner/_inputs.py +29 -5
  103. pulumi_gcp/spanner/backup_schedule.py +4 -2
  104. pulumi_gcp/spanner/outputs.py +20 -3
  105. pulumi_gcp/sql/_inputs.py +6 -6
  106. pulumi_gcp/sql/outputs.py +4 -4
  107. pulumi_gcp/sql/user.py +28 -21
  108. pulumi_gcp/storage/_inputs.py +36 -0
  109. pulumi_gcp/storage/bucket.py +47 -0
  110. pulumi_gcp/storage/get_bucket.py +12 -1
  111. pulumi_gcp/storage/outputs.py +40 -0
  112. pulumi_gcp/transcoder/__init__.py +11 -0
  113. pulumi_gcp/transcoder/_inputs.py +3991 -0
  114. pulumi_gcp/transcoder/job.py +2134 -0
  115. pulumi_gcp/transcoder/job_template.py +1524 -0
  116. pulumi_gcp/transcoder/outputs.py +2918 -0
  117. pulumi_gcp/vertex/ai_deployment_resource_pool.py +2 -2
  118. pulumi_gcp/vmwareengine/_inputs.py +440 -0
  119. pulumi_gcp/vmwareengine/cluster.py +100 -2
  120. pulumi_gcp/vmwareengine/get_cluster.py +12 -1
  121. pulumi_gcp/vmwareengine/outputs.py +615 -0
  122. pulumi_gcp/workstations/_inputs.py +54 -0
  123. pulumi_gcp/workstations/outputs.py +32 -0
  124. pulumi_gcp/workstations/workstation_config.py +205 -0
  125. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/METADATA +1 -1
  126. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/RECORD +128 -105
  127. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/WHEEL +1 -1
  128. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/top_level.txt +0 -0
@@ -42,10 +42,7 @@ class InstanceIamMemberArgs:
42
42
  :param pulumi.Input[str] role: The role that should be applied. Only one
43
43
  `bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
44
44
  `[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
45
-
46
- `bigtable.InstanceIamPolicy` only:
47
- :param pulumi.Input[str] project: The project in which the instance belongs. If it
48
- is not provided, a default will be supplied.
45
+ :param pulumi.Input['InstanceIamMemberConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
49
46
  """
50
47
  pulumi.set(__self__, "instance", instance)
51
48
  pulumi.set(__self__, "member", member)
@@ -95,8 +92,6 @@ class InstanceIamMemberArgs:
95
92
  The role that should be applied. Only one
96
93
  `bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
97
94
  `[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
98
-
99
- `bigtable.InstanceIamPolicy` only:
100
95
  """
101
96
  return pulumi.get(self, "role")
102
97
 
@@ -107,6 +102,9 @@ class InstanceIamMemberArgs:
107
102
  @property
108
103
  @pulumi.getter
109
104
  def condition(self) -> Optional[pulumi.Input['InstanceIamMemberConditionArgs']]:
105
+ """
106
+ An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
107
+ """
110
108
  return pulumi.get(self, "condition")
111
109
 
112
110
  @condition.setter
@@ -116,10 +114,6 @@ class InstanceIamMemberArgs:
116
114
  @property
117
115
  @pulumi.getter
118
116
  def project(self) -> Optional[pulumi.Input[str]]:
119
- """
120
- The project in which the instance belongs. If it
121
- is not provided, a default will be supplied.
122
- """
123
117
  return pulumi.get(self, "project")
124
118
 
125
119
  @project.setter
@@ -138,6 +132,7 @@ class _InstanceIamMemberState:
138
132
  role: Optional[pulumi.Input[str]] = None):
139
133
  """
140
134
  Input properties used for looking up and filtering InstanceIamMember resources.
135
+ :param pulumi.Input['InstanceIamMemberConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
141
136
  :param pulumi.Input[str] etag: (Computed) The etag of the instances's IAM policy.
142
137
  :param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
143
138
 
@@ -150,13 +145,9 @@ class _InstanceIamMemberState:
150
145
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
151
146
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
152
147
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
153
- :param pulumi.Input[str] project: The project in which the instance belongs. If it
154
- is not provided, a default will be supplied.
155
148
  :param pulumi.Input[str] role: The role that should be applied. Only one
156
149
  `bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
157
150
  `[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
158
-
159
- `bigtable.InstanceIamPolicy` only:
160
151
  """
161
152
  if condition is not None:
162
153
  pulumi.set(__self__, "condition", condition)
@@ -174,6 +165,9 @@ class _InstanceIamMemberState:
174
165
  @property
175
166
  @pulumi.getter
176
167
  def condition(self) -> Optional[pulumi.Input['InstanceIamMemberConditionArgs']]:
168
+ """
169
+ An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
170
+ """
177
171
  return pulumi.get(self, "condition")
178
172
 
179
173
  @condition.setter
@@ -228,10 +222,6 @@ class _InstanceIamMemberState:
228
222
  @property
229
223
  @pulumi.getter
230
224
  def project(self) -> Optional[pulumi.Input[str]]:
231
- """
232
- The project in which the instance belongs. If it
233
- is not provided, a default will be supplied.
234
- """
235
225
  return pulumi.get(self, "project")
236
226
 
237
227
  @project.setter
@@ -245,8 +235,6 @@ class _InstanceIamMemberState:
245
235
  The role that should be applied. Only one
246
236
  `bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
247
237
  `[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
248
-
249
- `bigtable.InstanceIamPolicy` only:
250
238
  """
251
239
  return pulumi.get(self, "role")
252
240
 
@@ -385,6 +373,7 @@ class InstanceIamMember(pulumi.CustomResource):
385
373
 
386
374
  :param str resource_name: The name of the resource.
387
375
  :param pulumi.ResourceOptions opts: Options for the resource.
376
+ :param pulumi.Input[Union['InstanceIamMemberConditionArgs', 'InstanceIamMemberConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
388
377
  :param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
389
378
 
390
379
  For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
@@ -396,13 +385,9 @@ class InstanceIamMember(pulumi.CustomResource):
396
385
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
397
386
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
398
387
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
399
- :param pulumi.Input[str] project: The project in which the instance belongs. If it
400
- is not provided, a default will be supplied.
401
388
  :param pulumi.Input[str] role: The role that should be applied. Only one
402
389
  `bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
403
390
  `[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
404
-
405
- `bigtable.InstanceIamPolicy` only:
406
391
  """
407
392
  ...
408
393
  @overload
@@ -591,6 +576,7 @@ class InstanceIamMember(pulumi.CustomResource):
591
576
  :param str resource_name: The unique name of the resulting resource.
592
577
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
593
578
  :param pulumi.ResourceOptions opts: Options for the resource.
579
+ :param pulumi.Input[Union['InstanceIamMemberConditionArgs', 'InstanceIamMemberConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
594
580
  :param pulumi.Input[str] etag: (Computed) The etag of the instances's IAM policy.
595
581
  :param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
596
582
 
@@ -603,13 +589,9 @@ class InstanceIamMember(pulumi.CustomResource):
603
589
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
604
590
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
605
591
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
606
- :param pulumi.Input[str] project: The project in which the instance belongs. If it
607
- is not provided, a default will be supplied.
608
592
  :param pulumi.Input[str] role: The role that should be applied. Only one
609
593
  `bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
610
594
  `[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
611
-
612
- `bigtable.InstanceIamPolicy` only:
613
595
  """
614
596
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
615
597
 
@@ -626,6 +608,9 @@ class InstanceIamMember(pulumi.CustomResource):
626
608
  @property
627
609
  @pulumi.getter
628
610
  def condition(self) -> pulumi.Output[Optional['outputs.InstanceIamMemberCondition']]:
611
+ """
612
+ An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
613
+ """
629
614
  return pulumi.get(self, "condition")
630
615
 
631
616
  @property
@@ -664,10 +649,6 @@ class InstanceIamMember(pulumi.CustomResource):
664
649
  @property
665
650
  @pulumi.getter
666
651
  def project(self) -> pulumi.Output[str]:
667
- """
668
- The project in which the instance belongs. If it
669
- is not provided, a default will be supplied.
670
- """
671
652
  return pulumi.get(self, "project")
672
653
 
673
654
  @property
@@ -677,8 +658,6 @@ class InstanceIamMember(pulumi.CustomResource):
677
658
  The role that should be applied. Only one
678
659
  `bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
679
660
  `[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
680
-
681
- `bigtable.InstanceIamPolicy` only:
682
661
  """
683
662
  return pulumi.get(self, "role")
684
663
 
@@ -27,11 +27,6 @@ class InstanceIamPolicyArgs:
27
27
  :param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
28
28
 
29
29
  For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
30
- :param pulumi.Input[str] policy_data: The policy data generated by a `organizations_get_iam_policy` data source.
31
-
32
- - - -
33
- :param pulumi.Input[str] project: The project in which the instance belongs. If it
34
- is not provided, a default will be supplied.
35
30
  """
36
31
  pulumi.set(__self__, "instance", instance)
37
32
  pulumi.set(__self__, "policy_data", policy_data)
@@ -55,11 +50,6 @@ class InstanceIamPolicyArgs:
55
50
  @property
56
51
  @pulumi.getter(name="policyData")
57
52
  def policy_data(self) -> pulumi.Input[str]:
58
- """
59
- The policy data generated by a `organizations_get_iam_policy` data source.
60
-
61
- - - -
62
- """
63
53
  return pulumi.get(self, "policy_data")
64
54
 
65
55
  @policy_data.setter
@@ -69,10 +59,6 @@ class InstanceIamPolicyArgs:
69
59
  @property
70
60
  @pulumi.getter
71
61
  def project(self) -> Optional[pulumi.Input[str]]:
72
- """
73
- The project in which the instance belongs. If it
74
- is not provided, a default will be supplied.
75
- """
76
62
  return pulumi.get(self, "project")
77
63
 
78
64
  @project.setter
@@ -93,11 +79,6 @@ class _InstanceIamPolicyState:
93
79
  :param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
94
80
 
95
81
  For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
96
- :param pulumi.Input[str] policy_data: The policy data generated by a `organizations_get_iam_policy` data source.
97
-
98
- - - -
99
- :param pulumi.Input[str] project: The project in which the instance belongs. If it
100
- is not provided, a default will be supplied.
101
82
  """
102
83
  if etag is not None:
103
84
  pulumi.set(__self__, "etag", etag)
@@ -137,11 +118,6 @@ class _InstanceIamPolicyState:
137
118
  @property
138
119
  @pulumi.getter(name="policyData")
139
120
  def policy_data(self) -> Optional[pulumi.Input[str]]:
140
- """
141
- The policy data generated by a `organizations_get_iam_policy` data source.
142
-
143
- - - -
144
- """
145
121
  return pulumi.get(self, "policy_data")
146
122
 
147
123
  @policy_data.setter
@@ -151,10 +127,6 @@ class _InstanceIamPolicyState:
151
127
  @property
152
128
  @pulumi.getter
153
129
  def project(self) -> Optional[pulumi.Input[str]]:
154
- """
155
- The project in which the instance belongs. If it
156
- is not provided, a default will be supplied.
157
- """
158
130
  return pulumi.get(self, "project")
159
131
 
160
132
  @project.setter
@@ -293,11 +265,6 @@ class InstanceIamPolicy(pulumi.CustomResource):
293
265
  :param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
294
266
 
295
267
  For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
296
- :param pulumi.Input[str] policy_data: The policy data generated by a `organizations_get_iam_policy` data source.
297
-
298
- - - -
299
- :param pulumi.Input[str] project: The project in which the instance belongs. If it
300
- is not provided, a default will be supplied.
301
268
  """
302
269
  ...
303
270
  @overload
@@ -482,11 +449,6 @@ class InstanceIamPolicy(pulumi.CustomResource):
482
449
  :param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
483
450
 
484
451
  For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
485
- :param pulumi.Input[str] policy_data: The policy data generated by a `organizations_get_iam_policy` data source.
486
-
487
- - - -
488
- :param pulumi.Input[str] project: The project in which the instance belongs. If it
489
- is not provided, a default will be supplied.
490
452
  """
491
453
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
492
454
 
@@ -519,19 +481,10 @@ class InstanceIamPolicy(pulumi.CustomResource):
519
481
  @property
520
482
  @pulumi.getter(name="policyData")
521
483
  def policy_data(self) -> pulumi.Output[str]:
522
- """
523
- The policy data generated by a `organizations_get_iam_policy` data source.
524
-
525
- - - -
526
- """
527
484
  return pulumi.get(self, "policy_data")
528
485
 
529
486
  @property
530
487
  @pulumi.getter
531
488
  def project(self) -> pulumi.Output[str]:
532
- """
533
- The project in which the instance belongs. If it
534
- is not provided, a default will be supplied.
535
- """
536
489
  return pulumi.get(self, "project")
537
490
 
@@ -433,6 +433,13 @@ class InstanceIamBindingCondition(dict):
433
433
  expression: str,
434
434
  title: str,
435
435
  description: Optional[str] = None):
436
+ """
437
+ :param str expression: Textual representation of an expression in Common Expression Language syntax.
438
+ :param str title: A title for the expression, i.e. a short string describing its purpose.
439
+ :param str description: An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
440
+
441
+ For `bigtable.InstanceIamPolicy` only:
442
+ """
436
443
  pulumi.set(__self__, "expression", expression)
437
444
  pulumi.set(__self__, "title", title)
438
445
  if description is not None:
@@ -441,16 +448,27 @@ class InstanceIamBindingCondition(dict):
441
448
  @property
442
449
  @pulumi.getter
443
450
  def expression(self) -> str:
451
+ """
452
+ Textual representation of an expression in Common Expression Language syntax.
453
+ """
444
454
  return pulumi.get(self, "expression")
445
455
 
446
456
  @property
447
457
  @pulumi.getter
448
458
  def title(self) -> str:
459
+ """
460
+ A title for the expression, i.e. a short string describing its purpose.
461
+ """
449
462
  return pulumi.get(self, "title")
450
463
 
451
464
  @property
452
465
  @pulumi.getter
453
466
  def description(self) -> Optional[str]:
467
+ """
468
+ An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
469
+
470
+ For `bigtable.InstanceIamPolicy` only:
471
+ """
454
472
  return pulumi.get(self, "description")
455
473
 
456
474
 
@@ -460,6 +478,13 @@ class InstanceIamMemberCondition(dict):
460
478
  expression: str,
461
479
  title: str,
462
480
  description: Optional[str] = None):
481
+ """
482
+ :param str expression: Textual representation of an expression in Common Expression Language syntax.
483
+ :param str title: A title for the expression, i.e. a short string describing its purpose.
484
+ :param str description: An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
485
+
486
+ For `bigtable.InstanceIamPolicy` only:
487
+ """
463
488
  pulumi.set(__self__, "expression", expression)
464
489
  pulumi.set(__self__, "title", title)
465
490
  if description is not None:
@@ -468,16 +493,27 @@ class InstanceIamMemberCondition(dict):
468
493
  @property
469
494
  @pulumi.getter
470
495
  def expression(self) -> str:
496
+ """
497
+ Textual representation of an expression in Common Expression Language syntax.
498
+ """
471
499
  return pulumi.get(self, "expression")
472
500
 
473
501
  @property
474
502
  @pulumi.getter
475
503
  def title(self) -> str:
504
+ """
505
+ A title for the expression, i.e. a short string describing its purpose.
506
+ """
476
507
  return pulumi.get(self, "title")
477
508
 
478
509
  @property
479
510
  @pulumi.getter
480
511
  def description(self) -> Optional[str]:
512
+ """
513
+ An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
514
+
515
+ For `bigtable.InstanceIamPolicy` only:
516
+ """
481
517
  return pulumi.get(self, "description")
482
518
 
483
519
 
@@ -27,7 +27,7 @@ class GetServiceResult:
27
27
  """
28
28
  A collection of values returned by getService.
29
29
  """
30
- def __init__(__self__, annotations=None, binary_authorizations=None, client=None, client_version=None, conditions=None, create_time=None, creator=None, custom_audiences=None, default_uri_disabled=None, delete_time=None, deletion_protection=None, description=None, effective_annotations=None, effective_labels=None, etag=None, expire_time=None, generation=None, id=None, ingress=None, labels=None, last_modifier=None, latest_created_revision=None, latest_ready_revision=None, launch_stage=None, location=None, name=None, observed_generation=None, project=None, pulumi_labels=None, reconciling=None, scalings=None, templates=None, terminal_conditions=None, traffic_statuses=None, traffics=None, uid=None, update_time=None, uri=None):
30
+ def __init__(__self__, annotations=None, binary_authorizations=None, client=None, client_version=None, conditions=None, create_time=None, creator=None, custom_audiences=None, default_uri_disabled=None, delete_time=None, deletion_protection=None, description=None, effective_annotations=None, effective_labels=None, etag=None, expire_time=None, generation=None, id=None, ingress=None, invoker_iam_disabled=None, labels=None, last_modifier=None, latest_created_revision=None, latest_ready_revision=None, launch_stage=None, location=None, name=None, observed_generation=None, project=None, pulumi_labels=None, reconciling=None, scalings=None, templates=None, terminal_conditions=None, traffic_statuses=None, traffics=None, uid=None, update_time=None, uri=None):
31
31
  if annotations and not isinstance(annotations, dict):
32
32
  raise TypeError("Expected argument 'annotations' to be a dict")
33
33
  pulumi.set(__self__, "annotations", annotations)
@@ -85,6 +85,9 @@ class GetServiceResult:
85
85
  if ingress and not isinstance(ingress, str):
86
86
  raise TypeError("Expected argument 'ingress' to be a str")
87
87
  pulumi.set(__self__, "ingress", ingress)
88
+ if invoker_iam_disabled and not isinstance(invoker_iam_disabled, bool):
89
+ raise TypeError("Expected argument 'invoker_iam_disabled' to be a bool")
90
+ pulumi.set(__self__, "invoker_iam_disabled", invoker_iam_disabled)
88
91
  if labels and not isinstance(labels, dict):
89
92
  raise TypeError("Expected argument 'labels' to be a dict")
90
93
  pulumi.set(__self__, "labels", labels)
@@ -241,6 +244,11 @@ class GetServiceResult:
241
244
  def ingress(self) -> str:
242
245
  return pulumi.get(self, "ingress")
243
246
 
247
+ @property
248
+ @pulumi.getter(name="invokerIamDisabled")
249
+ def invoker_iam_disabled(self) -> bool:
250
+ return pulumi.get(self, "invoker_iam_disabled")
251
+
244
252
  @property
245
253
  @pulumi.getter
246
254
  def labels(self) -> Mapping[str, str]:
@@ -362,6 +370,7 @@ class AwaitableGetServiceResult(GetServiceResult):
362
370
  generation=self.generation,
363
371
  id=self.id,
364
372
  ingress=self.ingress,
373
+ invoker_iam_disabled=self.invoker_iam_disabled,
365
374
  labels=self.labels,
366
375
  last_modifier=self.last_modifier,
367
376
  latest_created_revision=self.latest_created_revision,
@@ -437,6 +446,7 @@ def get_service(location: Optional[str] = None,
437
446
  generation=pulumi.get(__ret__, 'generation'),
438
447
  id=pulumi.get(__ret__, 'id'),
439
448
  ingress=pulumi.get(__ret__, 'ingress'),
449
+ invoker_iam_disabled=pulumi.get(__ret__, 'invoker_iam_disabled'),
440
450
  labels=pulumi.get(__ret__, 'labels'),
441
451
  last_modifier=pulumi.get(__ret__, 'last_modifier'),
442
452
  latest_created_revision=pulumi.get(__ret__, 'latest_created_revision'),
@@ -509,6 +519,7 @@ def get_service_output(location: Optional[pulumi.Input[Optional[str]]] = None,
509
519
  generation=pulumi.get(__response__, 'generation'),
510
520
  id=pulumi.get(__response__, 'id'),
511
521
  ingress=pulumi.get(__response__, 'ingress'),
522
+ invoker_iam_disabled=pulumi.get(__response__, 'invoker_iam_disabled'),
512
523
  labels=pulumi.get(__response__, 'labels'),
513
524
  last_modifier=pulumi.get(__response__, 'last_modifier'),
514
525
  latest_created_revision=pulumi.get(__response__, 'latest_created_revision'),
@@ -32,6 +32,7 @@ class ServiceArgs:
32
32
  deletion_protection: Optional[pulumi.Input[bool]] = None,
33
33
  description: Optional[pulumi.Input[str]] = None,
34
34
  ingress: Optional[pulumi.Input[str]] = None,
35
+ invoker_iam_disabled: Optional[pulumi.Input[bool]] = None,
35
36
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
36
37
  launch_stage: Optional[pulumi.Input[str]] = None,
37
38
  name: Optional[pulumi.Input[str]] = None,
@@ -61,6 +62,8 @@ class ServiceArgs:
61
62
  :param pulumi.Input[str] ingress: Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or
62
63
  INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. Possible values: ["INGRESS_TRAFFIC_ALL",
63
64
  "INGRESS_TRAFFIC_INTERNAL_ONLY", "INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER"]
65
+ :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
66
+ only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
64
67
  :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
65
68
  Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment,
66
69
  state, etc. For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or
@@ -100,6 +103,8 @@ class ServiceArgs:
100
103
  pulumi.set(__self__, "description", description)
101
104
  if ingress is not None:
102
105
  pulumi.set(__self__, "ingress", ingress)
106
+ if invoker_iam_disabled is not None:
107
+ pulumi.set(__self__, "invoker_iam_disabled", invoker_iam_disabled)
103
108
  if labels is not None:
104
109
  pulumi.set(__self__, "labels", labels)
105
110
  if launch_stage is not None:
@@ -253,6 +258,19 @@ class ServiceArgs:
253
258
  def ingress(self, value: Optional[pulumi.Input[str]]):
254
259
  pulumi.set(self, "ingress", value)
255
260
 
261
+ @property
262
+ @pulumi.getter(name="invokerIamDisabled")
263
+ def invoker_iam_disabled(self) -> Optional[pulumi.Input[bool]]:
264
+ """
265
+ Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
266
+ only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
267
+ """
268
+ return pulumi.get(self, "invoker_iam_disabled")
269
+
270
+ @invoker_iam_disabled.setter
271
+ def invoker_iam_disabled(self, value: Optional[pulumi.Input[bool]]):
272
+ pulumi.set(self, "invoker_iam_disabled", value)
273
+
256
274
  @property
257
275
  @pulumi.getter
258
276
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -357,6 +375,7 @@ class _ServiceState:
357
375
  expire_time: Optional[pulumi.Input[str]] = None,
358
376
  generation: Optional[pulumi.Input[str]] = None,
359
377
  ingress: Optional[pulumi.Input[str]] = None,
378
+ invoker_iam_disabled: Optional[pulumi.Input[bool]] = None,
360
379
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
361
380
  last_modifier: Optional[pulumi.Input[str]] = None,
362
381
  latest_created_revision: Optional[pulumi.Input[str]] = None,
@@ -405,6 +424,8 @@ class _ServiceState:
405
424
  :param pulumi.Input[str] ingress: Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or
406
425
  INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. Possible values: ["INGRESS_TRAFFIC_ALL",
407
426
  "INGRESS_TRAFFIC_INTERNAL_ONLY", "INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER"]
427
+ :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
428
+ only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
408
429
  :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
409
430
  Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment,
410
431
  state, etc. For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or
@@ -481,6 +502,8 @@ class _ServiceState:
481
502
  pulumi.set(__self__, "generation", generation)
482
503
  if ingress is not None:
483
504
  pulumi.set(__self__, "ingress", ingress)
505
+ if invoker_iam_disabled is not None:
506
+ pulumi.set(__self__, "invoker_iam_disabled", invoker_iam_disabled)
484
507
  if labels is not None:
485
508
  pulumi.set(__self__, "labels", labels)
486
509
  if last_modifier is not None:
@@ -741,6 +764,19 @@ class _ServiceState:
741
764
  def ingress(self, value: Optional[pulumi.Input[str]]):
742
765
  pulumi.set(self, "ingress", value)
743
766
 
767
+ @property
768
+ @pulumi.getter(name="invokerIamDisabled")
769
+ def invoker_iam_disabled(self) -> Optional[pulumi.Input[bool]]:
770
+ """
771
+ Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
772
+ only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
773
+ """
774
+ return pulumi.get(self, "invoker_iam_disabled")
775
+
776
+ @invoker_iam_disabled.setter
777
+ def invoker_iam_disabled(self, value: Optional[pulumi.Input[bool]]):
778
+ pulumi.set(self, "invoker_iam_disabled", value)
779
+
744
780
  @property
745
781
  @pulumi.getter
746
782
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -1002,6 +1038,7 @@ class Service(pulumi.CustomResource):
1002
1038
  deletion_protection: Optional[pulumi.Input[bool]] = None,
1003
1039
  description: Optional[pulumi.Input[str]] = None,
1004
1040
  ingress: Optional[pulumi.Input[str]] = None,
1041
+ invoker_iam_disabled: Optional[pulumi.Input[bool]] = None,
1005
1042
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1006
1043
  launch_stage: Optional[pulumi.Input[str]] = None,
1007
1044
  location: Optional[pulumi.Input[str]] = None,
@@ -1461,6 +1498,25 @@ class Service(pulumi.CustomResource):
1461
1498
  },
1462
1499
  opts = pulumi.ResourceOptions(depends_on=[wait_for_mesh]))
1463
1500
  ```
1501
+ ### Cloudrunv2 Service Invokeriam
1502
+
1503
+ ```python
1504
+ import pulumi
1505
+ import pulumi_gcp as gcp
1506
+
1507
+ default = gcp.cloudrunv2.Service("default",
1508
+ name="cloudrun-service",
1509
+ location="us-central1",
1510
+ deletion_protection=False,
1511
+ invoker_iam_disabled=True,
1512
+ description="The serving URL of this service will not perform any IAM check when invoked",
1513
+ ingress="INGRESS_TRAFFIC_ALL",
1514
+ template={
1515
+ "containers": [{
1516
+ "image": "us-docker.pkg.dev/cloudrun/container/hello",
1517
+ }],
1518
+ })
1519
+ ```
1464
1520
 
1465
1521
  ## Import
1466
1522
 
@@ -1506,6 +1562,8 @@ class Service(pulumi.CustomResource):
1506
1562
  :param pulumi.Input[str] ingress: Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or
1507
1563
  INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. Possible values: ["INGRESS_TRAFFIC_ALL",
1508
1564
  "INGRESS_TRAFFIC_INTERNAL_ONLY", "INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER"]
1565
+ :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
1566
+ only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
1509
1567
  :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
1510
1568
  Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment,
1511
1569
  state, etc. For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or
@@ -1984,6 +2042,25 @@ class Service(pulumi.CustomResource):
1984
2042
  },
1985
2043
  opts = pulumi.ResourceOptions(depends_on=[wait_for_mesh]))
1986
2044
  ```
2045
+ ### Cloudrunv2 Service Invokeriam
2046
+
2047
+ ```python
2048
+ import pulumi
2049
+ import pulumi_gcp as gcp
2050
+
2051
+ default = gcp.cloudrunv2.Service("default",
2052
+ name="cloudrun-service",
2053
+ location="us-central1",
2054
+ deletion_protection=False,
2055
+ invoker_iam_disabled=True,
2056
+ description="The serving URL of this service will not perform any IAM check when invoked",
2057
+ ingress="INGRESS_TRAFFIC_ALL",
2058
+ template={
2059
+ "containers": [{
2060
+ "image": "us-docker.pkg.dev/cloudrun/container/hello",
2061
+ }],
2062
+ })
2063
+ ```
1987
2064
 
1988
2065
  ## Import
1989
2066
 
@@ -2033,6 +2110,7 @@ class Service(pulumi.CustomResource):
2033
2110
  deletion_protection: Optional[pulumi.Input[bool]] = None,
2034
2111
  description: Optional[pulumi.Input[str]] = None,
2035
2112
  ingress: Optional[pulumi.Input[str]] = None,
2113
+ invoker_iam_disabled: Optional[pulumi.Input[bool]] = None,
2036
2114
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2037
2115
  launch_stage: Optional[pulumi.Input[str]] = None,
2038
2116
  location: Optional[pulumi.Input[str]] = None,
@@ -2059,6 +2137,7 @@ class Service(pulumi.CustomResource):
2059
2137
  __props__.__dict__["deletion_protection"] = deletion_protection
2060
2138
  __props__.__dict__["description"] = description
2061
2139
  __props__.__dict__["ingress"] = ingress
2140
+ __props__.__dict__["invoker_iam_disabled"] = invoker_iam_disabled
2062
2141
  __props__.__dict__["labels"] = labels
2063
2142
  __props__.__dict__["launch_stage"] = launch_stage
2064
2143
  if location is None and not opts.urn:
@@ -2121,6 +2200,7 @@ class Service(pulumi.CustomResource):
2121
2200
  expire_time: Optional[pulumi.Input[str]] = None,
2122
2201
  generation: Optional[pulumi.Input[str]] = None,
2123
2202
  ingress: Optional[pulumi.Input[str]] = None,
2203
+ invoker_iam_disabled: Optional[pulumi.Input[bool]] = None,
2124
2204
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2125
2205
  last_modifier: Optional[pulumi.Input[str]] = None,
2126
2206
  latest_created_revision: Optional[pulumi.Input[str]] = None,
@@ -2174,6 +2254,8 @@ class Service(pulumi.CustomResource):
2174
2254
  :param pulumi.Input[str] ingress: Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or
2175
2255
  INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. Possible values: ["INGRESS_TRAFFIC_ALL",
2176
2256
  "INGRESS_TRAFFIC_INTERNAL_ONLY", "INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER"]
2257
+ :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
2258
+ only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
2177
2259
  :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
2178
2260
  Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment,
2179
2261
  state, etc. For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or
@@ -2236,6 +2318,7 @@ class Service(pulumi.CustomResource):
2236
2318
  __props__.__dict__["expire_time"] = expire_time
2237
2319
  __props__.__dict__["generation"] = generation
2238
2320
  __props__.__dict__["ingress"] = ingress
2321
+ __props__.__dict__["invoker_iam_disabled"] = invoker_iam_disabled
2239
2322
  __props__.__dict__["labels"] = labels
2240
2323
  __props__.__dict__["last_modifier"] = last_modifier
2241
2324
  __props__.__dict__["latest_created_revision"] = latest_created_revision
@@ -2406,6 +2489,15 @@ class Service(pulumi.CustomResource):
2406
2489
  """
2407
2490
  return pulumi.get(self, "ingress")
2408
2491
 
2492
+ @property
2493
+ @pulumi.getter(name="invokerIamDisabled")
2494
+ def invoker_iam_disabled(self) -> pulumi.Output[Optional[bool]]:
2495
+ """
2496
+ Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
2497
+ only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
2498
+ """
2499
+ return pulumi.get(self, "invoker_iam_disabled")
2500
+
2409
2501
  @property
2410
2502
  @pulumi.getter
2411
2503
  def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]: