pulumi-gcp 8.1.0a1726492828__py3-none-any.whl → 8.2.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.
- pulumi_gcp/__init__.py +38 -0
- pulumi_gcp/bigquery/__init__.py +1 -0
- pulumi_gcp/bigquery/get_tables.py +143 -0
- pulumi_gcp/bigquery/outputs.py +30 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2208 -285
- pulumi_gcp/compute/get_instance.py +3 -0
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
- pulumi_gcp/compute/outputs.py +1383 -0
- pulumi_gcp/compute/region_target_http_proxy.py +159 -0
- pulumi_gcp/compute/region_target_https_proxy.py +175 -0
- pulumi_gcp/compute/service_attachment.py +75 -0
- pulumi_gcp/compute/target_http_proxy.py +49 -28
- pulumi_gcp/compute/target_https_proxy.py +49 -28
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/_inputs.py +96 -0
- pulumi_gcp/container/attached_cluster.py +54 -1
- pulumi_gcp/container/outputs.py +102 -0
- pulumi_gcp/dataproc/metastore_federation.py +8 -8
- pulumi_gcp/dataproc/metastore_service.py +2 -0
- pulumi_gcp/datastream/stream.py +21 -14
- pulumi_gcp/developerconnect/__init__.py +11 -0
- pulumi_gcp/developerconnect/_inputs.py +301 -0
- pulumi_gcp/developerconnect/connection.py +1034 -0
- pulumi_gcp/developerconnect/git_repository_link.py +873 -0
- pulumi_gcp/developerconnect/outputs.py +247 -0
- pulumi_gcp/gkeonprem/_inputs.py +3 -3
- pulumi_gcp/gkeonprem/outputs.py +2 -2
- pulumi_gcp/memorystore/__init__.py +10 -0
- pulumi_gcp/memorystore/_inputs.py +731 -0
- pulumi_gcp/memorystore/instance.py +1663 -0
- pulumi_gcp/memorystore/outputs.py +598 -0
- pulumi_gcp/netapp/volume.py +101 -0
- pulumi_gcp/organizations/folder.py +52 -33
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
- pulumi_gcp/vpcaccess/connector.py +21 -28
- {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/RECORD +43 -32
- {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,247 @@
|
|
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 sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'ConnectionGithubConfig',
|
20
|
+
'ConnectionGithubConfigAuthorizerCredential',
|
21
|
+
'ConnectionInstallationState',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class ConnectionGithubConfig(dict):
|
26
|
+
@staticmethod
|
27
|
+
def __key_warning(key: str):
|
28
|
+
suggest = None
|
29
|
+
if key == "githubApp":
|
30
|
+
suggest = "github_app"
|
31
|
+
elif key == "appInstallationId":
|
32
|
+
suggest = "app_installation_id"
|
33
|
+
elif key == "authorizerCredential":
|
34
|
+
suggest = "authorizer_credential"
|
35
|
+
elif key == "installationUri":
|
36
|
+
suggest = "installation_uri"
|
37
|
+
|
38
|
+
if suggest:
|
39
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionGithubConfig. Access the value via the '{suggest}' property getter instead.")
|
40
|
+
|
41
|
+
def __getitem__(self, key: str) -> Any:
|
42
|
+
ConnectionGithubConfig.__key_warning(key)
|
43
|
+
return super().__getitem__(key)
|
44
|
+
|
45
|
+
def get(self, key: str, default = None) -> Any:
|
46
|
+
ConnectionGithubConfig.__key_warning(key)
|
47
|
+
return super().get(key, default)
|
48
|
+
|
49
|
+
def __init__(__self__, *,
|
50
|
+
github_app: str,
|
51
|
+
app_installation_id: Optional[str] = None,
|
52
|
+
authorizer_credential: Optional['outputs.ConnectionGithubConfigAuthorizerCredential'] = None,
|
53
|
+
installation_uri: Optional[str] = None):
|
54
|
+
"""
|
55
|
+
:param str github_app: Required. Immutable. The GitHub Application that was installed to the GitHub user or
|
56
|
+
organization.
|
57
|
+
Possible values:
|
58
|
+
GIT_HUB_APP_UNSPECIFIED
|
59
|
+
DEVELOPER_CONNECT
|
60
|
+
FIREBASE
|
61
|
+
:param str app_installation_id: Optional. GitHub App installation id.
|
62
|
+
:param 'ConnectionGithubConfigAuthorizerCredentialArgs' authorizer_credential: Represents an OAuth token of the account that authorized the Connection,
|
63
|
+
and associated metadata.
|
64
|
+
Structure is documented below.
|
65
|
+
:param str installation_uri: (Output)
|
66
|
+
Output only. The URI to navigate to in order to manage the installation associated
|
67
|
+
with this GitHubConfig.
|
68
|
+
"""
|
69
|
+
pulumi.set(__self__, "github_app", github_app)
|
70
|
+
if app_installation_id is not None:
|
71
|
+
pulumi.set(__self__, "app_installation_id", app_installation_id)
|
72
|
+
if authorizer_credential is not None:
|
73
|
+
pulumi.set(__self__, "authorizer_credential", authorizer_credential)
|
74
|
+
if installation_uri is not None:
|
75
|
+
pulumi.set(__self__, "installation_uri", installation_uri)
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter(name="githubApp")
|
79
|
+
def github_app(self) -> str:
|
80
|
+
"""
|
81
|
+
Required. Immutable. The GitHub Application that was installed to the GitHub user or
|
82
|
+
organization.
|
83
|
+
Possible values:
|
84
|
+
GIT_HUB_APP_UNSPECIFIED
|
85
|
+
DEVELOPER_CONNECT
|
86
|
+
FIREBASE
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "github_app")
|
89
|
+
|
90
|
+
@property
|
91
|
+
@pulumi.getter(name="appInstallationId")
|
92
|
+
def app_installation_id(self) -> Optional[str]:
|
93
|
+
"""
|
94
|
+
Optional. GitHub App installation id.
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "app_installation_id")
|
97
|
+
|
98
|
+
@property
|
99
|
+
@pulumi.getter(name="authorizerCredential")
|
100
|
+
def authorizer_credential(self) -> Optional['outputs.ConnectionGithubConfigAuthorizerCredential']:
|
101
|
+
"""
|
102
|
+
Represents an OAuth token of the account that authorized the Connection,
|
103
|
+
and associated metadata.
|
104
|
+
Structure is documented below.
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "authorizer_credential")
|
107
|
+
|
108
|
+
@property
|
109
|
+
@pulumi.getter(name="installationUri")
|
110
|
+
def installation_uri(self) -> Optional[str]:
|
111
|
+
"""
|
112
|
+
(Output)
|
113
|
+
Output only. The URI to navigate to in order to manage the installation associated
|
114
|
+
with this GitHubConfig.
|
115
|
+
"""
|
116
|
+
return pulumi.get(self, "installation_uri")
|
117
|
+
|
118
|
+
|
119
|
+
@pulumi.output_type
|
120
|
+
class ConnectionGithubConfigAuthorizerCredential(dict):
|
121
|
+
@staticmethod
|
122
|
+
def __key_warning(key: str):
|
123
|
+
suggest = None
|
124
|
+
if key == "oauthTokenSecretVersion":
|
125
|
+
suggest = "oauth_token_secret_version"
|
126
|
+
|
127
|
+
if suggest:
|
128
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionGithubConfigAuthorizerCredential. Access the value via the '{suggest}' property getter instead.")
|
129
|
+
|
130
|
+
def __getitem__(self, key: str) -> Any:
|
131
|
+
ConnectionGithubConfigAuthorizerCredential.__key_warning(key)
|
132
|
+
return super().__getitem__(key)
|
133
|
+
|
134
|
+
def get(self, key: str, default = None) -> Any:
|
135
|
+
ConnectionGithubConfigAuthorizerCredential.__key_warning(key)
|
136
|
+
return super().get(key, default)
|
137
|
+
|
138
|
+
def __init__(__self__, *,
|
139
|
+
oauth_token_secret_version: str,
|
140
|
+
username: Optional[str] = None):
|
141
|
+
"""
|
142
|
+
:param str oauth_token_secret_version: Required. A SecretManager resource containing the OAuth token that authorizes
|
143
|
+
the connection. Format: `projects/*/secrets/*/versions/*`.
|
144
|
+
:param str username: (Output)
|
145
|
+
Output only. The username associated with this token.
|
146
|
+
"""
|
147
|
+
pulumi.set(__self__, "oauth_token_secret_version", oauth_token_secret_version)
|
148
|
+
if username is not None:
|
149
|
+
pulumi.set(__self__, "username", username)
|
150
|
+
|
151
|
+
@property
|
152
|
+
@pulumi.getter(name="oauthTokenSecretVersion")
|
153
|
+
def oauth_token_secret_version(self) -> str:
|
154
|
+
"""
|
155
|
+
Required. A SecretManager resource containing the OAuth token that authorizes
|
156
|
+
the connection. Format: `projects/*/secrets/*/versions/*`.
|
157
|
+
"""
|
158
|
+
return pulumi.get(self, "oauth_token_secret_version")
|
159
|
+
|
160
|
+
@property
|
161
|
+
@pulumi.getter
|
162
|
+
def username(self) -> Optional[str]:
|
163
|
+
"""
|
164
|
+
(Output)
|
165
|
+
Output only. The username associated with this token.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "username")
|
168
|
+
|
169
|
+
|
170
|
+
@pulumi.output_type
|
171
|
+
class ConnectionInstallationState(dict):
|
172
|
+
@staticmethod
|
173
|
+
def __key_warning(key: str):
|
174
|
+
suggest = None
|
175
|
+
if key == "actionUri":
|
176
|
+
suggest = "action_uri"
|
177
|
+
|
178
|
+
if suggest:
|
179
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionInstallationState. Access the value via the '{suggest}' property getter instead.")
|
180
|
+
|
181
|
+
def __getitem__(self, key: str) -> Any:
|
182
|
+
ConnectionInstallationState.__key_warning(key)
|
183
|
+
return super().__getitem__(key)
|
184
|
+
|
185
|
+
def get(self, key: str, default = None) -> Any:
|
186
|
+
ConnectionInstallationState.__key_warning(key)
|
187
|
+
return super().get(key, default)
|
188
|
+
|
189
|
+
def __init__(__self__, *,
|
190
|
+
action_uri: Optional[str] = None,
|
191
|
+
message: Optional[str] = None,
|
192
|
+
stage: Optional[str] = None):
|
193
|
+
"""
|
194
|
+
:param str action_uri: Output only. Link to follow for next action. Empty string if the installation is already
|
195
|
+
complete.
|
196
|
+
:param str message: Output only. Message of what the user should do next to continue the installation.
|
197
|
+
Empty string if the installation is already complete.
|
198
|
+
:param str stage: (Output)
|
199
|
+
Output only. Current step of the installation process.
|
200
|
+
Possible values:
|
201
|
+
STAGE_UNSPECIFIED
|
202
|
+
PENDING_CREATE_APP
|
203
|
+
PENDING_USER_OAUTH
|
204
|
+
PENDING_INSTALL_APP
|
205
|
+
COMPLETE
|
206
|
+
"""
|
207
|
+
if action_uri is not None:
|
208
|
+
pulumi.set(__self__, "action_uri", action_uri)
|
209
|
+
if message is not None:
|
210
|
+
pulumi.set(__self__, "message", message)
|
211
|
+
if stage is not None:
|
212
|
+
pulumi.set(__self__, "stage", stage)
|
213
|
+
|
214
|
+
@property
|
215
|
+
@pulumi.getter(name="actionUri")
|
216
|
+
def action_uri(self) -> Optional[str]:
|
217
|
+
"""
|
218
|
+
Output only. Link to follow for next action. Empty string if the installation is already
|
219
|
+
complete.
|
220
|
+
"""
|
221
|
+
return pulumi.get(self, "action_uri")
|
222
|
+
|
223
|
+
@property
|
224
|
+
@pulumi.getter
|
225
|
+
def message(self) -> Optional[str]:
|
226
|
+
"""
|
227
|
+
Output only. Message of what the user should do next to continue the installation.
|
228
|
+
Empty string if the installation is already complete.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "message")
|
231
|
+
|
232
|
+
@property
|
233
|
+
@pulumi.getter
|
234
|
+
def stage(self) -> Optional[str]:
|
235
|
+
"""
|
236
|
+
(Output)
|
237
|
+
Output only. Current step of the installation process.
|
238
|
+
Possible values:
|
239
|
+
STAGE_UNSPECIFIED
|
240
|
+
PENDING_CREATE_APP
|
241
|
+
PENDING_USER_OAUTH
|
242
|
+
PENDING_INSTALL_APP
|
243
|
+
COMPLETE
|
244
|
+
"""
|
245
|
+
return pulumi.get(self, "stage")
|
246
|
+
|
247
|
+
|
pulumi_gcp/gkeonprem/_inputs.py
CHANGED
@@ -7980,7 +7980,7 @@ if not MYPY:
|
|
7980
7980
|
image_type: pulumi.Input[str]
|
7981
7981
|
"""
|
7982
7982
|
The OS image to be used for each node in a node pool.
|
7983
|
-
Currently `cos`, `ubuntu`, `ubuntu_containerd` and `windows` are supported.
|
7983
|
+
Currently `cos`, `cos_cgv2`, `ubuntu`, `ubuntu_cgv2`, `ubuntu_containerd` and `windows` are supported.
|
7984
7984
|
"""
|
7985
7985
|
boot_disk_size_gb: NotRequired[pulumi.Input[int]]
|
7986
7986
|
"""
|
@@ -8044,7 +8044,7 @@ class VMwareNodePoolConfigArgs:
|
|
8044
8044
|
vsphere_config: Optional[pulumi.Input['VMwareNodePoolConfigVsphereConfigArgs']] = None):
|
8045
8045
|
"""
|
8046
8046
|
:param pulumi.Input[str] image_type: The OS image to be used for each node in a node pool.
|
8047
|
-
Currently `cos`, `ubuntu`, `ubuntu_containerd` and `windows` are supported.
|
8047
|
+
Currently `cos`, `cos_cgv2`, `ubuntu`, `ubuntu_cgv2`, `ubuntu_containerd` and `windows` are supported.
|
8048
8048
|
:param pulumi.Input[int] boot_disk_size_gb: VMware disk size to be used during creation.
|
8049
8049
|
:param pulumi.Input[int] cpus: The number of CPUs for each node in the node pool.
|
8050
8050
|
:param pulumi.Input[bool] enable_load_balancer: Allow node pool traffic to be load balanced. Only works for clusters with
|
@@ -8088,7 +8088,7 @@ class VMwareNodePoolConfigArgs:
|
|
8088
8088
|
def image_type(self) -> pulumi.Input[str]:
|
8089
8089
|
"""
|
8090
8090
|
The OS image to be used for each node in a node pool.
|
8091
|
-
Currently `cos`, `ubuntu`, `ubuntu_containerd` and `windows` are supported.
|
8091
|
+
Currently `cos`, `cos_cgv2`, `ubuntu`, `ubuntu_cgv2`, `ubuntu_containerd` and `windows` are supported.
|
8092
8092
|
"""
|
8093
8093
|
return pulumi.get(self, "image_type")
|
8094
8094
|
|
pulumi_gcp/gkeonprem/outputs.py
CHANGED
@@ -6294,7 +6294,7 @@ class VMwareNodePoolConfig(dict):
|
|
6294
6294
|
vsphere_config: Optional['outputs.VMwareNodePoolConfigVsphereConfig'] = None):
|
6295
6295
|
"""
|
6296
6296
|
:param str image_type: The OS image to be used for each node in a node pool.
|
6297
|
-
Currently `cos`, `ubuntu`, `ubuntu_containerd` and `windows` are supported.
|
6297
|
+
Currently `cos`, `cos_cgv2`, `ubuntu`, `ubuntu_cgv2`, `ubuntu_containerd` and `windows` are supported.
|
6298
6298
|
:param int boot_disk_size_gb: VMware disk size to be used during creation.
|
6299
6299
|
:param int cpus: The number of CPUs for each node in the node pool.
|
6300
6300
|
:param bool enable_load_balancer: Allow node pool traffic to be load balanced. Only works for clusters with
|
@@ -6338,7 +6338,7 @@ class VMwareNodePoolConfig(dict):
|
|
6338
6338
|
def image_type(self) -> str:
|
6339
6339
|
"""
|
6340
6340
|
The OS image to be used for each node in a node pool.
|
6341
|
-
Currently `cos`, `ubuntu`, `ubuntu_containerd` and `windows` are supported.
|
6341
|
+
Currently `cos`, `cos_cgv2`, `ubuntu`, `ubuntu_cgv2`, `ubuntu_containerd` and `windows` are supported.
|
6342
6342
|
"""
|
6343
6343
|
return pulumi.get(self, "image_type")
|
6344
6344
|
|
@@ -0,0 +1,10 @@
|
|
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
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .instance import *
|
9
|
+
from ._inputs import *
|
10
|
+
from . import outputs
|