pulumi-gcp 7.28.0__py3-none-any.whl → 7.28.0a1718431623__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 +0 -59
- pulumi_gcp/accesscontextmanager/_inputs.py +74 -58
- pulumi_gcp/accesscontextmanager/access_levels.py +20 -0
- pulumi_gcp/accesscontextmanager/outputs.py +74 -58
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/bigtable/_inputs.py +0 -40
- pulumi_gcp/bigtable/outputs.py +0 -49
- pulumi_gcp/bigtable/table.py +0 -54
- pulumi_gcp/cloudbuildv2/_inputs.py +0 -383
- pulumi_gcp/cloudbuildv2/connection.py +2 -110
- pulumi_gcp/cloudbuildv2/outputs.py +0 -421
- pulumi_gcp/composer/__init__.py +0 -3
- pulumi_gcp/compute/_inputs.py +2 -4
- pulumi_gcp/compute/backend_service.py +48 -28
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -10
- pulumi_gcp/compute/region_backend_service.py +48 -35
- pulumi_gcp/compute/region_network_endpoint.py +0 -187
- pulumi_gcp/compute/region_network_endpoint_group.py +9 -49
- pulumi_gcp/compute/region_target_https_proxy.py +14 -7
- pulumi_gcp/compute/target_https_proxy.py +14 -28
- pulumi_gcp/config/__init__.pyi +0 -2
- pulumi_gcp/config/vars.py +0 -4
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +0 -227
- pulumi_gcp/discoveryengine/data_store.py +0 -108
- pulumi_gcp/discoveryengine/outputs.py +0 -280
- pulumi_gcp/edgecontainer/_inputs.py +1 -107
- pulumi_gcp/edgecontainer/outputs.py +1 -123
- pulumi_gcp/gkehub/_inputs.py +0 -16
- pulumi_gcp/gkehub/outputs.py +1 -15
- pulumi_gcp/kms/crypto_key.py +6 -2
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/netapp/__init__.py +0 -1
- pulumi_gcp/netapp/active_directory.py +0 -55
- pulumi_gcp/provider.py +0 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +0 -3
- pulumi_gcp/securitycenter/_inputs.py +0 -1105
- pulumi_gcp/securitycenter/outputs.py +0 -1048
- pulumi_gcp/vertex/ai_feature_online_store.py +8 -37
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/RECORD +47 -59
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/WHEEL +1 -1
- pulumi_gcp/composer/get_user_workloads_config_map.py +0 -190
- pulumi_gcp/composer/get_user_workloads_secret.py +0 -188
- pulumi_gcp/composer/user_workloads_config_map.py +0 -475
- pulumi_gcp/managedkafka/__init__.py +0 -11
- pulumi_gcp/managedkafka/_inputs.py +0 -169
- pulumi_gcp/managedkafka/cluster.py +0 -807
- pulumi_gcp/managedkafka/outputs.py +0 -197
- pulumi_gcp/managedkafka/topic.py +0 -599
- pulumi_gcp/netapp/backup.py +0 -903
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +0 -725
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +0 -713
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +0 -706
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/top_level.txt +0 -0
@@ -1,197 +0,0 @@
|
|
1
|
-
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
-
|
5
|
-
import copy
|
6
|
-
import warnings
|
7
|
-
import pulumi
|
8
|
-
import pulumi.runtime
|
9
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
-
from .. import _utilities
|
11
|
-
from . import outputs
|
12
|
-
|
13
|
-
__all__ = [
|
14
|
-
'ClusterCapacityConfig',
|
15
|
-
'ClusterGcpConfig',
|
16
|
-
'ClusterGcpConfigAccessConfig',
|
17
|
-
'ClusterGcpConfigAccessConfigNetworkConfig',
|
18
|
-
'ClusterRebalanceConfig',
|
19
|
-
]
|
20
|
-
|
21
|
-
@pulumi.output_type
|
22
|
-
class ClusterCapacityConfig(dict):
|
23
|
-
@staticmethod
|
24
|
-
def __key_warning(key: str):
|
25
|
-
suggest = None
|
26
|
-
if key == "memoryBytes":
|
27
|
-
suggest = "memory_bytes"
|
28
|
-
elif key == "vcpuCount":
|
29
|
-
suggest = "vcpu_count"
|
30
|
-
|
31
|
-
if suggest:
|
32
|
-
pulumi.log.warn(f"Key '{key}' not found in ClusterCapacityConfig. Access the value via the '{suggest}' property getter instead.")
|
33
|
-
|
34
|
-
def __getitem__(self, key: str) -> Any:
|
35
|
-
ClusterCapacityConfig.__key_warning(key)
|
36
|
-
return super().__getitem__(key)
|
37
|
-
|
38
|
-
def get(self, key: str, default = None) -> Any:
|
39
|
-
ClusterCapacityConfig.__key_warning(key)
|
40
|
-
return super().get(key, default)
|
41
|
-
|
42
|
-
def __init__(__self__, *,
|
43
|
-
memory_bytes: str,
|
44
|
-
vcpu_count: str):
|
45
|
-
"""
|
46
|
-
:param str memory_bytes: The memory to provision for the cluster in bytes. The value must be between 1 GiB and 8 GiB per vCPU. Ex. 1024Mi, 4Gi.
|
47
|
-
|
48
|
-
- - -
|
49
|
-
:param str vcpu_count: The number of vCPUs to provision for the cluster. The minimum is 3.
|
50
|
-
"""
|
51
|
-
pulumi.set(__self__, "memory_bytes", memory_bytes)
|
52
|
-
pulumi.set(__self__, "vcpu_count", vcpu_count)
|
53
|
-
|
54
|
-
@property
|
55
|
-
@pulumi.getter(name="memoryBytes")
|
56
|
-
def memory_bytes(self) -> str:
|
57
|
-
"""
|
58
|
-
The memory to provision for the cluster in bytes. The value must be between 1 GiB and 8 GiB per vCPU. Ex. 1024Mi, 4Gi.
|
59
|
-
|
60
|
-
- - -
|
61
|
-
"""
|
62
|
-
return pulumi.get(self, "memory_bytes")
|
63
|
-
|
64
|
-
@property
|
65
|
-
@pulumi.getter(name="vcpuCount")
|
66
|
-
def vcpu_count(self) -> str:
|
67
|
-
"""
|
68
|
-
The number of vCPUs to provision for the cluster. The minimum is 3.
|
69
|
-
"""
|
70
|
-
return pulumi.get(self, "vcpu_count")
|
71
|
-
|
72
|
-
|
73
|
-
@pulumi.output_type
|
74
|
-
class ClusterGcpConfig(dict):
|
75
|
-
@staticmethod
|
76
|
-
def __key_warning(key: str):
|
77
|
-
suggest = None
|
78
|
-
if key == "accessConfig":
|
79
|
-
suggest = "access_config"
|
80
|
-
elif key == "kmsKey":
|
81
|
-
suggest = "kms_key"
|
82
|
-
|
83
|
-
if suggest:
|
84
|
-
pulumi.log.warn(f"Key '{key}' not found in ClusterGcpConfig. Access the value via the '{suggest}' property getter instead.")
|
85
|
-
|
86
|
-
def __getitem__(self, key: str) -> Any:
|
87
|
-
ClusterGcpConfig.__key_warning(key)
|
88
|
-
return super().__getitem__(key)
|
89
|
-
|
90
|
-
def get(self, key: str, default = None) -> Any:
|
91
|
-
ClusterGcpConfig.__key_warning(key)
|
92
|
-
return super().get(key, default)
|
93
|
-
|
94
|
-
def __init__(__self__, *,
|
95
|
-
access_config: 'outputs.ClusterGcpConfigAccessConfig',
|
96
|
-
kms_key: Optional[str] = None):
|
97
|
-
"""
|
98
|
-
:param 'ClusterGcpConfigAccessConfigArgs' access_config: The configuration of access to the Kafka cluster.
|
99
|
-
Structure is documented below.
|
100
|
-
:param str kms_key: The Cloud KMS Key name to use for encryption. The key must be located in the same region as the cluster and cannot be changed. Must be in the format `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`.
|
101
|
-
"""
|
102
|
-
pulumi.set(__self__, "access_config", access_config)
|
103
|
-
if kms_key is not None:
|
104
|
-
pulumi.set(__self__, "kms_key", kms_key)
|
105
|
-
|
106
|
-
@property
|
107
|
-
@pulumi.getter(name="accessConfig")
|
108
|
-
def access_config(self) -> 'outputs.ClusterGcpConfigAccessConfig':
|
109
|
-
"""
|
110
|
-
The configuration of access to the Kafka cluster.
|
111
|
-
Structure is documented below.
|
112
|
-
"""
|
113
|
-
return pulumi.get(self, "access_config")
|
114
|
-
|
115
|
-
@property
|
116
|
-
@pulumi.getter(name="kmsKey")
|
117
|
-
def kms_key(self) -> Optional[str]:
|
118
|
-
"""
|
119
|
-
The Cloud KMS Key name to use for encryption. The key must be located in the same region as the cluster and cannot be changed. Must be in the format `projects/PROJECT_ID/locations/LOCATION/keyRings/KEY_RING/cryptoKeys/KEY`.
|
120
|
-
"""
|
121
|
-
return pulumi.get(self, "kms_key")
|
122
|
-
|
123
|
-
|
124
|
-
@pulumi.output_type
|
125
|
-
class ClusterGcpConfigAccessConfig(dict):
|
126
|
-
@staticmethod
|
127
|
-
def __key_warning(key: str):
|
128
|
-
suggest = None
|
129
|
-
if key == "networkConfigs":
|
130
|
-
suggest = "network_configs"
|
131
|
-
|
132
|
-
if suggest:
|
133
|
-
pulumi.log.warn(f"Key '{key}' not found in ClusterGcpConfigAccessConfig. Access the value via the '{suggest}' property getter instead.")
|
134
|
-
|
135
|
-
def __getitem__(self, key: str) -> Any:
|
136
|
-
ClusterGcpConfigAccessConfig.__key_warning(key)
|
137
|
-
return super().__getitem__(key)
|
138
|
-
|
139
|
-
def get(self, key: str, default = None) -> Any:
|
140
|
-
ClusterGcpConfigAccessConfig.__key_warning(key)
|
141
|
-
return super().get(key, default)
|
142
|
-
|
143
|
-
def __init__(__self__, *,
|
144
|
-
network_configs: Sequence['outputs.ClusterGcpConfigAccessConfigNetworkConfig']):
|
145
|
-
"""
|
146
|
-
:param Sequence['ClusterGcpConfigAccessConfigNetworkConfigArgs'] network_configs: Virtual Private Cloud (VPC) networks that must be granted direct access to the Kafka cluster. Minimum of 1 network is required. Maximum of 10 networks can be specified.
|
147
|
-
Structure is documented below.
|
148
|
-
"""
|
149
|
-
pulumi.set(__self__, "network_configs", network_configs)
|
150
|
-
|
151
|
-
@property
|
152
|
-
@pulumi.getter(name="networkConfigs")
|
153
|
-
def network_configs(self) -> Sequence['outputs.ClusterGcpConfigAccessConfigNetworkConfig']:
|
154
|
-
"""
|
155
|
-
Virtual Private Cloud (VPC) networks that must be granted direct access to the Kafka cluster. Minimum of 1 network is required. Maximum of 10 networks can be specified.
|
156
|
-
Structure is documented below.
|
157
|
-
"""
|
158
|
-
return pulumi.get(self, "network_configs")
|
159
|
-
|
160
|
-
|
161
|
-
@pulumi.output_type
|
162
|
-
class ClusterGcpConfigAccessConfigNetworkConfig(dict):
|
163
|
-
def __init__(__self__, *,
|
164
|
-
subnet: str):
|
165
|
-
"""
|
166
|
-
: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. A minimum of 1 subnet is required. A maximum of 10 subnets can be specified. The name of the subnet must be in the format `projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET`.
|
167
|
-
"""
|
168
|
-
pulumi.set(__self__, "subnet", subnet)
|
169
|
-
|
170
|
-
@property
|
171
|
-
@pulumi.getter
|
172
|
-
def subnet(self) -> str:
|
173
|
-
"""
|
174
|
-
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. A minimum of 1 subnet is required. A maximum of 10 subnets can be specified. The name of the subnet must be in the format `projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET`.
|
175
|
-
"""
|
176
|
-
return pulumi.get(self, "subnet")
|
177
|
-
|
178
|
-
|
179
|
-
@pulumi.output_type
|
180
|
-
class ClusterRebalanceConfig(dict):
|
181
|
-
def __init__(__self__, *,
|
182
|
-
mode: Optional[str] = None):
|
183
|
-
"""
|
184
|
-
:param str mode: The rebalance behavior for the cluster. When not specified, defaults to `NO_REBALANCE`. Possible values: `MODE_UNSPECIFIED`, `NO_REBALANCE`, `AUTO_REBALANCE_ON_SCALE_UP`.
|
185
|
-
"""
|
186
|
-
if mode is not None:
|
187
|
-
pulumi.set(__self__, "mode", mode)
|
188
|
-
|
189
|
-
@property
|
190
|
-
@pulumi.getter
|
191
|
-
def mode(self) -> Optional[str]:
|
192
|
-
"""
|
193
|
-
The rebalance behavior for the cluster. When not specified, defaults to `NO_REBALANCE`. Possible values: `MODE_UNSPECIFIED`, `NO_REBALANCE`, `AUTO_REBALANCE_ON_SCALE_UP`.
|
194
|
-
"""
|
195
|
-
return pulumi.get(self, "mode")
|
196
|
-
|
197
|
-
|