pulumi-gcp 8.12.0a1734477662__py3-none-any.whl → 8.12.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +32 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +0 -29
- pulumi_gcp/accesscontextmanager/outputs.py +0 -18
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -36
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +12 -4
- pulumi_gcp/artifactregistry/repository.py +86 -39
- pulumi_gcp/artifactregistry/repository_iam_binding.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_member.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_policy.py +42 -14
- pulumi_gcp/compute/get_global_forwarding_rule.py +12 -1
- pulumi_gcp/compute/global_forwarding_rule.py +114 -2
- pulumi_gcp/compute/project_cloud_armor_tier.py +7 -7
- pulumi_gcp/firebase/_inputs.py +99 -0
- pulumi_gcp/firebase/database_instance.py +24 -6
- pulumi_gcp/firebase/hosting_version.py +96 -0
- pulumi_gcp/firebase/outputs.py +59 -0
- pulumi_gcp/firebase/project.py +6 -6
- pulumi_gcp/identityplatform/_inputs.py +6 -6
- pulumi_gcp/identityplatform/config.py +2 -2
- pulumi_gcp/identityplatform/outputs.py +4 -4
- pulumi_gcp/looker/instance.py +35 -14
- pulumi_gcp/networkconnectivity/_inputs.py +10 -12
- pulumi_gcp/networkconnectivity/outputs.py +6 -8
- pulumi_gcp/networksecurity/__init__.py +3 -0
- pulumi_gcp/networksecurity/_inputs.py +1903 -0
- pulumi_gcp/networksecurity/authz_policy.py +1008 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +846 -0
- pulumi_gcp/networksecurity/intercept_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/outputs.py +1393 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/authz_extension.py +1080 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +4 -4
- pulumi_gcp/orgpolicy/_inputs.py +40 -0
- pulumi_gcp/orgpolicy/outputs.py +24 -0
- pulumi_gcp/orgpolicy/policy.py +64 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +3 -3
- pulumi_gcp/sql/database_instance.py +14 -14
- pulumi_gcp/sql/outputs.py +2 -2
- pulumi_gcp/storage/_inputs.py +53 -6
- pulumi_gcp/storage/outputs.py +33 -4
- pulumi_gcp/tpu/_inputs.py +26 -18
- pulumi_gcp/tpu/outputs.py +18 -12
- pulumi_gcp/tpu/v2_vm.py +63 -0
- {pulumi_gcp-8.12.0a1734477662.dist-info → pulumi_gcp-8.12.1.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.12.0a1734477662.dist-info → pulumi_gcp-8.12.1.dist-info}/RECORD +48 -44
- {pulumi_gcp-8.12.0a1734477662.dist-info → pulumi_gcp-8.12.1.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.12.0a1734477662.dist-info → pulumi_gcp-8.12.1.dist-info}/top_level.txt +0 -0
@@ -44,8 +44,12 @@ class RepositoryIamBindingArgs:
|
|
44
44
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
45
45
|
`artifactregistry.RepositoryIamBinding` can be used per role. Note that custom roles must be of the format
|
46
46
|
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
47
|
-
:param pulumi.Input[str] location: The name of the location
|
48
|
-
|
47
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
48
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
49
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
50
|
+
or use the
|
51
|
+
artifactregistry_get_locations
|
52
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
49
53
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
50
54
|
location is specified, it is taken from the provider configuration.
|
51
55
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -122,8 +126,12 @@ class RepositoryIamBindingArgs:
|
|
122
126
|
@pulumi.getter
|
123
127
|
def location(self) -> Optional[pulumi.Input[str]]:
|
124
128
|
"""
|
125
|
-
The name of the location
|
126
|
-
|
129
|
+
The name of the repository's location. In addition to specific regions,
|
130
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
131
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
132
|
+
or use the
|
133
|
+
artifactregistry_get_locations
|
134
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
127
135
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
128
136
|
location is specified, it is taken from the provider configuration.
|
129
137
|
"""
|
@@ -160,8 +168,12 @@ class _RepositoryIamBindingState:
|
|
160
168
|
"""
|
161
169
|
Input properties used for looking up and filtering RepositoryIamBinding resources.
|
162
170
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
163
|
-
:param pulumi.Input[str] location: The name of the location
|
164
|
-
|
171
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
172
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
173
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
174
|
+
or use the
|
175
|
+
artifactregistry_get_locations
|
176
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
165
177
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
166
178
|
location is specified, it is taken from the provider configuration.
|
167
179
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: Identities that will be granted the privilege in `role`.
|
@@ -222,8 +234,12 @@ class _RepositoryIamBindingState:
|
|
222
234
|
@pulumi.getter
|
223
235
|
def location(self) -> Optional[pulumi.Input[str]]:
|
224
236
|
"""
|
225
|
-
The name of the location
|
226
|
-
|
237
|
+
The name of the repository's location. In addition to specific regions,
|
238
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
239
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
240
|
+
or use the
|
241
|
+
artifactregistry_get_locations
|
242
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
227
243
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
228
244
|
location is specified, it is taken from the provider configuration.
|
229
245
|
"""
|
@@ -471,8 +487,12 @@ class RepositoryIamBinding(pulumi.CustomResource):
|
|
471
487
|
|
472
488
|
:param str resource_name: The name of the resource.
|
473
489
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
474
|
-
:param pulumi.Input[str] location: The name of the location
|
475
|
-
|
490
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
491
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
492
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
493
|
+
or use the
|
494
|
+
artifactregistry_get_locations
|
495
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
476
496
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
477
497
|
location is specified, it is taken from the provider configuration.
|
478
498
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: Identities that will be granted the privilege in `role`.
|
@@ -729,8 +749,12 @@ class RepositoryIamBinding(pulumi.CustomResource):
|
|
729
749
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
730
750
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
731
751
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
732
|
-
:param pulumi.Input[str] location: The name of the location
|
733
|
-
|
752
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
753
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
754
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
755
|
+
or use the
|
756
|
+
artifactregistry_get_locations
|
757
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
734
758
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
735
759
|
location is specified, it is taken from the provider configuration.
|
736
760
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: Identities that will be granted the privilege in `role`.
|
@@ -781,8 +805,12 @@ class RepositoryIamBinding(pulumi.CustomResource):
|
|
781
805
|
@pulumi.getter
|
782
806
|
def location(self) -> pulumi.Output[str]:
|
783
807
|
"""
|
784
|
-
The name of the location
|
785
|
-
|
808
|
+
The name of the repository's location. In addition to specific regions,
|
809
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
810
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
811
|
+
or use the
|
812
|
+
artifactregistry_get_locations
|
813
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
786
814
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
787
815
|
location is specified, it is taken from the provider configuration.
|
788
816
|
"""
|
@@ -44,8 +44,12 @@ class RepositoryIamMemberArgs:
|
|
44
44
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
45
45
|
`artifactregistry.RepositoryIamBinding` can be used per role. Note that custom roles must be of the format
|
46
46
|
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
47
|
-
:param pulumi.Input[str] location: The name of the location
|
48
|
-
|
47
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
48
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
49
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
50
|
+
or use the
|
51
|
+
artifactregistry_get_locations
|
52
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
49
53
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
50
54
|
location is specified, it is taken from the provider configuration.
|
51
55
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -122,8 +126,12 @@ class RepositoryIamMemberArgs:
|
|
122
126
|
@pulumi.getter
|
123
127
|
def location(self) -> Optional[pulumi.Input[str]]:
|
124
128
|
"""
|
125
|
-
The name of the location
|
126
|
-
|
129
|
+
The name of the repository's location. In addition to specific regions,
|
130
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
131
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
132
|
+
or use the
|
133
|
+
artifactregistry_get_locations
|
134
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
127
135
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
128
136
|
location is specified, it is taken from the provider configuration.
|
129
137
|
"""
|
@@ -160,8 +168,12 @@ class _RepositoryIamMemberState:
|
|
160
168
|
"""
|
161
169
|
Input properties used for looking up and filtering RepositoryIamMember resources.
|
162
170
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
163
|
-
:param pulumi.Input[str] location: The name of the location
|
164
|
-
|
171
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
172
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
173
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
174
|
+
or use the
|
175
|
+
artifactregistry_get_locations
|
176
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
165
177
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
166
178
|
location is specified, it is taken from the provider configuration.
|
167
179
|
:param pulumi.Input[str] member: Identities that will be granted the privilege in `role`.
|
@@ -222,8 +234,12 @@ class _RepositoryIamMemberState:
|
|
222
234
|
@pulumi.getter
|
223
235
|
def location(self) -> Optional[pulumi.Input[str]]:
|
224
236
|
"""
|
225
|
-
The name of the location
|
226
|
-
|
237
|
+
The name of the repository's location. In addition to specific regions,
|
238
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
239
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
240
|
+
or use the
|
241
|
+
artifactregistry_get_locations
|
242
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
227
243
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
228
244
|
location is specified, it is taken from the provider configuration.
|
229
245
|
"""
|
@@ -471,8 +487,12 @@ class RepositoryIamMember(pulumi.CustomResource):
|
|
471
487
|
|
472
488
|
:param str resource_name: The name of the resource.
|
473
489
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
474
|
-
:param pulumi.Input[str] location: The name of the location
|
475
|
-
|
490
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
491
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
492
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
493
|
+
or use the
|
494
|
+
artifactregistry_get_locations
|
495
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
476
496
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
477
497
|
location is specified, it is taken from the provider configuration.
|
478
498
|
:param pulumi.Input[str] member: Identities that will be granted the privilege in `role`.
|
@@ -729,8 +749,12 @@ class RepositoryIamMember(pulumi.CustomResource):
|
|
729
749
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
730
750
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
731
751
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
732
|
-
:param pulumi.Input[str] location: The name of the location
|
733
|
-
|
752
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
753
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
754
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
755
|
+
or use the
|
756
|
+
artifactregistry_get_locations
|
757
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
734
758
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
735
759
|
location is specified, it is taken from the provider configuration.
|
736
760
|
:param pulumi.Input[str] member: Identities that will be granted the privilege in `role`.
|
@@ -781,8 +805,12 @@ class RepositoryIamMember(pulumi.CustomResource):
|
|
781
805
|
@pulumi.getter
|
782
806
|
def location(self) -> pulumi.Output[str]:
|
783
807
|
"""
|
784
|
-
The name of the location
|
785
|
-
|
808
|
+
The name of the repository's location. In addition to specific regions,
|
809
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
810
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
811
|
+
or use the
|
812
|
+
artifactregistry_get_locations
|
813
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
786
814
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
787
815
|
location is specified, it is taken from the provider configuration.
|
788
816
|
"""
|
@@ -28,8 +28,12 @@ class RepositoryIamPolicyArgs:
|
|
28
28
|
:param pulumi.Input[str] policy_data: The policy data generated by
|
29
29
|
a `organizations_get_iam_policy` data source.
|
30
30
|
:param pulumi.Input[str] repository: Used to find the parent resource to bind the IAM policy to
|
31
|
-
:param pulumi.Input[str] location: The name of the location
|
32
|
-
|
31
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
32
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
33
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
34
|
+
or use the
|
35
|
+
artifactregistry_get_locations
|
36
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
33
37
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
34
38
|
location is specified, it is taken from the provider configuration.
|
35
39
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -71,8 +75,12 @@ class RepositoryIamPolicyArgs:
|
|
71
75
|
@pulumi.getter
|
72
76
|
def location(self) -> Optional[pulumi.Input[str]]:
|
73
77
|
"""
|
74
|
-
The name of the location
|
75
|
-
|
78
|
+
The name of the repository's location. In addition to specific regions,
|
79
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
80
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
81
|
+
or use the
|
82
|
+
artifactregistry_get_locations
|
83
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
76
84
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
77
85
|
location is specified, it is taken from the provider configuration.
|
78
86
|
"""
|
@@ -107,8 +115,12 @@ class _RepositoryIamPolicyState:
|
|
107
115
|
"""
|
108
116
|
Input properties used for looking up and filtering RepositoryIamPolicy resources.
|
109
117
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
110
|
-
:param pulumi.Input[str] location: The name of the location
|
111
|
-
|
118
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
119
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
120
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
121
|
+
or use the
|
122
|
+
artifactregistry_get_locations
|
123
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
112
124
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
113
125
|
location is specified, it is taken from the provider configuration.
|
114
126
|
:param pulumi.Input[str] policy_data: The policy data generated by
|
@@ -144,8 +156,12 @@ class _RepositoryIamPolicyState:
|
|
144
156
|
@pulumi.getter
|
145
157
|
def location(self) -> Optional[pulumi.Input[str]]:
|
146
158
|
"""
|
147
|
-
The name of the location
|
148
|
-
|
159
|
+
The name of the repository's location. In addition to specific regions,
|
160
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
161
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
162
|
+
or use the
|
163
|
+
artifactregistry_get_locations
|
164
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
149
165
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
150
166
|
location is specified, it is taken from the provider configuration.
|
151
167
|
"""
|
@@ -368,8 +384,12 @@ class RepositoryIamPolicy(pulumi.CustomResource):
|
|
368
384
|
|
369
385
|
:param str resource_name: The name of the resource.
|
370
386
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
371
|
-
:param pulumi.Input[str] location: The name of the location
|
372
|
-
|
387
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
388
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
389
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
390
|
+
or use the
|
391
|
+
artifactregistry_get_locations
|
392
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
373
393
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
374
394
|
location is specified, it is taken from the provider configuration.
|
375
395
|
:param pulumi.Input[str] policy_data: The policy data generated by
|
@@ -606,8 +626,12 @@ class RepositoryIamPolicy(pulumi.CustomResource):
|
|
606
626
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
607
627
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
608
628
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
609
|
-
:param pulumi.Input[str] location: The name of the location
|
610
|
-
|
629
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
630
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
631
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
632
|
+
or use the
|
633
|
+
artifactregistry_get_locations
|
634
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
611
635
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
612
636
|
location is specified, it is taken from the provider configuration.
|
613
637
|
:param pulumi.Input[str] policy_data: The policy data generated by
|
@@ -639,8 +663,12 @@ class RepositoryIamPolicy(pulumi.CustomResource):
|
|
639
663
|
@pulumi.getter
|
640
664
|
def location(self) -> pulumi.Output[str]:
|
641
665
|
"""
|
642
|
-
The name of the location
|
643
|
-
|
666
|
+
The name of the repository's location. In addition to specific regions,
|
667
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
668
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
669
|
+
or use the
|
670
|
+
artifactregistry_get_locations
|
671
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
644
672
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
645
673
|
location is specified, it is taken from the provider configuration.
|
646
674
|
"""
|
@@ -27,7 +27,7 @@ class GetGlobalForwardingRuleResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getGlobalForwardingRule.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, allow_psc_global_access=None, base_forwarding_rule=None, description=None, effective_labels=None, forwarding_rule_id=None, id=None, ip_address=None, ip_protocol=None, ip_version=None, label_fingerprint=None, labels=None, load_balancing_scheme=None, metadata_filters=None, name=None, network=None, no_automate_dns_zone=None, port_range=None, project=None, psc_connection_id=None, psc_connection_status=None, pulumi_labels=None, self_link=None, service_directory_registrations=None, source_ip_ranges=None, subnetwork=None, target=None):
|
30
|
+
def __init__(__self__, allow_psc_global_access=None, base_forwarding_rule=None, description=None, effective_labels=None, forwarding_rule_id=None, id=None, ip_address=None, ip_protocol=None, ip_version=None, label_fingerprint=None, labels=None, load_balancing_scheme=None, metadata_filters=None, name=None, network=None, network_tier=None, no_automate_dns_zone=None, port_range=None, project=None, psc_connection_id=None, psc_connection_status=None, pulumi_labels=None, self_link=None, service_directory_registrations=None, source_ip_ranges=None, subnetwork=None, target=None):
|
31
31
|
if allow_psc_global_access and not isinstance(allow_psc_global_access, bool):
|
32
32
|
raise TypeError("Expected argument 'allow_psc_global_access' to be a bool")
|
33
33
|
pulumi.set(__self__, "allow_psc_global_access", allow_psc_global_access)
|
@@ -73,6 +73,9 @@ class GetGlobalForwardingRuleResult:
|
|
73
73
|
if network and not isinstance(network, str):
|
74
74
|
raise TypeError("Expected argument 'network' to be a str")
|
75
75
|
pulumi.set(__self__, "network", network)
|
76
|
+
if network_tier and not isinstance(network_tier, str):
|
77
|
+
raise TypeError("Expected argument 'network_tier' to be a str")
|
78
|
+
pulumi.set(__self__, "network_tier", network_tier)
|
76
79
|
if no_automate_dns_zone and not isinstance(no_automate_dns_zone, bool):
|
77
80
|
raise TypeError("Expected argument 'no_automate_dns_zone' to be a bool")
|
78
81
|
pulumi.set(__self__, "no_automate_dns_zone", no_automate_dns_zone)
|
@@ -185,6 +188,11 @@ class GetGlobalForwardingRuleResult:
|
|
185
188
|
def network(self) -> str:
|
186
189
|
return pulumi.get(self, "network")
|
187
190
|
|
191
|
+
@property
|
192
|
+
@pulumi.getter(name="networkTier")
|
193
|
+
def network_tier(self) -> str:
|
194
|
+
return pulumi.get(self, "network_tier")
|
195
|
+
|
188
196
|
@property
|
189
197
|
@pulumi.getter(name="noAutomateDnsZone")
|
190
198
|
def no_automate_dns_zone(self) -> bool:
|
@@ -262,6 +270,7 @@ class AwaitableGetGlobalForwardingRuleResult(GetGlobalForwardingRuleResult):
|
|
262
270
|
metadata_filters=self.metadata_filters,
|
263
271
|
name=self.name,
|
264
272
|
network=self.network,
|
273
|
+
network_tier=self.network_tier,
|
265
274
|
no_automate_dns_zone=self.no_automate_dns_zone,
|
266
275
|
port_range=self.port_range,
|
267
276
|
project=self.project,
|
@@ -319,6 +328,7 @@ def get_global_forwarding_rule(name: Optional[str] = None,
|
|
319
328
|
metadata_filters=pulumi.get(__ret__, 'metadata_filters'),
|
320
329
|
name=pulumi.get(__ret__, 'name'),
|
321
330
|
network=pulumi.get(__ret__, 'network'),
|
331
|
+
network_tier=pulumi.get(__ret__, 'network_tier'),
|
322
332
|
no_automate_dns_zone=pulumi.get(__ret__, 'no_automate_dns_zone'),
|
323
333
|
port_range=pulumi.get(__ret__, 'port_range'),
|
324
334
|
project=pulumi.get(__ret__, 'project'),
|
@@ -373,6 +383,7 @@ def get_global_forwarding_rule_output(name: Optional[pulumi.Input[str]] = None,
|
|
373
383
|
metadata_filters=pulumi.get(__response__, 'metadata_filters'),
|
374
384
|
name=pulumi.get(__response__, 'name'),
|
375
385
|
network=pulumi.get(__response__, 'network'),
|
386
|
+
network_tier=pulumi.get(__response__, 'network_tier'),
|
376
387
|
no_automate_dns_zone=pulumi.get(__response__, 'no_automate_dns_zone'),
|
377
388
|
port_range=pulumi.get(__response__, 'port_range'),
|
378
389
|
project=pulumi.get(__response__, 'project'),
|
@@ -32,6 +32,7 @@ class GlobalForwardingRuleArgs:
|
|
32
32
|
metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input['GlobalForwardingRuleMetadataFilterArgs']]]] = None,
|
33
33
|
name: Optional[pulumi.Input[str]] = None,
|
34
34
|
network: Optional[pulumi.Input[str]] = None,
|
35
|
+
network_tier: Optional[pulumi.Input[str]] = None,
|
35
36
|
no_automate_dns_zone: Optional[pulumi.Input[bool]] = None,
|
36
37
|
port_range: Optional[pulumi.Input[str]] = None,
|
37
38
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -141,6 +142,16 @@ class GlobalForwardingRuleArgs:
|
|
141
142
|
be used.
|
142
143
|
For Private Service Connect forwarding rules that forward traffic to Google
|
143
144
|
APIs, a network must be provided.
|
145
|
+
:param pulumi.Input[str] network_tier: This signifies the networking tier used for configuring
|
146
|
+
this load balancer and can only take the following values:
|
147
|
+
`PREMIUM`, `STANDARD`.
|
148
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
149
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
150
|
+
`PREMIUM`.
|
151
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
152
|
+
If `IPAddress` is specified, this value must be equal to the
|
153
|
+
networkTier of the Address.
|
154
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
144
155
|
:param pulumi.Input[bool] no_automate_dns_zone: This is used in PSC consumer ForwardingRule to control whether it should try to auto-generate a DNS zone or not. Non-PSC forwarding rules do not use this field.
|
145
156
|
:param pulumi.Input[str] port_range: The `portRange` field has the following limitations:
|
146
157
|
* It requires that the forwarding rule `IPProtocol` be TCP, UDP, or SCTP,
|
@@ -193,6 +204,8 @@ class GlobalForwardingRuleArgs:
|
|
193
204
|
pulumi.set(__self__, "name", name)
|
194
205
|
if network is not None:
|
195
206
|
pulumi.set(__self__, "network", network)
|
207
|
+
if network_tier is not None:
|
208
|
+
pulumi.set(__self__, "network_tier", network_tier)
|
196
209
|
if no_automate_dns_zone is not None:
|
197
210
|
pulumi.set(__self__, "no_automate_dns_zone", no_automate_dns_zone)
|
198
211
|
if port_range is not None:
|
@@ -428,6 +441,27 @@ class GlobalForwardingRuleArgs:
|
|
428
441
|
def network(self, value: Optional[pulumi.Input[str]]):
|
429
442
|
pulumi.set(self, "network", value)
|
430
443
|
|
444
|
+
@property
|
445
|
+
@pulumi.getter(name="networkTier")
|
446
|
+
def network_tier(self) -> Optional[pulumi.Input[str]]:
|
447
|
+
"""
|
448
|
+
This signifies the networking tier used for configuring
|
449
|
+
this load balancer and can only take the following values:
|
450
|
+
`PREMIUM`, `STANDARD`.
|
451
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
452
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
453
|
+
`PREMIUM`.
|
454
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
455
|
+
If `IPAddress` is specified, this value must be equal to the
|
456
|
+
networkTier of the Address.
|
457
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "network_tier")
|
460
|
+
|
461
|
+
@network_tier.setter
|
462
|
+
def network_tier(self, value: Optional[pulumi.Input[str]]):
|
463
|
+
pulumi.set(self, "network_tier", value)
|
464
|
+
|
431
465
|
@property
|
432
466
|
@pulumi.getter(name="noAutomateDnsZone")
|
433
467
|
def no_automate_dns_zone(self) -> Optional[pulumi.Input[bool]]:
|
@@ -542,6 +576,7 @@ class _GlobalForwardingRuleState:
|
|
542
576
|
metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input['GlobalForwardingRuleMetadataFilterArgs']]]] = None,
|
543
577
|
name: Optional[pulumi.Input[str]] = None,
|
544
578
|
network: Optional[pulumi.Input[str]] = None,
|
579
|
+
network_tier: Optional[pulumi.Input[str]] = None,
|
545
580
|
no_automate_dns_zone: Optional[pulumi.Input[bool]] = None,
|
546
581
|
port_range: Optional[pulumi.Input[str]] = None,
|
547
582
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -648,6 +683,16 @@ class _GlobalForwardingRuleState:
|
|
648
683
|
be used.
|
649
684
|
For Private Service Connect forwarding rules that forward traffic to Google
|
650
685
|
APIs, a network must be provided.
|
686
|
+
:param pulumi.Input[str] network_tier: This signifies the networking tier used for configuring
|
687
|
+
this load balancer and can only take the following values:
|
688
|
+
`PREMIUM`, `STANDARD`.
|
689
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
690
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
691
|
+
`PREMIUM`.
|
692
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
693
|
+
If `IPAddress` is specified, this value must be equal to the
|
694
|
+
networkTier of the Address.
|
695
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
651
696
|
:param pulumi.Input[bool] no_automate_dns_zone: This is used in PSC consumer ForwardingRule to control whether it should try to auto-generate a DNS zone or not. Non-PSC forwarding rules do not use this field.
|
652
697
|
:param pulumi.Input[str] port_range: The `portRange` field has the following limitations:
|
653
698
|
* It requires that the forwarding rule `IPProtocol` be TCP, UDP, or SCTP,
|
@@ -725,6 +770,8 @@ class _GlobalForwardingRuleState:
|
|
725
770
|
pulumi.set(__self__, "name", name)
|
726
771
|
if network is not None:
|
727
772
|
pulumi.set(__self__, "network", network)
|
773
|
+
if network_tier is not None:
|
774
|
+
pulumi.set(__self__, "network_tier", network_tier)
|
728
775
|
if no_automate_dns_zone is not None:
|
729
776
|
pulumi.set(__self__, "no_automate_dns_zone", no_automate_dns_zone)
|
730
777
|
if port_range is not None:
|
@@ -995,6 +1042,27 @@ class _GlobalForwardingRuleState:
|
|
995
1042
|
def network(self, value: Optional[pulumi.Input[str]]):
|
996
1043
|
pulumi.set(self, "network", value)
|
997
1044
|
|
1045
|
+
@property
|
1046
|
+
@pulumi.getter(name="networkTier")
|
1047
|
+
def network_tier(self) -> Optional[pulumi.Input[str]]:
|
1048
|
+
"""
|
1049
|
+
This signifies the networking tier used for configuring
|
1050
|
+
this load balancer and can only take the following values:
|
1051
|
+
`PREMIUM`, `STANDARD`.
|
1052
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
1053
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
1054
|
+
`PREMIUM`.
|
1055
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
1056
|
+
If `IPAddress` is specified, this value must be equal to the
|
1057
|
+
networkTier of the Address.
|
1058
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
1059
|
+
"""
|
1060
|
+
return pulumi.get(self, "network_tier")
|
1061
|
+
|
1062
|
+
@network_tier.setter
|
1063
|
+
def network_tier(self, value: Optional[pulumi.Input[str]]):
|
1064
|
+
pulumi.set(self, "network_tier", value)
|
1065
|
+
|
998
1066
|
@property
|
999
1067
|
@pulumi.getter(name="noAutomateDnsZone")
|
1000
1068
|
def no_automate_dns_zone(self) -> Optional[pulumi.Input[bool]]:
|
@@ -1180,6 +1248,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1180
1248
|
metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GlobalForwardingRuleMetadataFilterArgs', 'GlobalForwardingRuleMetadataFilterArgsDict']]]]] = None,
|
1181
1249
|
name: Optional[pulumi.Input[str]] = None,
|
1182
1250
|
network: Optional[pulumi.Input[str]] = None,
|
1251
|
+
network_tier: Optional[pulumi.Input[str]] = None,
|
1183
1252
|
no_automate_dns_zone: Optional[pulumi.Input[bool]] = None,
|
1184
1253
|
port_range: Optional[pulumi.Input[str]] = None,
|
1185
1254
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -1358,7 +1427,8 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1358
1427
|
name="global-rule",
|
1359
1428
|
target=default_target_http_proxy.id,
|
1360
1429
|
port_range="80",
|
1361
|
-
load_balancing_scheme="EXTERNAL_MANAGED"
|
1430
|
+
load_balancing_scheme="EXTERNAL_MANAGED",
|
1431
|
+
network_tier="PREMIUM")
|
1362
1432
|
```
|
1363
1433
|
### Global Forwarding Rule Hybrid
|
1364
1434
|
|
@@ -1651,6 +1721,16 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1651
1721
|
be used.
|
1652
1722
|
For Private Service Connect forwarding rules that forward traffic to Google
|
1653
1723
|
APIs, a network must be provided.
|
1724
|
+
:param pulumi.Input[str] network_tier: This signifies the networking tier used for configuring
|
1725
|
+
this load balancer and can only take the following values:
|
1726
|
+
`PREMIUM`, `STANDARD`.
|
1727
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
1728
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
1729
|
+
`PREMIUM`.
|
1730
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
1731
|
+
If `IPAddress` is specified, this value must be equal to the
|
1732
|
+
networkTier of the Address.
|
1733
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
1654
1734
|
:param pulumi.Input[bool] no_automate_dns_zone: This is used in PSC consumer ForwardingRule to control whether it should try to auto-generate a DNS zone or not. Non-PSC forwarding rules do not use this field.
|
1655
1735
|
:param pulumi.Input[str] port_range: The `portRange` field has the following limitations:
|
1656
1736
|
* It requires that the forwarding rule `IPProtocol` be TCP, UDP, or SCTP,
|
@@ -1871,7 +1951,8 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1871
1951
|
name="global-rule",
|
1872
1952
|
target=default_target_http_proxy.id,
|
1873
1953
|
port_range="80",
|
1874
|
-
load_balancing_scheme="EXTERNAL_MANAGED"
|
1954
|
+
load_balancing_scheme="EXTERNAL_MANAGED",
|
1955
|
+
network_tier="PREMIUM")
|
1875
1956
|
```
|
1876
1957
|
### Global Forwarding Rule Hybrid
|
1877
1958
|
|
@@ -2099,6 +2180,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2099
2180
|
metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GlobalForwardingRuleMetadataFilterArgs', 'GlobalForwardingRuleMetadataFilterArgsDict']]]]] = None,
|
2100
2181
|
name: Optional[pulumi.Input[str]] = None,
|
2101
2182
|
network: Optional[pulumi.Input[str]] = None,
|
2183
|
+
network_tier: Optional[pulumi.Input[str]] = None,
|
2102
2184
|
no_automate_dns_zone: Optional[pulumi.Input[bool]] = None,
|
2103
2185
|
port_range: Optional[pulumi.Input[str]] = None,
|
2104
2186
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -2125,6 +2207,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2125
2207
|
__props__.__dict__["metadata_filters"] = metadata_filters
|
2126
2208
|
__props__.__dict__["name"] = name
|
2127
2209
|
__props__.__dict__["network"] = network
|
2210
|
+
__props__.__dict__["network_tier"] = network_tier
|
2128
2211
|
__props__.__dict__["no_automate_dns_zone"] = no_automate_dns_zone
|
2129
2212
|
__props__.__dict__["port_range"] = port_range
|
2130
2213
|
__props__.__dict__["project"] = project
|
@@ -2168,6 +2251,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2168
2251
|
metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GlobalForwardingRuleMetadataFilterArgs', 'GlobalForwardingRuleMetadataFilterArgsDict']]]]] = None,
|
2169
2252
|
name: Optional[pulumi.Input[str]] = None,
|
2170
2253
|
network: Optional[pulumi.Input[str]] = None,
|
2254
|
+
network_tier: Optional[pulumi.Input[str]] = None,
|
2171
2255
|
no_automate_dns_zone: Optional[pulumi.Input[bool]] = None,
|
2172
2256
|
port_range: Optional[pulumi.Input[str]] = None,
|
2173
2257
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -2279,6 +2363,16 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2279
2363
|
be used.
|
2280
2364
|
For Private Service Connect forwarding rules that forward traffic to Google
|
2281
2365
|
APIs, a network must be provided.
|
2366
|
+
:param pulumi.Input[str] network_tier: This signifies the networking tier used for configuring
|
2367
|
+
this load balancer and can only take the following values:
|
2368
|
+
`PREMIUM`, `STANDARD`.
|
2369
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
2370
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
2371
|
+
`PREMIUM`.
|
2372
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
2373
|
+
If `IPAddress` is specified, this value must be equal to the
|
2374
|
+
networkTier of the Address.
|
2375
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
2282
2376
|
:param pulumi.Input[bool] no_automate_dns_zone: This is used in PSC consumer ForwardingRule to control whether it should try to auto-generate a DNS zone or not. Non-PSC forwarding rules do not use this field.
|
2283
2377
|
:param pulumi.Input[str] port_range: The `portRange` field has the following limitations:
|
2284
2378
|
* It requires that the forwarding rule `IPProtocol` be TCP, UDP, or SCTP,
|
@@ -2346,6 +2440,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2346
2440
|
__props__.__dict__["metadata_filters"] = metadata_filters
|
2347
2441
|
__props__.__dict__["name"] = name
|
2348
2442
|
__props__.__dict__["network"] = network
|
2443
|
+
__props__.__dict__["network_tier"] = network_tier
|
2349
2444
|
__props__.__dict__["no_automate_dns_zone"] = no_automate_dns_zone
|
2350
2445
|
__props__.__dict__["port_range"] = port_range
|
2351
2446
|
__props__.__dict__["project"] = project
|
@@ -2550,6 +2645,23 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2550
2645
|
"""
|
2551
2646
|
return pulumi.get(self, "network")
|
2552
2647
|
|
2648
|
+
@property
|
2649
|
+
@pulumi.getter(name="networkTier")
|
2650
|
+
def network_tier(self) -> pulumi.Output[str]:
|
2651
|
+
"""
|
2652
|
+
This signifies the networking tier used for configuring
|
2653
|
+
this load balancer and can only take the following values:
|
2654
|
+
`PREMIUM`, `STANDARD`.
|
2655
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
2656
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
2657
|
+
`PREMIUM`.
|
2658
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
2659
|
+
If `IPAddress` is specified, this value must be equal to the
|
2660
|
+
networkTier of the Address.
|
2661
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
2662
|
+
"""
|
2663
|
+
return pulumi.get(self, "network_tier")
|
2664
|
+
|
2553
2665
|
@property
|
2554
2666
|
@pulumi.getter(name="noAutomateDnsZone")
|
2555
2667
|
def no_automate_dns_zone(self) -> pulumi.Output[Optional[bool]]:
|