google-cloud-dataproc 5.18.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.
- google/cloud/dataproc/__init__.py +409 -0
- google/cloud/dataproc/gapic_version.py +16 -0
- google/cloud/dataproc/py.typed +2 -0
- google/cloud/dataproc_v1/__init__.py +389 -0
- google/cloud/dataproc_v1/gapic_metadata.json +821 -0
- google/cloud/dataproc_v1/gapic_version.py +16 -0
- google/cloud/dataproc_v1/py.typed +2 -0
- google/cloud/dataproc_v1/services/__init__.py +15 -0
- google/cloud/dataproc_v1/services/autoscaling_policy_service/__init__.py +22 -0
- google/cloud/dataproc_v1/services/autoscaling_policy_service/async_client.py +1488 -0
- google/cloud/dataproc_v1/services/autoscaling_policy_service/client.py +1924 -0
- google/cloud/dataproc_v1/services/autoscaling_policy_service/pagers.py +201 -0
- google/cloud/dataproc_v1/services/autoscaling_policy_service/transports/__init__.py +41 -0
- google/cloud/dataproc_v1/services/autoscaling_policy_service/transports/base.py +361 -0
- google/cloud/dataproc_v1/services/autoscaling_policy_service/transports/grpc.py +635 -0
- google/cloud/dataproc_v1/services/autoscaling_policy_service/transports/grpc_asyncio.py +743 -0
- google/cloud/dataproc_v1/services/autoscaling_policy_service/transports/rest.py +2358 -0
- google/cloud/dataproc_v1/services/autoscaling_policy_service/transports/rest_base.py +671 -0
- google/cloud/dataproc_v1/services/batch_controller/__init__.py +22 -0
- google/cloud/dataproc_v1/services/batch_controller/async_client.py +1330 -0
- google/cloud/dataproc_v1/services/batch_controller/client.py +1786 -0
- google/cloud/dataproc_v1/services/batch_controller/pagers.py +197 -0
- google/cloud/dataproc_v1/services/batch_controller/transports/__init__.py +36 -0
- google/cloud/dataproc_v1/services/batch_controller/transports/base.py +308 -0
- google/cloud/dataproc_v1/services/batch_controller/transports/grpc.py +606 -0
- google/cloud/dataproc_v1/services/batch_controller/transports/grpc_asyncio.py +682 -0
- google/cloud/dataproc_v1/services/batch_controller/transports/rest.py +2118 -0
- google/cloud/dataproc_v1/services/batch_controller/transports/rest_base.py +592 -0
- google/cloud/dataproc_v1/services/cluster_controller/__init__.py +22 -0
- google/cloud/dataproc_v1/services/cluster_controller/async_client.py +2096 -0
- google/cloud/dataproc_v1/services/cluster_controller/client.py +2587 -0
- google/cloud/dataproc_v1/services/cluster_controller/pagers.py +197 -0
- google/cloud/dataproc_v1/services/cluster_controller/transports/__init__.py +36 -0
- google/cloud/dataproc_v1/services/cluster_controller/transports/base.py +423 -0
- google/cloud/dataproc_v1/services/cluster_controller/transports/grpc.py +729 -0
- google/cloud/dataproc_v1/services/cluster_controller/transports/grpc_asyncio.py +885 -0
- google/cloud/dataproc_v1/services/cluster_controller/transports/rest.py +3062 -0
- google/cloud/dataproc_v1/services/cluster_controller/transports/rest_base.py +821 -0
- google/cloud/dataproc_v1/services/job_controller/__init__.py +22 -0
- google/cloud/dataproc_v1/services/job_controller/async_client.py +1787 -0
- google/cloud/dataproc_v1/services/job_controller/client.py +2195 -0
- google/cloud/dataproc_v1/services/job_controller/pagers.py +197 -0
- google/cloud/dataproc_v1/services/job_controller/transports/__init__.py +36 -0
- google/cloud/dataproc_v1/services/job_controller/transports/base.py +408 -0
- google/cloud/dataproc_v1/services/job_controller/transports/grpc.py +678 -0
- google/cloud/dataproc_v1/services/job_controller/transports/grpc_asyncio.py +838 -0
- google/cloud/dataproc_v1/services/job_controller/transports/rest.py +2753 -0
- google/cloud/dataproc_v1/services/job_controller/transports/rest_base.py +765 -0
- google/cloud/dataproc_v1/services/node_group_controller/__init__.py +22 -0
- google/cloud/dataproc_v1/services/node_group_controller/async_client.py +1255 -0
- google/cloud/dataproc_v1/services/node_group_controller/client.py +1695 -0
- google/cloud/dataproc_v1/services/node_group_controller/transports/__init__.py +38 -0
- google/cloud/dataproc_v1/services/node_group_controller/transports/base.py +295 -0
- google/cloud/dataproc_v1/services/node_group_controller/transports/grpc.py +585 -0
- google/cloud/dataproc_v1/services/node_group_controller/transports/grpc_asyncio.py +656 -0
- google/cloud/dataproc_v1/services/node_group_controller/transports/rest.py +2017 -0
- google/cloud/dataproc_v1/services/node_group_controller/transports/rest_base.py +554 -0
- google/cloud/dataproc_v1/services/session_controller/__init__.py +22 -0
- google/cloud/dataproc_v1/services/session_controller/async_client.py +1488 -0
- google/cloud/dataproc_v1/services/session_controller/client.py +1960 -0
- google/cloud/dataproc_v1/services/session_controller/pagers.py +197 -0
- google/cloud/dataproc_v1/services/session_controller/transports/__init__.py +36 -0
- google/cloud/dataproc_v1/services/session_controller/transports/base.py +323 -0
- google/cloud/dataproc_v1/services/session_controller/transports/grpc.py +633 -0
- google/cloud/dataproc_v1/services/session_controller/transports/grpc_asyncio.py +716 -0
- google/cloud/dataproc_v1/services/session_controller/transports/rest.py +2416 -0
- google/cloud/dataproc_v1/services/session_controller/transports/rest_base.py +650 -0
- google/cloud/dataproc_v1/services/session_template_controller/__init__.py +22 -0
- google/cloud/dataproc_v1/services/session_template_controller/async_client.py +1442 -0
- google/cloud/dataproc_v1/services/session_template_controller/client.py +1886 -0
- google/cloud/dataproc_v1/services/session_template_controller/pagers.py +201 -0
- google/cloud/dataproc_v1/services/session_template_controller/transports/__init__.py +41 -0
- google/cloud/dataproc_v1/services/session_template_controller/transports/base.py +331 -0
- google/cloud/dataproc_v1/services/session_template_controller/transports/grpc.py +628 -0
- google/cloud/dataproc_v1/services/session_template_controller/transports/grpc_asyncio.py +708 -0
- google/cloud/dataproc_v1/services/session_template_controller/transports/rest.py +2349 -0
- google/cloud/dataproc_v1/services/session_template_controller/transports/rest_base.py +649 -0
- google/cloud/dataproc_v1/services/workflow_template_service/__init__.py +22 -0
- google/cloud/dataproc_v1/services/workflow_template_service/async_client.py +1885 -0
- google/cloud/dataproc_v1/services/workflow_template_service/client.py +2370 -0
- google/cloud/dataproc_v1/services/workflow_template_service/pagers.py +201 -0
- google/cloud/dataproc_v1/services/workflow_template_service/transports/__init__.py +41 -0
- google/cloud/dataproc_v1/services/workflow_template_service/transports/base.py +431 -0
- google/cloud/dataproc_v1/services/workflow_template_service/transports/grpc.py +760 -0
- google/cloud/dataproc_v1/services/workflow_template_service/transports/grpc_asyncio.py +916 -0
- google/cloud/dataproc_v1/services/workflow_template_service/transports/rest.py +2882 -0
- google/cloud/dataproc_v1/services/workflow_template_service/transports/rest_base.py +799 -0
- google/cloud/dataproc_v1/types/__init__.py +342 -0
- google/cloud/dataproc_v1/types/autoscaling_policies.py +448 -0
- google/cloud/dataproc_v1/types/batches.py +642 -0
- google/cloud/dataproc_v1/types/clusters.py +2671 -0
- google/cloud/dataproc_v1/types/jobs.py +1822 -0
- google/cloud/dataproc_v1/types/node_groups.py +166 -0
- google/cloud/dataproc_v1/types/operations.py +395 -0
- google/cloud/dataproc_v1/types/session_templates.py +284 -0
- google/cloud/dataproc_v1/types/sessions.py +504 -0
- google/cloud/dataproc_v1/types/shared.py +1010 -0
- google/cloud/dataproc_v1/types/workflow_templates.py +1229 -0
- google_cloud_dataproc-5.18.1.dist-info/LICENSE +202 -0
- google_cloud_dataproc-5.18.1.dist-info/METADATA +229 -0
- google_cloud_dataproc-5.18.1.dist-info/RECORD +103 -0
- google_cloud_dataproc-5.18.1.dist-info/WHEEL +5 -0
- google_cloud_dataproc-5.18.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,409 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 Google LLC
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
from google.cloud.dataproc import gapic_version as package_version
|
|
17
|
+
|
|
18
|
+
__version__ = package_version.__version__
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
from google.cloud.dataproc_v1.services.autoscaling_policy_service.async_client import (
|
|
22
|
+
AutoscalingPolicyServiceAsyncClient,
|
|
23
|
+
)
|
|
24
|
+
from google.cloud.dataproc_v1.services.autoscaling_policy_service.client import (
|
|
25
|
+
AutoscalingPolicyServiceClient,
|
|
26
|
+
)
|
|
27
|
+
from google.cloud.dataproc_v1.services.batch_controller.async_client import (
|
|
28
|
+
BatchControllerAsyncClient,
|
|
29
|
+
)
|
|
30
|
+
from google.cloud.dataproc_v1.services.batch_controller.client import (
|
|
31
|
+
BatchControllerClient,
|
|
32
|
+
)
|
|
33
|
+
from google.cloud.dataproc_v1.services.cluster_controller.async_client import (
|
|
34
|
+
ClusterControllerAsyncClient,
|
|
35
|
+
)
|
|
36
|
+
from google.cloud.dataproc_v1.services.cluster_controller.client import (
|
|
37
|
+
ClusterControllerClient,
|
|
38
|
+
)
|
|
39
|
+
from google.cloud.dataproc_v1.services.job_controller.async_client import (
|
|
40
|
+
JobControllerAsyncClient,
|
|
41
|
+
)
|
|
42
|
+
from google.cloud.dataproc_v1.services.job_controller.client import JobControllerClient
|
|
43
|
+
from google.cloud.dataproc_v1.services.node_group_controller.async_client import (
|
|
44
|
+
NodeGroupControllerAsyncClient,
|
|
45
|
+
)
|
|
46
|
+
from google.cloud.dataproc_v1.services.node_group_controller.client import (
|
|
47
|
+
NodeGroupControllerClient,
|
|
48
|
+
)
|
|
49
|
+
from google.cloud.dataproc_v1.services.session_controller.async_client import (
|
|
50
|
+
SessionControllerAsyncClient,
|
|
51
|
+
)
|
|
52
|
+
from google.cloud.dataproc_v1.services.session_controller.client import (
|
|
53
|
+
SessionControllerClient,
|
|
54
|
+
)
|
|
55
|
+
from google.cloud.dataproc_v1.services.session_template_controller.async_client import (
|
|
56
|
+
SessionTemplateControllerAsyncClient,
|
|
57
|
+
)
|
|
58
|
+
from google.cloud.dataproc_v1.services.session_template_controller.client import (
|
|
59
|
+
SessionTemplateControllerClient,
|
|
60
|
+
)
|
|
61
|
+
from google.cloud.dataproc_v1.services.workflow_template_service.async_client import (
|
|
62
|
+
WorkflowTemplateServiceAsyncClient,
|
|
63
|
+
)
|
|
64
|
+
from google.cloud.dataproc_v1.services.workflow_template_service.client import (
|
|
65
|
+
WorkflowTemplateServiceClient,
|
|
66
|
+
)
|
|
67
|
+
from google.cloud.dataproc_v1.types.autoscaling_policies import (
|
|
68
|
+
AutoscalingPolicy,
|
|
69
|
+
BasicAutoscalingAlgorithm,
|
|
70
|
+
BasicYarnAutoscalingConfig,
|
|
71
|
+
CreateAutoscalingPolicyRequest,
|
|
72
|
+
DeleteAutoscalingPolicyRequest,
|
|
73
|
+
GetAutoscalingPolicyRequest,
|
|
74
|
+
InstanceGroupAutoscalingPolicyConfig,
|
|
75
|
+
ListAutoscalingPoliciesRequest,
|
|
76
|
+
ListAutoscalingPoliciesResponse,
|
|
77
|
+
UpdateAutoscalingPolicyRequest,
|
|
78
|
+
)
|
|
79
|
+
from google.cloud.dataproc_v1.types.batches import (
|
|
80
|
+
Batch,
|
|
81
|
+
CreateBatchRequest,
|
|
82
|
+
DeleteBatchRequest,
|
|
83
|
+
GetBatchRequest,
|
|
84
|
+
ListBatchesRequest,
|
|
85
|
+
ListBatchesResponse,
|
|
86
|
+
PySparkBatch,
|
|
87
|
+
SparkBatch,
|
|
88
|
+
SparkRBatch,
|
|
89
|
+
SparkSqlBatch,
|
|
90
|
+
)
|
|
91
|
+
from google.cloud.dataproc_v1.types.clusters import (
|
|
92
|
+
AcceleratorConfig,
|
|
93
|
+
AutoscalingConfig,
|
|
94
|
+
AuxiliaryNodeGroup,
|
|
95
|
+
AuxiliaryServicesConfig,
|
|
96
|
+
Cluster,
|
|
97
|
+
ClusterConfig,
|
|
98
|
+
ClusterMetrics,
|
|
99
|
+
ClusterStatus,
|
|
100
|
+
ConfidentialInstanceConfig,
|
|
101
|
+
CreateClusterRequest,
|
|
102
|
+
DataprocMetricConfig,
|
|
103
|
+
DeleteClusterRequest,
|
|
104
|
+
DiagnoseClusterRequest,
|
|
105
|
+
DiagnoseClusterResults,
|
|
106
|
+
DiskConfig,
|
|
107
|
+
EncryptionConfig,
|
|
108
|
+
EndpointConfig,
|
|
109
|
+
GceClusterConfig,
|
|
110
|
+
GetClusterRequest,
|
|
111
|
+
IdentityConfig,
|
|
112
|
+
InstanceFlexibilityPolicy,
|
|
113
|
+
InstanceGroupConfig,
|
|
114
|
+
InstanceReference,
|
|
115
|
+
KerberosConfig,
|
|
116
|
+
LifecycleConfig,
|
|
117
|
+
ListClustersRequest,
|
|
118
|
+
ListClustersResponse,
|
|
119
|
+
ManagedGroupConfig,
|
|
120
|
+
MetastoreConfig,
|
|
121
|
+
NodeGroup,
|
|
122
|
+
NodeGroupAffinity,
|
|
123
|
+
NodeInitializationAction,
|
|
124
|
+
ReservationAffinity,
|
|
125
|
+
SecurityConfig,
|
|
126
|
+
ShieldedInstanceConfig,
|
|
127
|
+
SoftwareConfig,
|
|
128
|
+
StartClusterRequest,
|
|
129
|
+
StartupConfig,
|
|
130
|
+
StopClusterRequest,
|
|
131
|
+
UpdateClusterRequest,
|
|
132
|
+
VirtualClusterConfig,
|
|
133
|
+
)
|
|
134
|
+
from google.cloud.dataproc_v1.types.jobs import (
|
|
135
|
+
CancelJobRequest,
|
|
136
|
+
DeleteJobRequest,
|
|
137
|
+
DriverSchedulingConfig,
|
|
138
|
+
FlinkJob,
|
|
139
|
+
GetJobRequest,
|
|
140
|
+
HadoopJob,
|
|
141
|
+
HiveJob,
|
|
142
|
+
Job,
|
|
143
|
+
JobMetadata,
|
|
144
|
+
JobPlacement,
|
|
145
|
+
JobReference,
|
|
146
|
+
JobScheduling,
|
|
147
|
+
JobStatus,
|
|
148
|
+
ListJobsRequest,
|
|
149
|
+
ListJobsResponse,
|
|
150
|
+
LoggingConfig,
|
|
151
|
+
PigJob,
|
|
152
|
+
PrestoJob,
|
|
153
|
+
PySparkJob,
|
|
154
|
+
QueryList,
|
|
155
|
+
SparkJob,
|
|
156
|
+
SparkRJob,
|
|
157
|
+
SparkSqlJob,
|
|
158
|
+
SubmitJobRequest,
|
|
159
|
+
TrinoJob,
|
|
160
|
+
UpdateJobRequest,
|
|
161
|
+
YarnApplication,
|
|
162
|
+
)
|
|
163
|
+
from google.cloud.dataproc_v1.types.node_groups import (
|
|
164
|
+
CreateNodeGroupRequest,
|
|
165
|
+
GetNodeGroupRequest,
|
|
166
|
+
ResizeNodeGroupRequest,
|
|
167
|
+
)
|
|
168
|
+
from google.cloud.dataproc_v1.types.operations import (
|
|
169
|
+
BatchOperationMetadata,
|
|
170
|
+
ClusterOperationMetadata,
|
|
171
|
+
ClusterOperationStatus,
|
|
172
|
+
NodeGroupOperationMetadata,
|
|
173
|
+
SessionOperationMetadata,
|
|
174
|
+
)
|
|
175
|
+
from google.cloud.dataproc_v1.types.session_templates import (
|
|
176
|
+
CreateSessionTemplateRequest,
|
|
177
|
+
DeleteSessionTemplateRequest,
|
|
178
|
+
GetSessionTemplateRequest,
|
|
179
|
+
ListSessionTemplatesRequest,
|
|
180
|
+
ListSessionTemplatesResponse,
|
|
181
|
+
SessionTemplate,
|
|
182
|
+
UpdateSessionTemplateRequest,
|
|
183
|
+
)
|
|
184
|
+
from google.cloud.dataproc_v1.types.sessions import (
|
|
185
|
+
CreateSessionRequest,
|
|
186
|
+
DeleteSessionRequest,
|
|
187
|
+
GetSessionRequest,
|
|
188
|
+
JupyterConfig,
|
|
189
|
+
ListSessionsRequest,
|
|
190
|
+
ListSessionsResponse,
|
|
191
|
+
Session,
|
|
192
|
+
SparkConnectConfig,
|
|
193
|
+
TerminateSessionRequest,
|
|
194
|
+
)
|
|
195
|
+
from google.cloud.dataproc_v1.types.shared import (
|
|
196
|
+
AuthenticationConfig,
|
|
197
|
+
AutotuningConfig,
|
|
198
|
+
Component,
|
|
199
|
+
EnvironmentConfig,
|
|
200
|
+
ExecutionConfig,
|
|
201
|
+
FailureAction,
|
|
202
|
+
GkeClusterConfig,
|
|
203
|
+
GkeNodePoolConfig,
|
|
204
|
+
GkeNodePoolTarget,
|
|
205
|
+
KubernetesClusterConfig,
|
|
206
|
+
KubernetesSoftwareConfig,
|
|
207
|
+
PeripheralsConfig,
|
|
208
|
+
PyPiRepositoryConfig,
|
|
209
|
+
RepositoryConfig,
|
|
210
|
+
RuntimeConfig,
|
|
211
|
+
RuntimeInfo,
|
|
212
|
+
SparkHistoryServerConfig,
|
|
213
|
+
UsageMetrics,
|
|
214
|
+
UsageSnapshot,
|
|
215
|
+
)
|
|
216
|
+
from google.cloud.dataproc_v1.types.workflow_templates import (
|
|
217
|
+
ClusterOperation,
|
|
218
|
+
ClusterSelector,
|
|
219
|
+
CreateWorkflowTemplateRequest,
|
|
220
|
+
DeleteWorkflowTemplateRequest,
|
|
221
|
+
GetWorkflowTemplateRequest,
|
|
222
|
+
InstantiateInlineWorkflowTemplateRequest,
|
|
223
|
+
InstantiateWorkflowTemplateRequest,
|
|
224
|
+
ListWorkflowTemplatesRequest,
|
|
225
|
+
ListWorkflowTemplatesResponse,
|
|
226
|
+
ManagedCluster,
|
|
227
|
+
OrderedJob,
|
|
228
|
+
ParameterValidation,
|
|
229
|
+
RegexValidation,
|
|
230
|
+
TemplateParameter,
|
|
231
|
+
UpdateWorkflowTemplateRequest,
|
|
232
|
+
ValueValidation,
|
|
233
|
+
WorkflowGraph,
|
|
234
|
+
WorkflowMetadata,
|
|
235
|
+
WorkflowNode,
|
|
236
|
+
WorkflowTemplate,
|
|
237
|
+
WorkflowTemplatePlacement,
|
|
238
|
+
)
|
|
239
|
+
|
|
240
|
+
__all__ = (
|
|
241
|
+
"AutoscalingPolicyServiceClient",
|
|
242
|
+
"AutoscalingPolicyServiceAsyncClient",
|
|
243
|
+
"BatchControllerClient",
|
|
244
|
+
"BatchControllerAsyncClient",
|
|
245
|
+
"ClusterControllerClient",
|
|
246
|
+
"ClusterControllerAsyncClient",
|
|
247
|
+
"JobControllerClient",
|
|
248
|
+
"JobControllerAsyncClient",
|
|
249
|
+
"NodeGroupControllerClient",
|
|
250
|
+
"NodeGroupControllerAsyncClient",
|
|
251
|
+
"SessionControllerClient",
|
|
252
|
+
"SessionControllerAsyncClient",
|
|
253
|
+
"SessionTemplateControllerClient",
|
|
254
|
+
"SessionTemplateControllerAsyncClient",
|
|
255
|
+
"WorkflowTemplateServiceClient",
|
|
256
|
+
"WorkflowTemplateServiceAsyncClient",
|
|
257
|
+
"AutoscalingPolicy",
|
|
258
|
+
"BasicAutoscalingAlgorithm",
|
|
259
|
+
"BasicYarnAutoscalingConfig",
|
|
260
|
+
"CreateAutoscalingPolicyRequest",
|
|
261
|
+
"DeleteAutoscalingPolicyRequest",
|
|
262
|
+
"GetAutoscalingPolicyRequest",
|
|
263
|
+
"InstanceGroupAutoscalingPolicyConfig",
|
|
264
|
+
"ListAutoscalingPoliciesRequest",
|
|
265
|
+
"ListAutoscalingPoliciesResponse",
|
|
266
|
+
"UpdateAutoscalingPolicyRequest",
|
|
267
|
+
"Batch",
|
|
268
|
+
"CreateBatchRequest",
|
|
269
|
+
"DeleteBatchRequest",
|
|
270
|
+
"GetBatchRequest",
|
|
271
|
+
"ListBatchesRequest",
|
|
272
|
+
"ListBatchesResponse",
|
|
273
|
+
"PySparkBatch",
|
|
274
|
+
"SparkBatch",
|
|
275
|
+
"SparkRBatch",
|
|
276
|
+
"SparkSqlBatch",
|
|
277
|
+
"AcceleratorConfig",
|
|
278
|
+
"AutoscalingConfig",
|
|
279
|
+
"AuxiliaryNodeGroup",
|
|
280
|
+
"AuxiliaryServicesConfig",
|
|
281
|
+
"Cluster",
|
|
282
|
+
"ClusterConfig",
|
|
283
|
+
"ClusterMetrics",
|
|
284
|
+
"ClusterStatus",
|
|
285
|
+
"ConfidentialInstanceConfig",
|
|
286
|
+
"CreateClusterRequest",
|
|
287
|
+
"DataprocMetricConfig",
|
|
288
|
+
"DeleteClusterRequest",
|
|
289
|
+
"DiagnoseClusterRequest",
|
|
290
|
+
"DiagnoseClusterResults",
|
|
291
|
+
"DiskConfig",
|
|
292
|
+
"EncryptionConfig",
|
|
293
|
+
"EndpointConfig",
|
|
294
|
+
"GceClusterConfig",
|
|
295
|
+
"GetClusterRequest",
|
|
296
|
+
"IdentityConfig",
|
|
297
|
+
"InstanceFlexibilityPolicy",
|
|
298
|
+
"InstanceGroupConfig",
|
|
299
|
+
"InstanceReference",
|
|
300
|
+
"KerberosConfig",
|
|
301
|
+
"LifecycleConfig",
|
|
302
|
+
"ListClustersRequest",
|
|
303
|
+
"ListClustersResponse",
|
|
304
|
+
"ManagedGroupConfig",
|
|
305
|
+
"MetastoreConfig",
|
|
306
|
+
"NodeGroup",
|
|
307
|
+
"NodeGroupAffinity",
|
|
308
|
+
"NodeInitializationAction",
|
|
309
|
+
"ReservationAffinity",
|
|
310
|
+
"SecurityConfig",
|
|
311
|
+
"ShieldedInstanceConfig",
|
|
312
|
+
"SoftwareConfig",
|
|
313
|
+
"StartClusterRequest",
|
|
314
|
+
"StartupConfig",
|
|
315
|
+
"StopClusterRequest",
|
|
316
|
+
"UpdateClusterRequest",
|
|
317
|
+
"VirtualClusterConfig",
|
|
318
|
+
"CancelJobRequest",
|
|
319
|
+
"DeleteJobRequest",
|
|
320
|
+
"DriverSchedulingConfig",
|
|
321
|
+
"FlinkJob",
|
|
322
|
+
"GetJobRequest",
|
|
323
|
+
"HadoopJob",
|
|
324
|
+
"HiveJob",
|
|
325
|
+
"Job",
|
|
326
|
+
"JobMetadata",
|
|
327
|
+
"JobPlacement",
|
|
328
|
+
"JobReference",
|
|
329
|
+
"JobScheduling",
|
|
330
|
+
"JobStatus",
|
|
331
|
+
"ListJobsRequest",
|
|
332
|
+
"ListJobsResponse",
|
|
333
|
+
"LoggingConfig",
|
|
334
|
+
"PigJob",
|
|
335
|
+
"PrestoJob",
|
|
336
|
+
"PySparkJob",
|
|
337
|
+
"QueryList",
|
|
338
|
+
"SparkJob",
|
|
339
|
+
"SparkRJob",
|
|
340
|
+
"SparkSqlJob",
|
|
341
|
+
"SubmitJobRequest",
|
|
342
|
+
"TrinoJob",
|
|
343
|
+
"UpdateJobRequest",
|
|
344
|
+
"YarnApplication",
|
|
345
|
+
"CreateNodeGroupRequest",
|
|
346
|
+
"GetNodeGroupRequest",
|
|
347
|
+
"ResizeNodeGroupRequest",
|
|
348
|
+
"BatchOperationMetadata",
|
|
349
|
+
"ClusterOperationMetadata",
|
|
350
|
+
"ClusterOperationStatus",
|
|
351
|
+
"NodeGroupOperationMetadata",
|
|
352
|
+
"SessionOperationMetadata",
|
|
353
|
+
"CreateSessionTemplateRequest",
|
|
354
|
+
"DeleteSessionTemplateRequest",
|
|
355
|
+
"GetSessionTemplateRequest",
|
|
356
|
+
"ListSessionTemplatesRequest",
|
|
357
|
+
"ListSessionTemplatesResponse",
|
|
358
|
+
"SessionTemplate",
|
|
359
|
+
"UpdateSessionTemplateRequest",
|
|
360
|
+
"CreateSessionRequest",
|
|
361
|
+
"DeleteSessionRequest",
|
|
362
|
+
"GetSessionRequest",
|
|
363
|
+
"JupyterConfig",
|
|
364
|
+
"ListSessionsRequest",
|
|
365
|
+
"ListSessionsResponse",
|
|
366
|
+
"Session",
|
|
367
|
+
"SparkConnectConfig",
|
|
368
|
+
"TerminateSessionRequest",
|
|
369
|
+
"AuthenticationConfig",
|
|
370
|
+
"AutotuningConfig",
|
|
371
|
+
"EnvironmentConfig",
|
|
372
|
+
"ExecutionConfig",
|
|
373
|
+
"GkeClusterConfig",
|
|
374
|
+
"GkeNodePoolConfig",
|
|
375
|
+
"GkeNodePoolTarget",
|
|
376
|
+
"KubernetesClusterConfig",
|
|
377
|
+
"KubernetesSoftwareConfig",
|
|
378
|
+
"PeripheralsConfig",
|
|
379
|
+
"PyPiRepositoryConfig",
|
|
380
|
+
"RepositoryConfig",
|
|
381
|
+
"RuntimeConfig",
|
|
382
|
+
"RuntimeInfo",
|
|
383
|
+
"SparkHistoryServerConfig",
|
|
384
|
+
"UsageMetrics",
|
|
385
|
+
"UsageSnapshot",
|
|
386
|
+
"Component",
|
|
387
|
+
"FailureAction",
|
|
388
|
+
"ClusterOperation",
|
|
389
|
+
"ClusterSelector",
|
|
390
|
+
"CreateWorkflowTemplateRequest",
|
|
391
|
+
"DeleteWorkflowTemplateRequest",
|
|
392
|
+
"GetWorkflowTemplateRequest",
|
|
393
|
+
"InstantiateInlineWorkflowTemplateRequest",
|
|
394
|
+
"InstantiateWorkflowTemplateRequest",
|
|
395
|
+
"ListWorkflowTemplatesRequest",
|
|
396
|
+
"ListWorkflowTemplatesResponse",
|
|
397
|
+
"ManagedCluster",
|
|
398
|
+
"OrderedJob",
|
|
399
|
+
"ParameterValidation",
|
|
400
|
+
"RegexValidation",
|
|
401
|
+
"TemplateParameter",
|
|
402
|
+
"UpdateWorkflowTemplateRequest",
|
|
403
|
+
"ValueValidation",
|
|
404
|
+
"WorkflowGraph",
|
|
405
|
+
"WorkflowMetadata",
|
|
406
|
+
"WorkflowNode",
|
|
407
|
+
"WorkflowTemplate",
|
|
408
|
+
"WorkflowTemplatePlacement",
|
|
409
|
+
)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 Google LLC
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
__version__ = "5.18.1" # {x-release-please-version}
|