pulumi-gcp 7.38.0a1724479203__py3-none-any.whl → 7.38.0a1724673520__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/appengine/flexible_app_version.py +8 -0
- pulumi_gcp/applicationintegration/client.py +2 -2
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/get_locations.py +167 -0
- pulumi_gcp/bigquery/connection.py +12 -0
- pulumi_gcp/clouddeploy/_inputs.py +41 -1
- pulumi_gcp/clouddeploy/outputs.py +29 -1
- pulumi_gcp/cloudfunctionsv2/function.py +2 -0
- pulumi_gcp/cloudidentity/__init__.py +1 -0
- pulumi_gcp/cloudidentity/get_group_memberships.py +12 -0
- pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +93 -0
- pulumi_gcp/cloudidentity/outputs.py +131 -0
- pulumi_gcp/compute/_inputs.py +36 -30
- pulumi_gcp/compute/outputs.py +48 -38
- pulumi_gcp/compute/region_network_endpoint_group.py +8 -0
- pulumi_gcp/compute/subnetwork.py +82 -0
- pulumi_gcp/container/_inputs.py +15 -18
- pulumi_gcp/container/attached_cluster.py +14 -7
- pulumi_gcp/container/outputs.py +10 -12
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/schema.py +524 -0
- pulumi_gcp/dns/_inputs.py +80 -76
- pulumi_gcp/dns/outputs.py +56 -52
- pulumi_gcp/managedkafka/_inputs.py +6 -6
- pulumi_gcp/managedkafka/cluster.py +7 -7
- pulumi_gcp/managedkafka/outputs.py +4 -4
- pulumi_gcp/managedkafka/topic.py +7 -7
- pulumi_gcp/parallelstore/instance.py +215 -15
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/_inputs.py +186 -0
- pulumi_gcp/securitycenter/folder_notification_config.py +486 -0
- pulumi_gcp/securitycenter/outputs.py +118 -0
- pulumi_gcp/securitycenter/v2_folder_notification_config.py +575 -0
- pulumi_gcp/servicenetworking/connection.py +50 -3
- pulumi_gcp/sql/_inputs.py +20 -0
- pulumi_gcp/sql/outputs.py +36 -0
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +438 -0
- pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +1170 -0
- pulumi_gcp/vertex/outputs.py +393 -0
- {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/RECORD +46 -40
- {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/top_level.txt +0 -0
@@ -143,7 +143,7 @@ if not MYPY:
|
|
143
143
|
class ClusterGcpConfigAccessConfigArgsDict(TypedDict):
|
144
144
|
network_configs: pulumi.Input[Sequence[pulumi.Input['ClusterGcpConfigAccessConfigNetworkConfigArgsDict']]]
|
145
145
|
"""
|
146
|
-
Virtual Private Cloud (VPC)
|
146
|
+
Virtual Private Cloud (VPC) subnets where IP addresses for the Kafka cluster are allocated. To make the cluster available in a VPC, you must specify at least one subnet per network. You must specify between 1 and 10 subnets. Additional subnets may be specified with additional `network_configs` blocks.
|
147
147
|
Structure is documented below.
|
148
148
|
"""
|
149
149
|
elif False:
|
@@ -154,7 +154,7 @@ class ClusterGcpConfigAccessConfigArgs:
|
|
154
154
|
def __init__(__self__, *,
|
155
155
|
network_configs: pulumi.Input[Sequence[pulumi.Input['ClusterGcpConfigAccessConfigNetworkConfigArgs']]]):
|
156
156
|
"""
|
157
|
-
:param pulumi.Input[Sequence[pulumi.Input['ClusterGcpConfigAccessConfigNetworkConfigArgs']]] network_configs: Virtual Private Cloud (VPC)
|
157
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterGcpConfigAccessConfigNetworkConfigArgs']]] network_configs: Virtual Private Cloud (VPC) subnets where IP addresses for the Kafka cluster are allocated. To make the cluster available in a VPC, you must specify at least one subnet per network. You must specify between 1 and 10 subnets. Additional subnets may be specified with additional `network_configs` blocks.
|
158
158
|
Structure is documented below.
|
159
159
|
"""
|
160
160
|
pulumi.set(__self__, "network_configs", network_configs)
|
@@ -163,7 +163,7 @@ class ClusterGcpConfigAccessConfigArgs:
|
|
163
163
|
@pulumi.getter(name="networkConfigs")
|
164
164
|
def network_configs(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterGcpConfigAccessConfigNetworkConfigArgs']]]:
|
165
165
|
"""
|
166
|
-
Virtual Private Cloud (VPC)
|
166
|
+
Virtual Private Cloud (VPC) subnets where IP addresses for the Kafka cluster are allocated. To make the cluster available in a VPC, you must specify at least one subnet per network. You must specify between 1 and 10 subnets. Additional subnets may be specified with additional `network_configs` blocks.
|
167
167
|
Structure is documented below.
|
168
168
|
"""
|
169
169
|
return pulumi.get(self, "network_configs")
|
@@ -177,7 +177,7 @@ if not MYPY:
|
|
177
177
|
class ClusterGcpConfigAccessConfigNetworkConfigArgsDict(TypedDict):
|
178
178
|
subnet: pulumi.Input[str]
|
179
179
|
"""
|
180
|
-
Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ.
|
180
|
+
Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ. The name of the subnet must be in the format `projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET`.
|
181
181
|
"""
|
182
182
|
elif False:
|
183
183
|
ClusterGcpConfigAccessConfigNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -187,7 +187,7 @@ class ClusterGcpConfigAccessConfigNetworkConfigArgs:
|
|
187
187
|
def __init__(__self__, *,
|
188
188
|
subnet: pulumi.Input[str]):
|
189
189
|
"""
|
190
|
-
:param pulumi.Input[str] subnet: Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ.
|
190
|
+
:param pulumi.Input[str] subnet: Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ. The name of the subnet must be in the format `projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET`.
|
191
191
|
"""
|
192
192
|
pulumi.set(__self__, "subnet", subnet)
|
193
193
|
|
@@ -195,7 +195,7 @@ class ClusterGcpConfigAccessConfigNetworkConfigArgs:
|
|
195
195
|
@pulumi.getter
|
196
196
|
def subnet(self) -> pulumi.Input[str]:
|
197
197
|
"""
|
198
|
-
Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ.
|
198
|
+
Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ. The name of the subnet must be in the format `projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET`.
|
199
199
|
"""
|
200
200
|
return pulumi.get(self, "subnet")
|
201
201
|
|
@@ -35,7 +35,7 @@ class ClusterArgs:
|
|
35
35
|
:param pulumi.Input[str] cluster_id: The ID to use for the cluster, which will become the final component of the cluster's name. The ID must be 1-63 characters long, and match the regular expression `a-z?` to comply with RFC 1035. This value is structured like: `my-cluster-id`.
|
36
36
|
:param pulumi.Input['ClusterGcpConfigArgs'] gcp_config: Configuration properties for a Kafka cluster deployed to Google Cloud Platform.
|
37
37
|
Structure is documented below.
|
38
|
-
:param pulumi.Input[str] location: ID of the location of the
|
38
|
+
:param pulumi.Input[str] location: ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
39
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: List of label KEY=VALUE pairs to add. Keys must start with a lowercase character and contain only hyphens (-),
|
40
40
|
underscores ( ), lowercase characters, and numbers. Values must contain only hyphens (-), underscores ( ), lowercase
|
41
41
|
characters, and numbers. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
@@ -95,7 +95,7 @@ class ClusterArgs:
|
|
95
95
|
@pulumi.getter
|
96
96
|
def location(self) -> pulumi.Input[str]:
|
97
97
|
"""
|
98
|
-
ID of the location of the
|
98
|
+
ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
99
99
|
"""
|
100
100
|
return pulumi.get(self, "location")
|
101
101
|
|
@@ -169,7 +169,7 @@ class _ClusterState:
|
|
169
169
|
underscores ( ), lowercase characters, and numbers. Values must contain only hyphens (-), underscores ( ), lowercase
|
170
170
|
characters, and numbers. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
171
171
|
configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
172
|
-
:param pulumi.Input[str] location: ID of the location of the
|
172
|
+
:param pulumi.Input[str] location: ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
173
173
|
:param pulumi.Input[str] name: The name of the cluster. Structured like: `projects/PROJECT_ID/locations/LOCATION/clusters/CLUSTER_ID`.
|
174
174
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
175
175
|
and default labels configured on the provider.
|
@@ -285,7 +285,7 @@ class _ClusterState:
|
|
285
285
|
@pulumi.getter
|
286
286
|
def location(self) -> Optional[pulumi.Input[str]]:
|
287
287
|
"""
|
288
|
-
ID of the location of the
|
288
|
+
ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
289
289
|
"""
|
290
290
|
return pulumi.get(self, "location")
|
291
291
|
|
@@ -480,7 +480,7 @@ class Cluster(pulumi.CustomResource):
|
|
480
480
|
underscores ( ), lowercase characters, and numbers. Values must contain only hyphens (-), underscores ( ), lowercase
|
481
481
|
characters, and numbers. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
482
482
|
configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
483
|
-
:param pulumi.Input[str] location: ID of the location of the
|
483
|
+
:param pulumi.Input[str] location: ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
484
484
|
:param pulumi.Input[Union['ClusterRebalanceConfigArgs', 'ClusterRebalanceConfigArgsDict']] rebalance_config: Defines rebalancing behavior of a Kafka cluster.
|
485
485
|
"""
|
486
486
|
...
|
@@ -676,7 +676,7 @@ class Cluster(pulumi.CustomResource):
|
|
676
676
|
underscores ( ), lowercase characters, and numbers. Values must contain only hyphens (-), underscores ( ), lowercase
|
677
677
|
characters, and numbers. **Note**: This field is non-authoritative, and will only manage the labels present in your
|
678
678
|
configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
679
|
-
:param pulumi.Input[str] location: ID of the location of the
|
679
|
+
:param pulumi.Input[str] location: ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
680
680
|
:param pulumi.Input[str] name: The name of the cluster. Structured like: `projects/PROJECT_ID/locations/LOCATION/clusters/CLUSTER_ID`.
|
681
681
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
682
682
|
and default labels configured on the provider.
|
@@ -760,7 +760,7 @@ class Cluster(pulumi.CustomResource):
|
|
760
760
|
@pulumi.getter
|
761
761
|
def location(self) -> pulumi.Output[str]:
|
762
762
|
"""
|
763
|
-
ID of the location of the
|
763
|
+
ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
764
764
|
"""
|
765
765
|
return pulumi.get(self, "location")
|
766
766
|
|
@@ -148,7 +148,7 @@ class ClusterGcpConfigAccessConfig(dict):
|
|
148
148
|
def __init__(__self__, *,
|
149
149
|
network_configs: Sequence['outputs.ClusterGcpConfigAccessConfigNetworkConfig']):
|
150
150
|
"""
|
151
|
-
:param Sequence['ClusterGcpConfigAccessConfigNetworkConfigArgs'] network_configs: Virtual Private Cloud (VPC)
|
151
|
+
:param Sequence['ClusterGcpConfigAccessConfigNetworkConfigArgs'] network_configs: Virtual Private Cloud (VPC) subnets where IP addresses for the Kafka cluster are allocated. To make the cluster available in a VPC, you must specify at least one subnet per network. You must specify between 1 and 10 subnets. Additional subnets may be specified with additional `network_configs` blocks.
|
152
152
|
Structure is documented below.
|
153
153
|
"""
|
154
154
|
pulumi.set(__self__, "network_configs", network_configs)
|
@@ -157,7 +157,7 @@ class ClusterGcpConfigAccessConfig(dict):
|
|
157
157
|
@pulumi.getter(name="networkConfigs")
|
158
158
|
def network_configs(self) -> Sequence['outputs.ClusterGcpConfigAccessConfigNetworkConfig']:
|
159
159
|
"""
|
160
|
-
Virtual Private Cloud (VPC)
|
160
|
+
Virtual Private Cloud (VPC) subnets where IP addresses for the Kafka cluster are allocated. To make the cluster available in a VPC, you must specify at least one subnet per network. You must specify between 1 and 10 subnets. Additional subnets may be specified with additional `network_configs` blocks.
|
161
161
|
Structure is documented below.
|
162
162
|
"""
|
163
163
|
return pulumi.get(self, "network_configs")
|
@@ -168,7 +168,7 @@ class ClusterGcpConfigAccessConfigNetworkConfig(dict):
|
|
168
168
|
def __init__(__self__, *,
|
169
169
|
subnet: str):
|
170
170
|
"""
|
171
|
-
:param str subnet: Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ.
|
171
|
+
:param str subnet: Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ. The name of the subnet must be in the format `projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET`.
|
172
172
|
"""
|
173
173
|
pulumi.set(__self__, "subnet", subnet)
|
174
174
|
|
@@ -176,7 +176,7 @@ class ClusterGcpConfigAccessConfigNetworkConfig(dict):
|
|
176
176
|
@pulumi.getter
|
177
177
|
def subnet(self) -> str:
|
178
178
|
"""
|
179
|
-
Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ.
|
179
|
+
Name of the VPC subnet from which the cluster is accessible. Both broker and bootstrap server IP addresses and DNS entries are automatically created in the subnet. The subnet must be located in the same region as the cluster. The project may differ. The name of the subnet must be in the format `projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET`.
|
180
180
|
"""
|
181
181
|
return pulumi.get(self, "subnet")
|
182
182
|
|
pulumi_gcp/managedkafka/topic.py
CHANGED
@@ -29,7 +29,7 @@ class TopicArgs:
|
|
29
29
|
"""
|
30
30
|
The set of arguments for constructing a Topic resource.
|
31
31
|
:param pulumi.Input[str] cluster: The cluster name.
|
32
|
-
:param pulumi.Input[str] location: ID of the location of the
|
32
|
+
:param pulumi.Input[str] location: ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
33
33
|
:param pulumi.Input[int] replication_factor: The number of replicas of each partition. A replication factor of 3 is recommended for high availability.
|
34
34
|
:param pulumi.Input[str] topic_id: The ID to use for the topic, which will become the final component of the topic's name. This value is structured like: `my-topic-name`.
|
35
35
|
|
@@ -67,7 +67,7 @@ class TopicArgs:
|
|
67
67
|
@pulumi.getter
|
68
68
|
def location(self) -> pulumi.Input[str]:
|
69
69
|
"""
|
70
|
-
ID of the location of the
|
70
|
+
ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
71
71
|
"""
|
72
72
|
return pulumi.get(self, "location")
|
73
73
|
|
@@ -155,7 +155,7 @@ class _TopicState:
|
|
155
155
|
Input properties used for looking up and filtering Topic resources.
|
156
156
|
:param pulumi.Input[str] cluster: The cluster name.
|
157
157
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] configs: Configuration for the topic that are overridden from the cluster defaults. The key of the map is a Kafka topic property name, for example: `cleanup.policy=compact`, `compression.type=producer`.
|
158
|
-
:param pulumi.Input[str] location: ID of the location of the
|
158
|
+
:param pulumi.Input[str] location: ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
159
159
|
:param pulumi.Input[str] name: The name of the topic. The `topic` segment is used when connecting directly to the cluster. Must be in the format `projects/PROJECT_ID/locations/LOCATION/clusters/CLUSTER_ID/topics/TOPIC_ID`.
|
160
160
|
:param pulumi.Input[int] partition_count: The number of partitions in a topic. You can increase the partition count for a topic, but you cannot decrease it. Increasing partitions for a topic that uses a key might change how messages are distributed.
|
161
161
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -211,7 +211,7 @@ class _TopicState:
|
|
211
211
|
@pulumi.getter
|
212
212
|
def location(self) -> Optional[pulumi.Input[str]]:
|
213
213
|
"""
|
214
|
-
ID of the location of the
|
214
|
+
ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
215
215
|
"""
|
216
216
|
return pulumi.get(self, "location")
|
217
217
|
|
@@ -360,7 +360,7 @@ class Topic(pulumi.CustomResource):
|
|
360
360
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
361
361
|
:param pulumi.Input[str] cluster: The cluster name.
|
362
362
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] configs: Configuration for the topic that are overridden from the cluster defaults. The key of the map is a Kafka topic property name, for example: `cleanup.policy=compact`, `compression.type=producer`.
|
363
|
-
:param pulumi.Input[str] location: ID of the location of the
|
363
|
+
:param pulumi.Input[str] location: ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
364
364
|
:param pulumi.Input[int] partition_count: The number of partitions in a topic. You can increase the partition count for a topic, but you cannot decrease it. Increasing partitions for a topic that uses a key might change how messages are distributed.
|
365
365
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
366
366
|
If it is not provided, the provider project is used.
|
@@ -509,7 +509,7 @@ class Topic(pulumi.CustomResource):
|
|
509
509
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
510
510
|
:param pulumi.Input[str] cluster: The cluster name.
|
511
511
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] configs: Configuration for the topic that are overridden from the cluster defaults. The key of the map is a Kafka topic property name, for example: `cleanup.policy=compact`, `compression.type=producer`.
|
512
|
-
:param pulumi.Input[str] location: ID of the location of the
|
512
|
+
:param pulumi.Input[str] location: ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
513
513
|
:param pulumi.Input[str] name: The name of the topic. The `topic` segment is used when connecting directly to the cluster. Must be in the format `projects/PROJECT_ID/locations/LOCATION/clusters/CLUSTER_ID/topics/TOPIC_ID`.
|
514
514
|
:param pulumi.Input[int] partition_count: The number of partitions in a topic. You can increase the partition count for a topic, but you cannot decrease it. Increasing partitions for a topic that uses a key might change how messages are distributed.
|
515
515
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -554,7 +554,7 @@ class Topic(pulumi.CustomResource):
|
|
554
554
|
@pulumi.getter
|
555
555
|
def location(self) -> pulumi.Output[str]:
|
556
556
|
"""
|
557
|
-
ID of the location of the
|
557
|
+
ID of the location of the Kafka resource. See https://cloud.google.com/managed-kafka/docs/locations for a list of supported locations.
|
558
558
|
"""
|
559
559
|
return pulumi.get(self, "location")
|
560
560
|
|