pulumi-gcp 8.2.0__py3-none-any.whl → 8.2.0a1726671837__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 -38
- pulumi_gcp/bigquery/__init__.py +0 -1
- pulumi_gcp/bigquery/outputs.py +0 -30
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +286 -2209
- pulumi_gcp/compute/get_instance.py +0 -3
- pulumi_gcp/compute/outputs.py +0 -1383
- pulumi_gcp/compute/region_target_http_proxy.py +0 -159
- pulumi_gcp/compute/region_target_https_proxy.py +0 -175
- pulumi_gcp/compute/service_attachment.py +0 -75
- pulumi_gcp/compute/target_http_proxy.py +28 -49
- pulumi_gcp/compute/target_https_proxy.py +28 -49
- pulumi_gcp/config/__init__.pyi +0 -4
- pulumi_gcp/config/vars.py +0 -8
- pulumi_gcp/container/_inputs.py +0 -96
- pulumi_gcp/container/attached_cluster.py +1 -54
- pulumi_gcp/container/outputs.py +0 -102
- pulumi_gcp/dataproc/metastore_federation.py +8 -8
- pulumi_gcp/dataproc/metastore_service.py +0 -2
- pulumi_gcp/datastream/stream.py +14 -21
- pulumi_gcp/gkeonprem/_inputs.py +3 -3
- pulumi_gcp/gkeonprem/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +0 -101
- pulumi_gcp/organizations/folder.py +33 -52
- pulumi_gcp/provider.py +0 -40
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
- pulumi_gcp/vpcaccess/connector.py +28 -21
- {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/RECORD +32 -43
- pulumi_gcp/bigquery/get_tables.py +0 -143
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +0 -826
- pulumi_gcp/developerconnect/__init__.py +0 -11
- pulumi_gcp/developerconnect/_inputs.py +0 -301
- pulumi_gcp/developerconnect/connection.py +0 -1034
- pulumi_gcp/developerconnect/git_repository_link.py +0 -873
- pulumi_gcp/developerconnect/outputs.py +0 -247
- pulumi_gcp/memorystore/__init__.py +0 -10
- pulumi_gcp/memorystore/_inputs.py +0 -731
- pulumi_gcp/memorystore/instance.py +0 -1663
- pulumi_gcp/memorystore/outputs.py +0 -598
- {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.2.0.dist-info → pulumi_gcp-8.2.0a1726671837.dist-info}/top_level.txt +0 -0
@@ -1,247 +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 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
|
-
|
@@ -1,10 +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
|
-
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
|