anyscale 0.26.63__py3-none-any.whl → 0.26.65__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.
- anyscale/_private/docgen/__main__.py +23 -4
- anyscale/_private/docgen/generator.py +127 -34
- anyscale/_private/docgen/generator_legacy.py +35 -12
- anyscale/client/README.md +37 -0
- anyscale/client/openapi_client/__init__.py +26 -0
- anyscale/client/openapi_client/api/default_api.py +1423 -97
- anyscale/client/openapi_client/models/__init__.py +26 -0
- anyscale/client/openapi_client/models/apply_production_service_v2_model.py +2 -2
- anyscale/client/openapi_client/models/connection_type.py +99 -0
- anyscale/client/openapi_client/models/create_experimental_workspace.py +29 -1
- anyscale/client/openapi_client/models/data_catalog.py +281 -0
- anyscale/client/openapi_client/models/data_catalog_connection.py +308 -0
- anyscale/client/openapi_client/models/data_catalog_connection_status.py +102 -0
- anyscale/client/openapi_client/models/data_catalog_provider.py +101 -0
- anyscale/client/openapi_client/models/databricks_connection_config.py +152 -0
- anyscale/client/openapi_client/models/databricks_connection_info.py +229 -0
- anyscale/client/openapi_client/models/databricks_connection_response.py +148 -0
- anyscale/client/openapi_client/models/databricks_register_request.py +187 -0
- anyscale/client/openapi_client/models/databricksconnectioninfo_response.py +121 -0
- anyscale/client/openapi_client/models/databricksconnectionresponse_response.py +121 -0
- anyscale/client/openapi_client/models/datacatalog_list_response.py +147 -0
- anyscale/client/openapi_client/models/datacatalogconnection_list_response.py +147 -0
- anyscale/client/openapi_client/models/decorated_session.py +29 -1
- anyscale/client/openapi_client/models/domain_verification.py +181 -0
- anyscale/client/openapi_client/models/list_databricks_connections.py +121 -0
- anyscale/client/openapi_client/models/o_auth_connection_response.py +229 -0
- anyscale/client/openapi_client/models/oauth_auth_url_response.py +121 -0
- anyscale/client/openapi_client/models/oauthconnectionresponse_response.py +121 -0
- anyscale/client/openapi_client/models/sso_config.py +148 -0
- anyscale/client/openapi_client/models/sso_connection.py +148 -0
- anyscale/client/openapi_client/models/sso_connection_state.py +100 -0
- anyscale/client/openapi_client/models/ssoconfig_response.py +121 -0
- anyscale/client/openapi_client/models/update_workspace_template.py +346 -0
- anyscale/client/openapi_client/models/usage_by_cluster_type.py +174 -0
- anyscale/client/openapi_client/models/usagebyclustertype_list_response.py +147 -0
- anyscale/client/openapi_client/models/validation_status.py +101 -0
- anyscale/commands/cloud_commands.py +310 -206
- anyscale/controllers/cloud_controller.py +174 -240
- anyscale/controllers/cloud_functional_verification_controller.py +6 -3
- anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +2 -2
- anyscale/sdk/anyscale_client/models/apply_service_model.py +2 -2
- anyscale/sdk/anyscale_client/models/session.py +31 -3
- anyscale/util.py +1 -1
- anyscale/version.py +1 -1
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/METADATA +1 -1
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/RECORD +51 -26
- anyscale/commands/cloud_commands_util.py +0 -10
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/WHEEL +0 -0
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/licenses/LICENSE +0 -0
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/licenses/NOTICE +0 -0
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/top_level.txt +0 -0
@@ -736,23 +736,42 @@ def generate(
|
|
736
736
|
raise RuntimeError(f"output_dir '{output_dir}' does not exist.")
|
737
737
|
|
738
738
|
gen = MarkdownGenerator(ALL_MODULES)
|
739
|
-
gen.generate()
|
740
739
|
|
741
740
|
generated_files = set()
|
742
741
|
os.makedirs(output_dir, exist_ok=True)
|
742
|
+
|
743
|
+
# Create legacy subdirectory
|
744
|
+
legacy_dir = os.path.join(output_dir, "legacy")
|
745
|
+
os.makedirs(legacy_dir, exist_ok=True)
|
746
|
+
|
743
747
|
for filename, content in gen.generate().items():
|
744
748
|
generated_files.add(filename)
|
745
749
|
full_path = os.path.join(output_dir, filename)
|
750
|
+
|
751
|
+
# Create directory if it doesn't exist (for legacy/ files)
|
752
|
+
dir_path = os.path.dirname(full_path)
|
753
|
+
if dir_path:
|
754
|
+
os.makedirs(dir_path, exist_ok=True)
|
755
|
+
|
746
756
|
print(f"Writing output file {full_path}")
|
747
757
|
with open(full_path, "w") as f:
|
748
758
|
f.write(content)
|
749
759
|
|
750
760
|
if remove_existing:
|
751
|
-
|
761
|
+
# Get all existing files (including in subdirectories)
|
762
|
+
existing_files = set()
|
763
|
+
for root, _dirs, files in os.walk(output_dir):
|
764
|
+
for file in files:
|
765
|
+
rel_path = os.path.relpath(os.path.join(root, file), output_dir)
|
766
|
+
existing_files.add(rel_path)
|
767
|
+
|
768
|
+
# Remove files that weren't generated
|
769
|
+
to_remove = existing_files - generated_files
|
752
770
|
for path in to_remove:
|
753
771
|
full_path = os.path.join(output_dir, path)
|
754
|
-
|
755
|
-
|
772
|
+
if os.path.exists(full_path):
|
773
|
+
print(f"Removing existing file {full_path}")
|
774
|
+
os.unlink(full_path)
|
756
775
|
|
757
776
|
|
758
777
|
if __name__ == "__main__":
|
@@ -106,11 +106,9 @@ class MarkdownGenerator:
|
|
106
106
|
|
107
107
|
Returns a dictionary of filename to generated file contents.
|
108
108
|
|
109
|
-
Each module will
|
110
|
-
|
111
|
-
|
112
|
-
- SDK
|
113
|
-
- CLI (legacy)
|
109
|
+
Each module will generate two files:
|
110
|
+
- Main file: contains current Models, CLI, and SDK
|
111
|
+
- Legacy file (in legacy/ subfolder): contains legacy CLI, SDK, and Models
|
114
112
|
"""
|
115
113
|
|
116
114
|
output_files: Dict[str, str] = {}
|
@@ -119,6 +117,7 @@ class MarkdownGenerator:
|
|
119
117
|
os.path.join(os.path.dirname(__file__), "models.md"),
|
120
118
|
)
|
121
119
|
for m in self._modules:
|
120
|
+
# Generate main (current) documentation
|
122
121
|
output = "import Tabs from '@theme/Tabs';\n"
|
123
122
|
output += "import TabItem from '@theme/TabItem';\n\n"
|
124
123
|
output += f"# {m.title} API Reference\n\n"
|
@@ -127,12 +126,17 @@ class MarkdownGenerator:
|
|
127
126
|
output += self._generate_clis(m)
|
128
127
|
output += self._generate_sdks(m)
|
129
128
|
output += self._generate_models(m)
|
130
|
-
output += self._generate_legacy_clis(m)
|
131
|
-
output += self._generate_legacy_sdks(m, legacy_sdks)
|
132
|
-
output += self._generate_legacy_models(m, legacy_models)
|
133
129
|
|
134
130
|
output_files[m.filename] = output
|
135
131
|
|
132
|
+
# Generate legacy documentation if any legacy content exists
|
133
|
+
legacy_content = self._generate_legacy_content(
|
134
|
+
m, legacy_sdks, legacy_models
|
135
|
+
)
|
136
|
+
if legacy_content:
|
137
|
+
legacy_filename = f"legacy/{m.filename}"
|
138
|
+
output_files[legacy_filename] = legacy_content
|
139
|
+
|
136
140
|
return output_files
|
137
141
|
|
138
142
|
def _generate_sdks(self, m: Module) -> str:
|
@@ -146,15 +150,23 @@ class MarkdownGenerator:
|
|
146
150
|
|
147
151
|
return output
|
148
152
|
|
149
|
-
def _generate_legacy_sdks(
|
153
|
+
def _generate_legacy_sdks(
|
154
|
+
self, m: Module, legacy_sdks: List[LegacySDK], for_legacy_file: bool = False
|
155
|
+
) -> str:
|
150
156
|
if not m.legacy_sdk_commands:
|
151
157
|
return ""
|
152
|
-
|
158
|
+
if for_legacy_file:
|
159
|
+
output = f"## {m.legacy_title or m.title} SDK\n"
|
160
|
+
else:
|
161
|
+
output = f"## {m.legacy_title or m.title} SDK <span class='label-h2 label-legacy'>Legacy</span>\n"
|
153
162
|
output += ANYSCALE_SDK_INTRO + "\n"
|
154
163
|
for legacy_sdk_str, new_sdk in m.legacy_sdk_commands.items():
|
155
164
|
legacy_sdk = next(sdk for sdk in legacy_sdks if sdk.name == legacy_sdk_str)
|
156
165
|
output += "\n" + self._gen_markdown_for_legacy_sdk_command(
|
157
|
-
legacy_sdk,
|
166
|
+
legacy_sdk,
|
167
|
+
new_sdk,
|
168
|
+
sdk_prefix=m.sdk_prefix,
|
169
|
+
for_legacy_file=for_legacy_file,
|
158
170
|
)
|
159
171
|
|
160
172
|
return output
|
@@ -170,21 +182,28 @@ class MarkdownGenerator:
|
|
170
182
|
return output
|
171
183
|
|
172
184
|
def _generate_legacy_models(
|
173
|
-
self, m: Module, legacy_models: List[LegacyModel]
|
185
|
+
self, m: Module, legacy_models: List[LegacyModel], for_legacy_file: bool = False
|
174
186
|
) -> str:
|
175
187
|
"""Generate documentation for a list of legacy models."""
|
176
188
|
if not m.legacy_sdk_models:
|
177
189
|
return ""
|
178
|
-
|
190
|
+
if for_legacy_file:
|
191
|
+
output = f"## {m.legacy_title or m.title} Models\n"
|
192
|
+
else:
|
193
|
+
output = f"## {m.legacy_title or m.title} Models <span class='label-h2 label-legacy'>Legacy</span>\n"
|
179
194
|
for model_str in m.legacy_sdk_models:
|
180
195
|
legacy_model = next(
|
181
196
|
model for model in legacy_models if model.name == model_str
|
182
197
|
)
|
183
|
-
output += "\n" + self._gen_markdown_for_legacy_model(
|
198
|
+
output += "\n" + self._gen_markdown_for_legacy_model(
|
199
|
+
legacy_model, for_legacy_file
|
200
|
+
)
|
184
201
|
|
185
202
|
return output
|
186
203
|
|
187
|
-
def _generate_clis(
|
204
|
+
def _generate_clis(
|
205
|
+
self, m: Module, is_legacy_cli: bool = False, for_legacy_file: bool = False
|
206
|
+
) -> str:
|
188
207
|
"""Generate CLI documentation for a module.
|
189
208
|
|
190
209
|
Returns a tuple of CLI and legacy CLI documentation.
|
@@ -196,7 +215,10 @@ class MarkdownGenerator:
|
|
196
215
|
return ""
|
197
216
|
|
198
217
|
if is_legacy_cli:
|
199
|
-
|
218
|
+
if for_legacy_file:
|
219
|
+
output = f"## {m.legacy_title or m.title} CLI\n"
|
220
|
+
else:
|
221
|
+
output = f'## {m.legacy_title or m.title} CLI <span class="label-h2 label-legacy">Legacy</span>\n'
|
200
222
|
else:
|
201
223
|
output = f"## {m.title} CLI\n"
|
202
224
|
|
@@ -210,8 +232,60 @@ class MarkdownGenerator:
|
|
210
232
|
|
211
233
|
return output
|
212
234
|
|
213
|
-
def _generate_legacy_clis(self, m: Module) -> str:
|
214
|
-
return self._generate_clis(
|
235
|
+
def _generate_legacy_clis(self, m: Module, for_legacy_file: bool = False) -> str:
|
236
|
+
return self._generate_clis(
|
237
|
+
m, is_legacy_cli=True, for_legacy_file=for_legacy_file
|
238
|
+
)
|
239
|
+
|
240
|
+
def _generate_legacy_content(
|
241
|
+
self, m: Module, legacy_sdks: List[LegacySDK], legacy_models: List[LegacyModel]
|
242
|
+
) -> str:
|
243
|
+
"""Generate legacy documentation content for a module.
|
244
|
+
|
245
|
+
Returns empty string if no legacy content exists.
|
246
|
+
"""
|
247
|
+
legacy_cli = self._generate_legacy_clis(m, for_legacy_file=True)
|
248
|
+
legacy_sdk = self._generate_legacy_sdks(m, legacy_sdks, for_legacy_file=True)
|
249
|
+
legacy_model = self._generate_legacy_models(
|
250
|
+
m, legacy_models, for_legacy_file=True
|
251
|
+
)
|
252
|
+
|
253
|
+
# If no legacy content exists, return empty string
|
254
|
+
if not (legacy_cli or legacy_sdk or legacy_model):
|
255
|
+
return ""
|
256
|
+
|
257
|
+
# Build legacy documentation
|
258
|
+
output = "import Tabs from '@theme/Tabs';\n"
|
259
|
+
output += "import TabItem from '@theme/TabItem';\n\n"
|
260
|
+
output += f"# {m.legacy_title or m.title} API Reference (Legacy)\n\n"
|
261
|
+
output += ":::warning\n"
|
262
|
+
output += (
|
263
|
+
"These APIs are legacy and deprecated. Please use the [current APIs](../"
|
264
|
+
+ m.filename
|
265
|
+
+ ") instead.\n"
|
266
|
+
)
|
267
|
+
output += ":::\n\n"
|
268
|
+
|
269
|
+
output += legacy_cli
|
270
|
+
output += legacy_sdk
|
271
|
+
output += legacy_model
|
272
|
+
|
273
|
+
return output
|
274
|
+
|
275
|
+
def _transform_links_for_legacy_file(self, text: str) -> str:
|
276
|
+
"""Transform links in legacy content for use in legacy files.
|
277
|
+
|
278
|
+
This removes -legacy suffixes and adjusts cross-module references.
|
279
|
+
"""
|
280
|
+
import re
|
281
|
+
|
282
|
+
# Remove -legacy suffix from local anchors
|
283
|
+
text = re.sub(r"\(#([a-z]+)-legacy\)", r"(#\1)", text)
|
284
|
+
|
285
|
+
# Transform cross-module references from file.md#anchor-legacy to file.md#anchor
|
286
|
+
text = re.sub(r"\(([a-z-]+\.md)#([a-z]+)-legacy\)", r"(\1#\2)", text)
|
287
|
+
|
288
|
+
return text
|
215
289
|
|
216
290
|
def _get_anchor(self, t: ModelType):
|
217
291
|
"""Get a markdown anchor (link) to the given type's docs."""
|
@@ -575,7 +649,11 @@ class MarkdownGenerator:
|
|
575
649
|
return md
|
576
650
|
|
577
651
|
def _gen_markdown_for_legacy_sdk_command(
|
578
|
-
self,
|
652
|
+
self,
|
653
|
+
legacy_sdk: LegacySDK,
|
654
|
+
new_sdk: Optional[Callable],
|
655
|
+
sdk_prefix: str,
|
656
|
+
for_legacy_file: bool = False,
|
579
657
|
) -> str:
|
580
658
|
"""Generate a markdown section for a legacy SDK command.
|
581
659
|
|
@@ -584,29 +662,44 @@ class MarkdownGenerator:
|
|
584
662
|
- Arguments (docstrings pulled from __arg_docstrings__ magic attribute)
|
585
663
|
- Returns (if the return type annotation is not None)
|
586
664
|
"""
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
md +=
|
591
|
-
elif sdk_prefix == CLUSTER_SDK_PREFIX:
|
592
|
-
# Cluster SDK commands have special handling.
|
593
|
-
md += ":::warning[Upgrade recommended]\n"
|
594
|
-
md += "Cluster commands are deprecated. Use [workspaces](./workspaces.md), [jobs](./job-api.md), or [services](./service-api.md) APIs based on your specific needs.\n"
|
665
|
+
if for_legacy_file:
|
666
|
+
md = f"### `{legacy_sdk.name}`\n"
|
667
|
+
docstring = self._transform_links_for_legacy_file(legacy_sdk.docstring)
|
668
|
+
md += _escape_mdx_content(docstring) + "\n"
|
595
669
|
else:
|
596
|
-
md
|
597
|
-
|
598
|
-
|
599
|
-
|
670
|
+
md = f"### `{legacy_sdk.name}` <span class='label-h3 label-legacy'>Legacy</span>\n"
|
671
|
+
if new_sdk:
|
672
|
+
md += ":::warning\n"
|
673
|
+
md += f"This command is deprecated. Upgrade to [{sdk_prefix}.{new_sdk.__name__}]({self._get_sdk_anchor(new_sdk, sdk_prefix)}). \n"
|
674
|
+
elif sdk_prefix == CLUSTER_SDK_PREFIX:
|
675
|
+
# Cluster SDK commands have special handling.
|
676
|
+
md += ":::warning[Upgrade recommended]\n"
|
677
|
+
md += "Cluster commands are deprecated. Use [workspaces](./workspaces.md), [jobs](./job-api.md), or [services](./service-api.md) APIs based on your specific needs.\n"
|
678
|
+
else:
|
679
|
+
md += ":::warning[Limited support]\n"
|
680
|
+
md += "This command is not actively maintained. Use with caution.\n"
|
681
|
+
md += ":::\n"
|
682
|
+
md += _escape_mdx_content(legacy_sdk.docstring) + "\n"
|
600
683
|
|
601
684
|
return md
|
602
685
|
|
603
|
-
def _gen_markdown_for_legacy_model(
|
686
|
+
def _gen_markdown_for_legacy_model(
|
687
|
+
self, legacy_model: LegacyModel, for_legacy_file: bool = False
|
688
|
+
) -> str:
|
604
689
|
"""Generate a markdown section for a legacy model.
|
605
690
|
|
606
691
|
The sections will be:
|
607
692
|
- All fields and their types
|
608
693
|
"""
|
609
|
-
|
610
|
-
|
694
|
+
if for_legacy_file:
|
695
|
+
# In legacy files, don't use -legacy suffix for anchors
|
696
|
+
md = f"### `{legacy_model.name}` {{#{legacy_model.name.lower()}}}\n"
|
697
|
+
# Transform the docstring to remove -legacy suffixes from links
|
698
|
+
docstring = self._transform_links_for_legacy_file(legacy_model.docstring)
|
699
|
+
md += _escape_mdx_content(docstring) + "\n"
|
700
|
+
else:
|
701
|
+
# In main files, use -legacy suffix
|
702
|
+
md = f"### `{legacy_model.name}` <span class='label-h3 label-legacy'>Legacy</span> {{#{legacy_model.name.lower()}-legacy}}\n"
|
703
|
+
md += _escape_mdx_content(legacy_model.docstring) + "\n"
|
611
704
|
|
612
705
|
return md
|
@@ -42,8 +42,14 @@ def _build_model_to_module_mapping() -> Dict[str, str]:
|
|
42
42
|
return model_name_to_file
|
43
43
|
|
44
44
|
|
45
|
-
def _transform_legacy_links(text: str) -> str:
|
46
|
-
"""Transform legacy model links to include proper cross-module references.
|
45
|
+
def _transform_legacy_links(text: str, for_legacy_file: bool = True) -> str:
|
46
|
+
"""Transform legacy model links to include proper cross-module references.
|
47
|
+
|
48
|
+
Args:
|
49
|
+
text: The text containing links to transform
|
50
|
+
for_legacy_file: If True, generate links for legacy files (in legacy/ subfolder).
|
51
|
+
If False, generate links for main files with -legacy anchors.
|
52
|
+
"""
|
47
53
|
# Build the mapping dynamically
|
48
54
|
model_mapping = _build_model_to_module_mapping()
|
49
55
|
|
@@ -51,20 +57,37 @@ def _transform_legacy_links(text: str) -> str:
|
|
51
57
|
model_name = match.group(1)
|
52
58
|
if model_name in model_mapping:
|
53
59
|
module_file = model_mapping[model_name]
|
54
|
-
|
60
|
+
if for_legacy_file:
|
61
|
+
# In legacy files, link to other legacy files without -legacy suffix
|
62
|
+
return f"({module_file}#{model_name})"
|
63
|
+
else:
|
64
|
+
# In main files, link with -legacy suffix
|
65
|
+
return f"({module_file}#{model_name}-legacy)"
|
55
66
|
else:
|
56
67
|
# Fallback for unmapped models (stay in same file)
|
57
|
-
|
68
|
+
if for_legacy_file:
|
69
|
+
return f"(#{model_name})"
|
70
|
+
else:
|
71
|
+
return f"(#{model_name}-legacy)"
|
58
72
|
|
59
73
|
# Transform links from (#modelname) to proper cross-module references
|
60
74
|
text = re.sub(r"\(#([a-z]+)\)", replace_link, text)
|
61
75
|
|
62
|
-
# Transform workspace command references
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
76
|
+
# Transform workspace command references
|
77
|
+
if for_legacy_file:
|
78
|
+
# In legacy files, point to legacy workspace file
|
79
|
+
text = re.sub(
|
80
|
+
r"\(#anyscale-workspace_v2-([a-z]+)\)",
|
81
|
+
r"(workspaces.md#anyscale-workspace_v2-\1)",
|
82
|
+
text,
|
83
|
+
)
|
84
|
+
else:
|
85
|
+
# In main files, point to main workspace file
|
86
|
+
text = re.sub(
|
87
|
+
r"\(#anyscale-workspace_v2-([a-z]+)\)",
|
88
|
+
r"(workspaces.md#anyscale-workspace_v2-\1)",
|
89
|
+
text,
|
90
|
+
)
|
68
91
|
|
69
92
|
return text
|
70
93
|
|
@@ -88,7 +111,7 @@ class LegacySDK:
|
|
88
111
|
else:
|
89
112
|
# First transform ./models.md links, then transform local links
|
90
113
|
line = re.sub(r"\(./models\.md#([a-z]+)\)", r"(#\1-legacy)", line)
|
91
|
-
line = _transform_legacy_links(line)
|
114
|
+
line = _transform_legacy_links(line, for_legacy_file=False)
|
92
115
|
docstring += line + "\n"
|
93
116
|
|
94
117
|
return cls(name=name, docstring=docstring.strip())
|
@@ -111,7 +134,7 @@ class LegacyModel:
|
|
111
134
|
if line.startswith("## "):
|
112
135
|
name = line[3:]
|
113
136
|
else:
|
114
|
-
docstring += _transform_legacy_links(line) + "\n"
|
137
|
+
docstring += _transform_legacy_links(line, for_legacy_file=False) + "\n"
|
115
138
|
|
116
139
|
return cls(name=name, docstring=docstring.strip())
|
117
140
|
|
anyscale/client/README.md
CHANGED
@@ -135,6 +135,7 @@ Class | Method | HTTP request | Description
|
|
135
135
|
*DefaultApi* | [**create_workspace_from_template_api_v2_experimental_workspaces_from_template_post**](docs/DefaultApi.md#create_workspace_from_template_api_v2_experimental_workspaces_from_template_post) | **POST** /api/v2/experimental_workspaces/from_template | Create Workspace From Template
|
136
136
|
*DefaultApi* | [**delete_cloud_api_v2_clouds_cloud_id_delete**](docs/DefaultApi.md#delete_cloud_api_v2_clouds_cloud_id_delete) | **DELETE** /api/v2/clouds/{cloud_id} | Delete Cloud
|
137
137
|
*DefaultApi* | [**delete_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_identity_id_delete**](docs/DefaultApi.md#delete_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_identity_id_delete) | **DELETE** /api/v2/clouds/{cloud_id}/collaborators/{identity_id} | Delete Cloud Collaborator
|
138
|
+
*DefaultApi* | [**delete_databricks_connection_api_v2_integrations_connections_databricks_connection_id_delete**](docs/DefaultApi.md#delete_databricks_connection_api_v2_integrations_connections_databricks_connection_id_delete) | **DELETE** /api/v2/integrations/connections/databricks/{connection_id} | Delete Databricks Connection
|
138
139
|
*DefaultApi* | [**delete_hosted_cloud_api_v2_clouds_hosted_cloud_id_delete**](docs/DefaultApi.md#delete_hosted_cloud_api_v2_clouds_hosted_cloud_id_delete) | **DELETE** /api/v2/clouds/hosted/{cloud_id} | Delete Hosted Cloud
|
139
140
|
*DefaultApi* | [**delete_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_delete**](docs/DefaultApi.md#delete_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_delete) | **DELETE** /api/v2/instance_usage_budgets/{instance_usage_budget_id} | Delete Instance Usage Budget
|
140
141
|
*DefaultApi* | [**delete_machine_api_v2_machines_delete_post**](docs/DefaultApi.md#delete_machine_api_v2_machines_delete_post) | **POST** /api/v2/machines/delete | Delete Machine
|
@@ -161,6 +162,7 @@ Class | Method | HTTP request | Description
|
|
161
162
|
*DefaultApi* | [**execute_interactive_command_api_v2_sessions_session_id_execute_interactive_command_post**](docs/DefaultApi.md#execute_interactive_command_api_v2_sessions_session_id_execute_interactive_command_post) | **POST** /api/v2/sessions/{session_id}/execute_interactive_command | Execute Interactive Command
|
162
163
|
*DefaultApi* | [**fetch_usage_group_by_cloud_api_v2_aggregated_instance_usage_cloud_post**](docs/DefaultApi.md#fetch_usage_group_by_cloud_api_v2_aggregated_instance_usage_cloud_post) | **POST** /api/v2/aggregated_instance_usage/cloud | Fetch Usage Group By Cloud
|
163
164
|
*DefaultApi* | [**fetch_usage_group_by_cluster_api_v2_aggregated_instance_usage_cluster_post**](docs/DefaultApi.md#fetch_usage_group_by_cluster_api_v2_aggregated_instance_usage_cluster_post) | **POST** /api/v2/aggregated_instance_usage/cluster | Fetch Usage Group By Cluster
|
165
|
+
*DefaultApi* | [**fetch_usage_group_by_cluster_type_api_v2_aggregated_instance_usage_cluster_type_post**](docs/DefaultApi.md#fetch_usage_group_by_cluster_type_api_v2_aggregated_instance_usage_cluster_type_post) | **POST** /api/v2/aggregated_instance_usage/cluster_type | Fetch Usage Group By Cluster Type
|
164
166
|
*DefaultApi* | [**fetch_usage_group_by_instance_type_api_v2_aggregated_instance_usage_instance_type_post**](docs/DefaultApi.md#fetch_usage_group_by_instance_type_api_v2_aggregated_instance_usage_instance_type_post) | **POST** /api/v2/aggregated_instance_usage/instance_type | Fetch Usage Group By Instance Type
|
165
167
|
*DefaultApi* | [**fetch_usage_group_by_project_api_v2_aggregated_instance_usage_project_post**](docs/DefaultApi.md#fetch_usage_group_by_project_api_v2_aggregated_instance_usage_project_post) | **POST** /api/v2/aggregated_instance_usage/project | Fetch Usage Group By Project
|
166
168
|
*DefaultApi* | [**fetch_usage_group_by_user_api_v2_aggregated_instance_usage_user_post**](docs/DefaultApi.md#fetch_usage_group_by_user_api_v2_aggregated_instance_usage_user_post) | **POST** /api/v2/aggregated_instance_usage/user | Fetch Usage Group By User
|
@@ -193,6 +195,7 @@ Class | Method | HTTP request | Description
|
|
193
195
|
*DefaultApi* | [**get_cron_job_api_v2_experimental_cron_jobs_cron_job_id_get**](docs/DefaultApi.md#get_cron_job_api_v2_experimental_cron_jobs_cron_job_id_get) | **GET** /api/v2/experimental_cron_jobs/{cron_job_id} | Get Cron Job
|
194
196
|
*DefaultApi* | [**get_dags_api_v2_dataset_runs_dags_get**](docs/DefaultApi.md#get_dags_api_v2_dataset_runs_dags_get) | **GET** /api/v2/dataset_runs/dags | Get Dags
|
195
197
|
*DefaultApi* | [**get_dashboard_api_v2_dataset_runs_get**](docs/DefaultApi.md#get_dashboard_api_v2_dataset_runs_get) | **GET** /api/v2/dataset_runs/ | Get Dashboard
|
198
|
+
*DefaultApi* | [**get_databricks_connection_api_v2_integrations_connections_databricks_connection_id_get**](docs/DefaultApi.md#get_databricks_connection_api_v2_integrations_connections_databricks_connection_id_get) | **GET** /api/v2/integrations/connections/databricks/{connection_id} | Get Databricks Connection
|
196
199
|
*DefaultApi* | [**get_dataset_api_v2_datasets_dataset_id_get**](docs/DefaultApi.md#get_dataset_api_v2_datasets_dataset_id_get) | **GET** /api/v2/datasets/{dataset_id} | Get Dataset
|
197
200
|
*DefaultApi* | [**get_dataset_download_info_api_v2_datasets_download_info_get**](docs/DefaultApi.md#get_dataset_download_info_api_v2_datasets_download_info_get) | **GET** /api/v2/datasets/download_info | Get Dataset Download Info
|
198
201
|
*DefaultApi* | [**get_dataset_download_url_api_v2_datasets_download_get**](docs/DefaultApi.md#get_dataset_download_url_api_v2_datasets_download_get) | **GET** /api/v2/datasets/download | Get Dataset Download Url
|
@@ -226,6 +229,7 @@ Class | Method | HTTP request | Description
|
|
226
229
|
*DefaultApi* | [**get_model_api_v2_llm_models_model_id_get**](docs/DefaultApi.md#get_model_api_v2_llm_models_model_id_get) | **GET** /api/v2/llm/models/{model_id} | Get Model
|
227
230
|
*DefaultApi* | [**get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get**](docs/DefaultApi.md#get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get) | **GET** /api/v2/llm/models/get_by_job_id/{job_id} | Get Model By Job Id
|
228
231
|
*DefaultApi* | [**get_nodes_api_v2_cluster_dashboard_get**](docs/DefaultApi.md#get_nodes_api_v2_cluster_dashboard_get) | **GET** /api/v2/cluster_dashboard/ | Get Nodes
|
232
|
+
*DefaultApi* | [**get_oauth_login_url_api_v2_integrations_oauth_login_get**](docs/DefaultApi.md#get_oauth_login_url_api_v2_integrations_oauth_login_get) | **GET** /api/v2/integrations/oauth/login | Get Oauth Login Url
|
229
233
|
*DefaultApi* | [**get_operator_events_api_v2_dataset_runs_operator_events_get**](docs/DefaultApi.md#get_operator_events_api_v2_dataset_runs_operator_events_get) | **GET** /api/v2/dataset_runs/operator_events | Get Operator Events
|
230
234
|
*DefaultApi* | [**get_operator_metrics_api_v2_dataset_runs_operator_get**](docs/DefaultApi.md#get_operator_metrics_api_v2_dataset_runs_operator_get) | **GET** /api/v2/dataset_runs/operator | Get Operator Metrics
|
231
235
|
*DefaultApi* | [**get_or_create_build_from_image_uri_api_v2_builds_get_or_create_build_from_image_uri_post**](docs/DefaultApi.md#get_or_create_build_from_image_uri_api_v2_builds_get_or_create_build_from_image_uri_post) | **POST** /api/v2/builds/get_or_create_build_from_image_uri | Get Or Create Build From Image Uri
|
@@ -283,9 +287,12 @@ Class | Method | HTTP request | Description
|
|
283
287
|
*DefaultApi* | [**list_api_keys_for_admin_api_v2_users_admin_api_keys_get**](docs/DefaultApi.md#list_api_keys_for_admin_api_v2_users_admin_api_keys_get) | **GET** /api/v2/users/admin/api_keys | List Api Keys For Admin
|
284
288
|
*DefaultApi* | [**list_application_templates_api_v2_application_templates_get**](docs/DefaultApi.md#list_application_templates_api_v2_application_templates_get) | **GET** /api/v2/application_templates/ | List Application Templates
|
285
289
|
*DefaultApi* | [**list_builds_api_v2_builds_get**](docs/DefaultApi.md#list_builds_api_v2_builds_get) | **GET** /api/v2/builds/ | List Builds
|
290
|
+
*DefaultApi* | [**list_catalogs_in_connection_api_v2_data_catalogs_connections_connection_id_catalogs_get**](docs/DefaultApi.md#list_catalogs_in_connection_api_v2_data_catalogs_connections_connection_id_catalogs_get) | **GET** /api/v2/data_catalogs/connections/{connection_id}/catalogs | List Catalogs In Connection
|
286
291
|
*DefaultApi* | [**list_clouds_api_v2_clouds_get**](docs/DefaultApi.md#list_clouds_api_v2_clouds_get) | **GET** /api/v2/clouds/ | List Clouds
|
287
292
|
*DefaultApi* | [**list_configurations_api_v2_organization_configurations_get**](docs/DefaultApi.md#list_configurations_api_v2_organization_configurations_get) | **GET** /api/v2/organization_configurations/ | List Configurations
|
288
293
|
*DefaultApi* | [**list_cron_jobs_api_v2_experimental_cron_jobs_get**](docs/DefaultApi.md#list_cron_jobs_api_v2_experimental_cron_jobs_get) | **GET** /api/v2/experimental_cron_jobs/ | List Cron Jobs
|
294
|
+
*DefaultApi* | [**list_data_catalog_connections_api_v2_data_catalogs_connections_get**](docs/DefaultApi.md#list_data_catalog_connections_api_v2_data_catalogs_connections_get) | **GET** /api/v2/data_catalogs/connections | List Data Catalog Connections
|
295
|
+
*DefaultApi* | [**list_databricks_connections_api_v2_integrations_connections_databricks_get**](docs/DefaultApi.md#list_databricks_connections_api_v2_integrations_connections_databricks_get) | **GET** /api/v2/integrations/connections/databricks | List Databricks Connections
|
289
296
|
*DefaultApi* | [**list_dataset_versions_api_v2_datasets_versions_get**](docs/DefaultApi.md#list_dataset_versions_api_v2_datasets_versions_get) | **GET** /api/v2/datasets/versions | List Dataset Versions
|
290
297
|
*DefaultApi* | [**list_datasets_api_v2_datasets_get**](docs/DefaultApi.md#list_datasets_api_v2_datasets_get) | **GET** /api/v2/datasets/ | List Datasets
|
291
298
|
*DefaultApi* | [**list_decorated_clusters_api_v2_decorated_sessions_get**](docs/DefaultApi.md#list_decorated_clusters_api_v2_decorated_sessions_get) | **GET** /api/v2/decorated_sessions/ | List Decorated Clusters
|
@@ -318,6 +325,7 @@ Class | Method | HTTP request | Description
|
|
318
325
|
*DefaultApi* | [**list_workspaces_api_v2_experimental_workspaces_get**](docs/DefaultApi.md#list_workspaces_api_v2_experimental_workspaces_get) | **GET** /api/v2/experimental_workspaces/ | List Workspaces
|
319
326
|
*DefaultApi* | [**login_user_api_v2_users_login_post**](docs/DefaultApi.md#login_user_api_v2_users_login_post) | **POST** /api/v2/users/login | Login User
|
320
327
|
*DefaultApi* | [**logout_user_api_v2_users_logout_post**](docs/DefaultApi.md#logout_user_api_v2_users_logout_post) | **POST** /api/v2/users/logout | Logout User
|
328
|
+
*DefaultApi* | [**oauth_callback_api_v2_integrations_oauth_callback_get**](docs/DefaultApi.md#oauth_callback_api_v2_integrations_oauth_callback_get) | **GET** /api/v2/integrations/oauth/callback | Oauth Callback
|
321
329
|
*DefaultApi* | [**patch_workspace_api_v2_experimental_workspaces_workspace_id_patch**](docs/DefaultApi.md#patch_workspace_api_v2_experimental_workspaces_workspace_id_patch) | **PATCH** /api/v2/experimental_workspaces/{workspace_id} | Patch Workspace
|
322
330
|
*DefaultApi* | [**pause_cron_job_api_v2_experimental_cron_jobs_cron_job_id_pause_post**](docs/DefaultApi.md#pause_cron_job_api_v2_experimental_cron_jobs_cron_job_id_pause_post) | **POST** /api/v2/experimental_cron_jobs/{cron_job_id}/pause | Pause Cron Job
|
323
331
|
*DefaultApi* | [**produce_analytics_event_api_v2_analytics_post**](docs/DefaultApi.md#produce_analytics_event_api_v2_analytics_post) | **POST** /api/v2/analytics/ | Produce Analytics Event
|
@@ -337,6 +345,7 @@ Class | Method | HTTP request | Description
|
|
337
345
|
*DefaultApi* | [**redirect_to_tools_api_v2_services_v2_service_id_tools_get**](docs/DefaultApi.md#redirect_to_tools_api_v2_services_v2_service_id_tools_get) | **GET** /api/v2/services-v2/{service_id}/tools | Redirect To Tools
|
338
346
|
*DefaultApi* | [**register_api_v2_kubernetes_manager_register_post**](docs/DefaultApi.md#register_api_v2_kubernetes_manager_register_post) | **POST** /api/v2/kubernetes_manager/register | Register
|
339
347
|
*DefaultApi* | [**register_build_api_v2_anyscaled_register_build_post**](docs/DefaultApi.md#register_build_api_v2_anyscaled_register_build_post) | **POST** /api/v2/anyscaled/register_build | Register Build
|
348
|
+
*DefaultApi* | [**register_databricks_connection_api_v2_integrations_connections_databricks_post**](docs/DefaultApi.md#register_databricks_connection_api_v2_integrations_connections_databricks_post) | **POST** /api/v2/integrations/connections/databricks | Register Databricks Connection
|
340
349
|
*DefaultApi* | [**register_machine_api_v2_anyscaled_register_machine_post**](docs/DefaultApi.md#register_machine_api_v2_anyscaled_register_machine_post) | **POST** /api/v2/anyscaled/register_machine | Register Machine
|
341
350
|
*DefaultApi* | [**register_user_api_v2_users_post**](docs/DefaultApi.md#register_user_api_v2_users_post) | **POST** /api/v2/users/ | Register User
|
342
351
|
*DefaultApi* | [**register_v2_api_v2_anyscaled_register_v2_post**](docs/DefaultApi.md#register_v2_api_v2_anyscaled_register_v2_post) | **POST** /api/v2/anyscaled/register_v2 | Register V2
|
@@ -364,6 +373,7 @@ Class | Method | HTTP request | Description
|
|
364
373
|
*DefaultApi* | [**search_tags_api_v2_tags_get**](docs/DefaultApi.md#search_tags_api_v2_tags_get) | **GET** /api/v2/tags/ | Search Tags
|
365
374
|
*DefaultApi* | [**set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch**](docs/DefaultApi.md#set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id}/status | Set Resource Quota Status
|
366
375
|
*DefaultApi* | [**show_one_time_password_source_api_v2_users_show_otp_source_post**](docs/DefaultApi.md#show_one_time_password_source_api_v2_users_show_otp_source_post) | **POST** /api/v2/users/show_otp_source | Show One Time Password Source
|
376
|
+
*DefaultApi* | [**sso_admin_link_api_v2_organizations_organization_id_sso_admin_link_get**](docs/DefaultApi.md#sso_admin_link_api_v2_organizations_organization_id_sso_admin_link_get) | **GET** /api/v2/organizations/{organization_id}/sso_admin_link | Sso Admin Link
|
367
377
|
*DefaultApi* | [**sso_login_info_api_v2_users_sso_login_info_get**](docs/DefaultApi.md#sso_login_info_api_v2_users_sso_login_info_get) | **GET** /api/v2/users/sso_login_info | Sso Login Info
|
368
378
|
*DefaultApi* | [**sso_login_test_api_v2_users_sso_login_test_get**](docs/DefaultApi.md#sso_login_test_api_v2_users_sso_login_test_get) | **GET** /api/v2/users/sso_login_test | Sso Login Test
|
369
379
|
*DefaultApi* | [**start_session_api_v2_sessions_session_id_start_post**](docs/DefaultApi.md#start_session_api_v2_sessions_session_id_start_post) | **POST** /api/v2/sessions/{session_id}/start | Start Session
|
@@ -397,6 +407,7 @@ Class | Method | HTTP request | Description
|
|
397
407
|
*DefaultApi* | [**update_resource_notification_api_v2_resource_notifications_resource_notification_id_put**](docs/DefaultApi.md#update_resource_notification_api_v2_resource_notifications_resource_notification_id_put) | **PUT** /api/v2/resource_notifications/{resource_notification_id} | Update Resource Notification
|
398
408
|
*DefaultApi* | [**update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch**](docs/DefaultApi.md#update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id} | Update Resource Quota
|
399
409
|
*DefaultApi* | [**update_system_cluster_config_api_v2_clouds_cloud_id_update_system_cluster_config_put**](docs/DefaultApi.md#update_system_cluster_config_api_v2_clouds_cloud_id_update_system_cluster_config_put) | **PUT** /api/v2/clouds/{cloud_id}/update_system_cluster_config | Update System Cluster Config
|
410
|
+
*DefaultApi* | [**update_template_api_v2_workspace_templates_template_id_put**](docs/DefaultApi.md#update_template_api_v2_workspace_templates_template_id_put) | **PUT** /api/v2/workspace_templates/{template_id} | Update Template
|
400
411
|
*DefaultApi* | [**upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post**](docs/DefaultApi.md#upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post) | **POST** /api/v2/session_commands/{session_command_id}/upload_logs | Upload Session Command Logs
|
401
412
|
*DefaultApi* | [**upsert_billing_version_api_v2_organization_billing_billing_versions_put**](docs/DefaultApi.md#upsert_billing_version_api_v2_organization_billing_billing_versions_put) | **PUT** /api/v2/organization_billing/billing_versions | Upsert Billing Version
|
402
413
|
*DefaultApi* | [**upsert_resource_tags_api_v2_tags_resource_put**](docs/DefaultApi.md#upsert_resource_tags_api_v2_tags_resource_put) | **PUT** /api/v2/tags/resource | Upsert Resource Tags
|
@@ -550,6 +561,7 @@ Class | Method | HTTP request | Description
|
|
550
561
|
- [ComputeTemplateQuery](docs/ComputeTemplateQuery.md)
|
551
562
|
- [ComputetemplateResponse](docs/ComputetemplateResponse.md)
|
552
563
|
- [ComputetemplateconfigResponse](docs/ComputetemplateconfigResponse.md)
|
564
|
+
- [ConnectionType](docs/ConnectionType.md)
|
553
565
|
- [CreateAioaCloudWaitlist](docs/CreateAioaCloudWaitlist.md)
|
554
566
|
- [CreateAnalyticsEvent](docs/CreateAnalyticsEvent.md)
|
555
567
|
- [CreateAppConfig](docs/CreateAppConfig.md)
|
@@ -605,6 +617,18 @@ Class | Method | HTTP request | Description
|
|
605
617
|
- [CreditsV2](docs/CreditsV2.md)
|
606
618
|
- [CustomerAlertStatus](docs/CustomerAlertStatus.md)
|
607
619
|
- [DashboardPanel](docs/DashboardPanel.md)
|
620
|
+
- [DataCatalog](docs/DataCatalog.md)
|
621
|
+
- [DataCatalogConnection](docs/DataCatalogConnection.md)
|
622
|
+
- [DataCatalogConnectionStatus](docs/DataCatalogConnectionStatus.md)
|
623
|
+
- [DataCatalogProvider](docs/DataCatalogProvider.md)
|
624
|
+
- [DatabricksConnectionConfig](docs/DatabricksConnectionConfig.md)
|
625
|
+
- [DatabricksConnectionInfo](docs/DatabricksConnectionInfo.md)
|
626
|
+
- [DatabricksConnectionResponse](docs/DatabricksConnectionResponse.md)
|
627
|
+
- [DatabricksRegisterRequest](docs/DatabricksRegisterRequest.md)
|
628
|
+
- [DatabricksconnectioninfoResponse](docs/DatabricksconnectioninfoResponse.md)
|
629
|
+
- [DatabricksconnectionresponseResponse](docs/DatabricksconnectionresponseResponse.md)
|
630
|
+
- [DatacatalogListResponse](docs/DatacatalogListResponse.md)
|
631
|
+
- [DatacatalogconnectionListResponse](docs/DatacatalogconnectionListResponse.md)
|
608
632
|
- [DataplaneServices](docs/DataplaneServices.md)
|
609
633
|
- [Dataset](docs/Dataset.md)
|
610
634
|
- [DatasetDag](docs/DatasetDag.md)
|
@@ -684,6 +708,7 @@ Class | Method | HTTP request | Description
|
|
684
708
|
- [DescribesystemworkloadresponseResponse](docs/DescribesystemworkloadresponseResponse.md)
|
685
709
|
- [DetachMachinePoolFromCloudRequest](docs/DetachMachinePoolFromCloudRequest.md)
|
686
710
|
- [DetachmachinepoolfromcloudresponseResponse](docs/DetachmachinepoolfromcloudresponseResponse.md)
|
711
|
+
- [DomainVerification](docs/DomainVerification.md)
|
687
712
|
- [EditableCloudResource](docs/EditableCloudResource.md)
|
688
713
|
- [EditableCloudResourceGCP](docs/EditableCloudResourceGCP.md)
|
689
714
|
- [EmailVerificationRequest](docs/EmailVerificationRequest.md)
|
@@ -760,6 +785,7 @@ Class | Method | HTTP request | Description
|
|
760
785
|
- [KubernetesmanagerregistrationresponseResponse](docs/KubernetesmanagerregistrationresponseResponse.md)
|
761
786
|
- [LBResource](docs/LBResource.md)
|
762
787
|
- [LbresourceResponse](docs/LbresourceResponse.md)
|
788
|
+
- [ListDatabricksConnections](docs/ListDatabricksConnections.md)
|
763
789
|
- [ListMachinePoolsResponse](docs/ListMachinePoolsResponse.md)
|
764
790
|
- [ListMachinesResponse](docs/ListMachinesResponse.md)
|
765
791
|
- [ListRaySessionsResponse](docs/ListRaySessionsResponse.md)
|
@@ -830,6 +856,9 @@ Class | Method | HTTP request | Description
|
|
830
856
|
- [NotificationChannelEmailConfig](docs/NotificationChannelEmailConfig.md)
|
831
857
|
- [NotificationChannelSlackConfig](docs/NotificationChannelSlackConfig.md)
|
832
858
|
- [NotificationChannelWebhookConfig](docs/NotificationChannelWebhookConfig.md)
|
859
|
+
- [OAuthConnectionResponse](docs/OAuthConnectionResponse.md)
|
860
|
+
- [OauthAuthUrlResponse](docs/OauthAuthUrlResponse.md)
|
861
|
+
- [OauthconnectionresponseResponse](docs/OauthconnectionresponseResponse.md)
|
833
862
|
- [ObjectStorage](docs/ObjectStorage.md)
|
834
863
|
- [OperationError](docs/OperationError.md)
|
835
864
|
- [OperationProgress](docs/OperationProgress.md)
|
@@ -926,6 +955,9 @@ Class | Method | HTTP request | Description
|
|
926
955
|
- [RunAttemptStatus](docs/RunAttemptStatus.md)
|
927
956
|
- [RunStatus](docs/RunStatus.md)
|
928
957
|
- [S3DownloadLocation](docs/S3DownloadLocation.md)
|
958
|
+
- [SSOConfig](docs/SSOConfig.md)
|
959
|
+
- [SSOConnection](docs/SSOConnection.md)
|
960
|
+
- [SSOConnectionState](docs/SSOConnectionState.md)
|
929
961
|
- [SSOLoginInfo](docs/SSOLoginInfo.md)
|
930
962
|
- [SSOMode](docs/SSOMode.md)
|
931
963
|
- [SUPPORTEDBASEIMAGESENUM](docs/SUPPORTEDBASEIMAGESENUM.md)
|
@@ -969,6 +1001,7 @@ Class | Method | HTTP request | Description
|
|
969
1001
|
- [ShowOTPSourceReturnApiModel](docs/ShowOTPSourceReturnApiModel.md)
|
970
1002
|
- [ShowotpsourcereturnapimodelResponse](docs/ShowotpsourcereturnapimodelResponse.md)
|
971
1003
|
- [SortOrder](docs/SortOrder.md)
|
1004
|
+
- [SsoconfigResponse](docs/SsoconfigResponse.md)
|
972
1005
|
- [SsologininfoResponse](docs/SsologininfoResponse.md)
|
973
1006
|
- [StartSessionOptions](docs/StartSessionOptions.md)
|
974
1007
|
- [StopSessionOptions](docs/StopSessionOptions.md)
|
@@ -1026,17 +1059,20 @@ Class | Method | HTTP request | Description
|
|
1026
1059
|
- [UpdatePaymentInfo](docs/UpdatePaymentInfo.md)
|
1027
1060
|
- [UpdateProjectCollaborator](docs/UpdateProjectCollaborator.md)
|
1028
1061
|
- [UpdateResourceQuota](docs/UpdateResourceQuota.md)
|
1062
|
+
- [UpdateWorkspaceTemplate](docs/UpdateWorkspaceTemplate.md)
|
1029
1063
|
- [UpdatemachinepoolresponseResponse](docs/UpdatemachinepoolresponseResponse.md)
|
1030
1064
|
- [UploadSessionCommandLogsLocations](docs/UploadSessionCommandLogsLocations.md)
|
1031
1065
|
- [UploadsessioncommandlogslocationsResponse](docs/UploadsessioncommandlogslocationsResponse.md)
|
1032
1066
|
- [UpsertResourceTagsRequest](docs/UpsertResourceTagsRequest.md)
|
1033
1067
|
- [UsageByCloud](docs/UsageByCloud.md)
|
1034
1068
|
- [UsageByCluster](docs/UsageByCluster.md)
|
1069
|
+
- [UsageByClusterType](docs/UsageByClusterType.md)
|
1035
1070
|
- [UsageByInstanceType](docs/UsageByInstanceType.md)
|
1036
1071
|
- [UsageByProject](docs/UsageByProject.md)
|
1037
1072
|
- [UsageByUser](docs/UsageByUser.md)
|
1038
1073
|
- [UsagebycloudListResponse](docs/UsagebycloudListResponse.md)
|
1039
1074
|
- [UsagebyclusterListResponse](docs/UsagebyclusterListResponse.md)
|
1075
|
+
- [UsagebyclustertypeListResponse](docs/UsagebyclustertypeListResponse.md)
|
1040
1076
|
- [UsagebyinstancetypeListResponse](docs/UsagebyinstancetypeListResponse.md)
|
1041
1077
|
- [UsagebyprojectListResponse](docs/UsagebyprojectListResponse.md)
|
1042
1078
|
- [UsagebyuserListResponse](docs/UsagebyuserListResponse.md)
|
@@ -1049,6 +1085,7 @@ Class | Method | HTTP request | Description
|
|
1049
1085
|
- [UtmFields](docs/UtmFields.md)
|
1050
1086
|
- [ValidateOTPParamsApiModel](docs/ValidateOTPParamsApiModel.md)
|
1051
1087
|
- [ValidationError](docs/ValidationError.md)
|
1088
|
+
- [ValidationStatus](docs/ValidationStatus.md)
|
1052
1089
|
- [WaitlistStatusResponse](docs/WaitlistStatusResponse.md)
|
1053
1090
|
- [WaitlistStatusType](docs/WaitlistStatusType.md)
|
1054
1091
|
- [WaitliststatusresponseResponse](docs/WaitliststatusresponseResponse.md)
|