anyscale 0.26.28__py3-none-any.whl → 0.26.29__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 +0 -18
- anyscale/_private/docgen/api.md +0 -125
- anyscale/_private/docgen/models.md +0 -111
- anyscale/client/README.md +0 -6
- anyscale/client/openapi_client/__init__.py +0 -4
- anyscale/client/openapi_client/api/default_api.py +0 -228
- anyscale/client/openapi_client/models/__init__.py +0 -4
- anyscale/client/openapi_client/models/workload_info.py +59 -3
- anyscale/commands/machine_pool_commands.py +11 -9
- anyscale/commands/service_commands.py +4 -2
- anyscale/sdk/anyscale_client/__init__.py +0 -11
- anyscale/sdk/anyscale_client/api/default_api.py +140 -1433
- anyscale/sdk/anyscale_client/models/__init__.py +0 -11
- anyscale/service/__init__.py +4 -1
- anyscale/service/_private/service_sdk.py +5 -0
- anyscale/service/commands.py +4 -2
- anyscale/version.py +1 -1
- {anyscale-0.26.28.dist-info → anyscale-0.26.29.dist-info}/METADATA +1 -1
- {anyscale-0.26.28.dist-info → anyscale-0.26.29.dist-info}/RECORD +24 -39
- anyscale/client/openapi_client/models/serve_deployment_fast_api_docs_status.py +0 -123
- anyscale/client/openapi_client/models/servedeploymentfastapidocsstatus_response.py +0 -121
- anyscale/client/openapi_client/models/web_terminal.py +0 -121
- anyscale/client/openapi_client/models/webterminal_response.py +0 -121
- anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py +0 -123
- anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py +0 -121
- anyscale/sdk/anyscale_client/models/create_cloud.py +0 -518
- anyscale/sdk/anyscale_client/models/object_storage_config.py +0 -122
- anyscale/sdk/anyscale_client/models/object_storage_config_s3.py +0 -256
- anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py +0 -121
- anyscale/sdk/anyscale_client/models/session_operation.py +0 -266
- anyscale/sdk/anyscale_client/models/session_operation_type.py +0 -101
- anyscale/sdk/anyscale_client/models/sessionoperation_response.py +0 -121
- anyscale/sdk/anyscale_client/models/update_cloud.py +0 -150
- anyscale/sdk/anyscale_client/models/update_project.py +0 -150
- {anyscale-0.26.28.dist-info → anyscale-0.26.29.dist-info}/LICENSE +0 -0
- {anyscale-0.26.28.dist-info → anyscale-0.26.29.dist-info}/NOTICE +0 -0
- {anyscale-0.26.28.dist-info → anyscale-0.26.29.dist-info}/WHEEL +0 -0
- {anyscale-0.26.28.dist-info → anyscale-0.26.29.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.28.dist-info → anyscale-0.26.29.dist-info}/top_level.txt +0 -0
@@ -119,7 +119,6 @@ ALL_MODULES = [
|
|
119
119
|
"get_default_project": None,
|
120
120
|
"get_project": None,
|
121
121
|
"search_projects": None,
|
122
|
-
"update_project": None,
|
123
122
|
},
|
124
123
|
legacy_sdk_models=[
|
125
124
|
"CreateProject",
|
@@ -127,7 +126,6 @@ ALL_MODULES = [
|
|
127
126
|
"ProjectListResponse",
|
128
127
|
"ProjectResponse",
|
129
128
|
"ProjectsQuery",
|
130
|
-
"UpdateProject",
|
131
129
|
],
|
132
130
|
),
|
133
131
|
Module(
|
@@ -167,7 +165,6 @@ ALL_MODULES = [
|
|
167
165
|
legacy_sdk_commands={
|
168
166
|
"create_job": anyscale.job.submit,
|
169
167
|
"get_production_job": anyscale.job.status,
|
170
|
-
"get_session_for_job": anyscale.job.status,
|
171
168
|
"terminate_job": anyscale.job.terminate,
|
172
169
|
"fetch_job_logs": anyscale.job.get_logs,
|
173
170
|
"fetch_production_job_logs": anyscale.job.get_logs,
|
@@ -392,31 +389,26 @@ ALL_MODULES = [
|
|
392
389
|
cluster_env_commands.list,
|
393
390
|
],
|
394
391
|
legacy_sdk_commands={
|
395
|
-
"get_cluster_environment_build_operation": None,
|
396
392
|
"create_byod_cluster_environment_build": anyscale.image.build,
|
397
393
|
"create_cluster_environment_build": anyscale.image.build,
|
398
394
|
"find_cluster_environment_build_by_identifier": None,
|
399
395
|
"get_cluster_environment_build": None,
|
400
|
-
"get_cluster_environment_build_logs": None,
|
401
396
|
"get_default_cluster_environment_build": None,
|
402
397
|
"list_cluster_environment_builds": None,
|
403
398
|
"create_byod_cluster_environment": anyscale.image.build,
|
404
399
|
"create_cluster_environment": anyscale.image.build,
|
405
|
-
"delete_cluster_environment": None,
|
406
400
|
"get_cluster_environment": None,
|
407
401
|
"search_cluster_environments": None,
|
408
402
|
},
|
409
403
|
legacy_sdk_models=[
|
410
404
|
"ClusterEnvironment",
|
411
405
|
"ClusterEnvironmentBuild",
|
412
|
-
"ClusterEnvironmentBuildLogResponse",
|
413
406
|
"ClusterEnvironmentBuildOperation",
|
414
407
|
"ClusterEnvironmentBuildStatus",
|
415
408
|
"ClusterEnvironmentsQuery",
|
416
409
|
"ClusterenvironmentListResponse",
|
417
410
|
"ClusterenvironmentResponse",
|
418
411
|
"ClusterenvironmentbuildListResponse",
|
419
|
-
"ClusterenvironmentbuildlogresponseResponse",
|
420
412
|
"ClusterenvironmentbuildoperationResponse",
|
421
413
|
"CreateBYODClusterEnvironment",
|
422
414
|
"CreateBYODClusterEnvironmentBuild",
|
@@ -461,12 +453,9 @@ ALL_MODULES = [
|
|
461
453
|
cli_command_group_prefix={cloud_commands.cloud_config_update: "config"},
|
462
454
|
legacy_sdk_commands={
|
463
455
|
# limited support, no replacement yet
|
464
|
-
"create_cloud": None,
|
465
|
-
"delete_cloud": None,
|
466
456
|
"get_cloud": None,
|
467
457
|
"get_default_cloud": None,
|
468
458
|
"search_clouds": None,
|
469
|
-
"update_cloud": None,
|
470
459
|
},
|
471
460
|
legacy_sdk_models=[
|
472
461
|
"Cloud",
|
@@ -479,8 +468,6 @@ ALL_MODULES = [
|
|
479
468
|
"CloudTypes",
|
480
469
|
"CloudVersion",
|
481
470
|
"CloudsQuery",
|
482
|
-
"CreateCloud",
|
483
|
-
"UpdateCloud",
|
484
471
|
],
|
485
472
|
),
|
486
473
|
Module(
|
@@ -560,7 +547,6 @@ ALL_MODULES = [
|
|
560
547
|
legacy_sdk_commands={
|
561
548
|
"launch_cluster": None,
|
562
549
|
"launch_cluster_with_new_cluster_environment": None,
|
563
|
-
"archive_cluster": None,
|
564
550
|
"create_cluster": None,
|
565
551
|
"delete_cluster": None,
|
566
552
|
"get_cluster": None,
|
@@ -678,7 +664,6 @@ ALL_MODULES = [
|
|
678
664
|
machine_commands.list_machines,
|
679
665
|
],
|
680
666
|
legacy_sdk_commands={
|
681
|
-
"get_organization_temporary_object_storage_credentials": None,
|
682
667
|
"partial_update_organization": None,
|
683
668
|
"upsert_sso_config": None,
|
684
669
|
"upsert_test_sso_config": None,
|
@@ -698,9 +683,6 @@ ALL_MODULES = [
|
|
698
683
|
"IdleTerminationStatus",
|
699
684
|
"ListResponseMetadata",
|
700
685
|
"NodeType",
|
701
|
-
"ObjectStorageConfig",
|
702
|
-
"ObjectStorageConfigS3",
|
703
|
-
"ObjectstorageconfigResponse",
|
704
686
|
"OperationError",
|
705
687
|
"OperationProgress",
|
706
688
|
"OperationResult",
|
anyscale/_private/docgen/api.md
CHANGED
@@ -244,30 +244,6 @@ result = thread.get()
|
|
244
244
|
|
245
245
|
## Clouds
|
246
246
|
|
247
|
-
### create_cloud
|
248
|
-
|
249
|
-
Creates a Cloud.
|
250
|
-
|
251
|
-
Parameters
|
252
|
-
|
253
|
-
Name | Type | Description | Notes
|
254
|
-
------------- | ------------- | ------------- | -------------
|
255
|
-
`create_cloud` | [CreateCloud](./models.md#createcloud)| |
|
256
|
-
|
257
|
-
Returns [CloudResponse](./models.md#cloudresponse)
|
258
|
-
|
259
|
-
### delete_cloud
|
260
|
-
|
261
|
-
Deletes a Cloud. Will delete all clusters that are using this cloud. If any of those clusters are not terminated, this call will fail.
|
262
|
-
|
263
|
-
Parameters
|
264
|
-
|
265
|
-
Name | Type | Description | Notes
|
266
|
-
------------- | ------------- | ------------- | -------------
|
267
|
-
`cloud_id` | str| ID of the Cloud to delete. | Defaults to null
|
268
|
-
|
269
|
-
Returns void (empty response body)
|
270
|
-
|
271
247
|
### get_cloud
|
272
248
|
|
273
249
|
Retrieves a Cloud.
|
@@ -301,19 +277,6 @@ Name | Type | Description | Notes
|
|
301
277
|
|
302
278
|
Returns [CloudListResponse](./models.md#cloudlistresponse)
|
303
279
|
|
304
|
-
### update_cloud
|
305
|
-
|
306
|
-
Updates a Cloud.
|
307
|
-
|
308
|
-
Parameters
|
309
|
-
|
310
|
-
Name | Type | Description | Notes
|
311
|
-
------------- | ------------- | ------------- | -------------
|
312
|
-
`cloud_id` | str| ID of the Cloud to update. | Defaults to null
|
313
|
-
`update_cloud` | [UpdateCloud](./models.md#updatecloud)| |
|
314
|
-
|
315
|
-
Returns [CloudResponse](./models.md#cloudresponse)
|
316
|
-
|
317
280
|
## Cluster Computes
|
318
281
|
|
319
282
|
### create_cluster_compute
|
@@ -376,20 +339,6 @@ Name | Type | Description | Notes
|
|
376
339
|
|
377
340
|
Returns [ClustercomputeListResponse](./models.md#clustercomputelistresponse)
|
378
341
|
|
379
|
-
## Cluster Environment Build Operations
|
380
|
-
|
381
|
-
### get_cluster_environment_build_operation
|
382
|
-
|
383
|
-
Retrieves a Cluster Environment Build Operation.
|
384
|
-
|
385
|
-
Parameters
|
386
|
-
|
387
|
-
Name | Type | Description | Notes
|
388
|
-
------------- | ------------- | ------------- | -------------
|
389
|
-
`cluster_environment_build_operation_id` | str| ID of the Cluster Environment Build Operation to retrieve. | Defaults to null
|
390
|
-
|
391
|
-
Returns [ClusterenvironmentbuildoperationResponse](./models.md#clusterenvironmentbuildoperationresponse)
|
392
|
-
|
393
342
|
## Cluster Environment Builds
|
394
343
|
|
395
344
|
### create_byod_cluster_environment_build
|
@@ -440,18 +389,6 @@ Name | Type | Description | Notes
|
|
440
389
|
|
441
390
|
Returns [ClusterenvironmentbuildResponse](./models.md#clusterenvironmentbuildresponse)
|
442
391
|
|
443
|
-
### get_cluster_environment_build_logs
|
444
|
-
|
445
|
-
Retrieves logs for a Cluster Environment Build.
|
446
|
-
|
447
|
-
Parameters
|
448
|
-
|
449
|
-
Name | Type | Description | Notes
|
450
|
-
------------- | ------------- | ------------- | -------------
|
451
|
-
`cluster_environment_build_id` | str| ID of the Cluster Environment Build to retrieve logs for. | Defaults to null
|
452
|
-
|
453
|
-
Returns [ClusterenvironmentbuildlogresponseResponse](./models.md#clusterenvironmentbuildlogresponseresponse)
|
454
|
-
|
455
392
|
### get_default_cluster_environment_build
|
456
393
|
|
457
394
|
Retrieves a default cluster environment with the preferred attributes.
|
@@ -506,18 +443,6 @@ Name | Type | Description | Notes
|
|
506
443
|
|
507
444
|
Returns [ClusterenvironmentResponse](./models.md#clusterenvironmentresponse)
|
508
445
|
|
509
|
-
### delete_cluster_environment
|
510
|
-
|
511
|
-
Deletes a Cluster Environment.
|
512
|
-
|
513
|
-
Parameters
|
514
|
-
|
515
|
-
Name | Type | Description | Notes
|
516
|
-
------------- | ------------- | ------------- | -------------
|
517
|
-
`cluster_config_id` | str| ID of the Cluster Environment to delete. | Defaults to null
|
518
|
-
|
519
|
-
Returns void (empty response body)
|
520
|
-
|
521
446
|
### get_cluster_environment
|
522
447
|
|
523
448
|
Retrieves a Cluster Environment.
|
@@ -558,18 +483,6 @@ Returns [ClusteroperationResponse](./models.md#clusteroperationresponse)
|
|
558
483
|
|
559
484
|
## Clusters
|
560
485
|
|
561
|
-
### archive_cluster
|
562
|
-
|
563
|
-
Archives the cluster. It is a no-op if the cluster is already archived.
|
564
|
-
|
565
|
-
Parameters
|
566
|
-
|
567
|
-
Name | Type | Description | Notes
|
568
|
-
------------- | ------------- | ------------- | -------------
|
569
|
-
`cluster_id` | str| | Defaults to null
|
570
|
-
|
571
|
-
Returns void (empty response body)
|
572
|
-
|
573
486
|
### create_cluster
|
574
487
|
|
575
488
|
Creates a Cluster.
|
@@ -700,19 +613,6 @@ Returns [LogstreamResponse](./models.md#logstreamresponse)
|
|
700
613
|
|
701
614
|
## Organizations
|
702
615
|
|
703
|
-
### get_organization_temporary_object_storage_credentials
|
704
|
-
|
705
|
-
Retrieves temporary object storage config and credentials scoped to an organization and region.
|
706
|
-
|
707
|
-
Parameters
|
708
|
-
|
709
|
-
Name | Type | Description | Notes
|
710
|
-
------------- | ------------- | ------------- | -------------
|
711
|
-
`organization_id` | str| | Defaults to null
|
712
|
-
`region` | str| | Defaults to null
|
713
|
-
|
714
|
-
Returns [ObjectstorageconfigResponse](./models.md#objectstorageconfigresponse)
|
715
|
-
|
716
616
|
### partial_update_organization
|
717
617
|
|
718
618
|
Update an organization's requirement for Single Sign On (SSO). If SSO is required for an organization, SSO will be the only way to log in to it.
|
@@ -752,18 +652,6 @@ Name | Type | Description | Notes
|
|
752
652
|
|
753
653
|
Returns [ProductionjobResponse](./models.md#productionjobresponse)
|
754
654
|
|
755
|
-
### get_session_for_job
|
756
|
-
|
757
|
-
Get Session for Production Job
|
758
|
-
|
759
|
-
Parameters
|
760
|
-
|
761
|
-
Name | Type | Description | Notes
|
762
|
-
------------- | ------------- | ------------- | -------------
|
763
|
-
`production_job_id` | str| | Defaults to null
|
764
|
-
|
765
|
-
Returns [SessionResponse](./models.md#sessionresponse)
|
766
|
-
|
767
655
|
### list_production_jobs
|
768
656
|
|
769
657
|
|
@@ -855,19 +743,6 @@ Name | Type | Description | Notes
|
|
855
743
|
|
856
744
|
Returns [ProjectListResponse](./models.md#projectlistresponse)
|
857
745
|
|
858
|
-
### update_project
|
859
|
-
|
860
|
-
Updates a Project.
|
861
|
-
|
862
|
-
Parameters
|
863
|
-
|
864
|
-
Name | Type | Description | Notes
|
865
|
-
------------- | ------------- | ------------- | -------------
|
866
|
-
`project_id` | str| ID of the Project to update. | Defaults to null
|
867
|
-
`update_project` | [UpdateProject](./models.md#updateproject)| |
|
868
|
-
|
869
|
-
Returns [ProjectResponse](./models.md#projectresponse)
|
870
|
-
|
871
746
|
## Schedules
|
872
747
|
|
873
748
|
### create_or_update_schedule
|
@@ -405,13 +405,6 @@ Name | Type | Description | Notes
|
|
405
405
|
**cloud_id** | **str** | The build cloud associated with this build. If None, the build is a v1 build. | [optional] [default to null]
|
406
406
|
**digest** | **str** | The digest of the image for this Build. | [optional] [default to null]
|
407
407
|
|
408
|
-
## ClusterEnvironmentBuildLogResponse
|
409
|
-
|
410
|
-
|
411
|
-
Name | Type | Description | Notes
|
412
|
-
------------ | ------------- | ------------- | -------------
|
413
|
-
**logs** | **str** | Logs of the build. | [default to null]
|
414
|
-
|
415
408
|
## ClusterEnvironmentBuildOperation
|
416
409
|
|
417
410
|
Describes a long running operation that will eventually complete. Consider this an abstract class. Specific kinds of operations should subclass this.
|
@@ -589,14 +582,6 @@ Name | Type | Description | Notes
|
|
589
582
|
------------ | ------------- | ------------- | -------------
|
590
583
|
**result** | [**ClusterEnvironmentBuild**](#clusterenvironmentbuild) | | [default to null]
|
591
584
|
|
592
|
-
## ClusterenvironmentbuildlogresponseResponse
|
593
|
-
|
594
|
-
A response from the API. Contains a field \"result\" which has the contents of the response.
|
595
|
-
|
596
|
-
Name | Type | Description | Notes
|
597
|
-
------------ | ------------- | ------------- | -------------
|
598
|
-
**result** | [**ClusterEnvironmentBuildLogResponse**](#clusterenvironmentbuildlogresponse) | | [default to null]
|
599
|
-
|
600
585
|
## ClusterenvironmentbuildoperationResponse
|
601
586
|
|
602
587
|
A response from the API. Contains a field \"result\" which has the contents of the response.
|
@@ -751,28 +736,6 @@ Name | Type | Description | Notes
|
|
751
736
|
**env_vars** | [**object**](#) | Environment variables in the docker image that will be used at runtime. | [optional] [default to null]
|
752
737
|
**registry_login_secret** | **str** | The name or identifier of a secret containing credentials to authenticate to the docker registry hosting the image. | [optional] [default to null]
|
753
738
|
|
754
|
-
## CreateCloud
|
755
|
-
|
756
|
-
Model used to create a Cloud.
|
757
|
-
|
758
|
-
Name | Type | Description | Notes
|
759
|
-
------------ | ------------- | ------------- | -------------
|
760
|
-
**name** | **str** | Name of this Cloud. | [default to null]
|
761
|
-
**provider** | [**CloudProviders**](#cloudproviders) | Provider of this Cloud (e.g. AWS). | [default to null]
|
762
|
-
**compute_stack** | [**ComputeStack**](#computestack) | The compute stack associated with this cloud's primary cloud resource. | [optional] [default to null]
|
763
|
-
**region** | **str** | Region this Cloud is operating in. This value needs to be supported by this Cloud's provider. (e.g. us-west-2) | [default to null]
|
764
|
-
**credentials** | **str** | Credentials needed to interact with this Cloud. | [default to null]
|
765
|
-
**config** | [**CloudConfig**](#cloudconfig) | Additional configurable properties of this Cloud. | [optional] [default to null]
|
766
|
-
**is_k8s** | **bool** | Whether this cloud is managed via Kubernetes. | [optional] [default to false]
|
767
|
-
**is_aioa** | **bool** | Whether this cloud is an AIOA cloud. | [optional] [default to false]
|
768
|
-
**availability_zones** | **List[str]** | The availability zones that instances of this cloud are allowed to be launched in. | [optional] [default to null]
|
769
|
-
**is_bring_your_own_resource** | **bool** | Whether the resources of this cloud are provided by the customer. | [optional] [default to null]
|
770
|
-
**is_private_cloud** | **bool** | Whether this cloud is a private cloud. | [optional] [default to false]
|
771
|
-
**cluster_management_stack_version** | [**ClusterManagementStackVersions**](#clustermanagementstackversions) | The cluster management stack version of the cloud. | [optional] [default to null]
|
772
|
-
**is_private_service_cloud** | **bool** | Whether services created in this cloud should be private. | [optional] [default to null]
|
773
|
-
**auto_add_user** | **bool** | Whether all users in the organization should be automatically added to this cloud. This field is only relevant for organizations with cloud isolation enabled, because all users in the organization automatically have access to all clouds if cloud isolation is not enabled. | [optional] [default to false]
|
774
|
-
**external_id** | **str** | The trust policy external ID specified by the user for the cloud control plane role. It must start with the organization ID. | [optional] [default to null]
|
775
|
-
|
776
739
|
## CreateCluster
|
777
740
|
|
778
741
|
Model used to create a new Cluster.
|
@@ -1164,34 +1127,6 @@ The type of node (head or worker).
|
|
1164
1127
|
Possible Values:
|
1165
1128
|
['head-node', 'worker-nodes', 'unknown']
|
1166
1129
|
|
1167
|
-
## ObjectStorageConfig
|
1168
|
-
|
1169
|
-
Field representing a object storage configuration for an organization in a region
|
1170
|
-
|
1171
|
-
Name | Type | Description | Notes
|
1172
|
-
------------ | ------------- | ------------- | -------------
|
1173
|
-
**s3** | [**ObjectStorageConfigS3**](#objectstorageconfigs3) | S3 configuration | [optional] [default to null]
|
1174
|
-
|
1175
|
-
## ObjectStorageConfigS3
|
1176
|
-
|
1177
|
-
|
1178
|
-
Name | Type | Description | Notes
|
1179
|
-
------------ | ------------- | ------------- | -------------
|
1180
|
-
**region** | **str** | | [default to null]
|
1181
|
-
**bucket** | **str** | | [default to null]
|
1182
|
-
**path** | **str** | | [default to null]
|
1183
|
-
**aws_access_key_id** | **str** | | [default to null]
|
1184
|
-
**aws_secret_access_key** | **str** | | [default to null]
|
1185
|
-
**aws_session_token** | **str** | | [default to null]
|
1186
|
-
|
1187
|
-
## ObjectstorageconfigResponse
|
1188
|
-
|
1189
|
-
A response from the API. Contains a field \"result\" which has the contents of the response.
|
1190
|
-
|
1191
|
-
Name | Type | Description | Notes
|
1192
|
-
------------ | ------------- | ------------- | -------------
|
1193
|
-
**result** | [**ObjectStorageConfig**](#objectstorageconfig) | | [default to null]
|
1194
|
-
|
1195
1130
|
## OperationError
|
1196
1131
|
|
1197
1132
|
The response of this operation in case of failure
|
@@ -1716,26 +1651,6 @@ Name | Type | Description | Notes
|
|
1716
1651
|
**idle_termination_status** | [**IdleTerminationStatus**](#idleterminationstatus) | The status of autosuspend | [optional] [default to null]
|
1717
1652
|
**ray_dashboard_snapshot_last_reported_at** | **datetime** | The time of the last snapshot recorded from the ray dashboard | [optional] [default to null]
|
1718
1653
|
|
1719
|
-
## SessionOperation
|
1720
|
-
|
1721
|
-
Describes a long running session operation that will eventually complete.
|
1722
|
-
|
1723
|
-
Name | Type | Description | Notes
|
1724
|
-
------------ | ------------- | ------------- | -------------
|
1725
|
-
**id** | **str** | ID of this operation. | [default to null]
|
1726
|
-
**completed** | **bool** | Boolean indicating if this operation is completed. | [default to null]
|
1727
|
-
**progress** | [**OperationProgress**](#operationprogress) | Details about the progress of this operation at the time of the request. This will be absent for completed operations. | [optional] [default to null]
|
1728
|
-
**result** | [**OperationResult**](#operationresult) | The result of this operation after it has completed. This is always provided when the operation is complete. | [optional] [default to null]
|
1729
|
-
**session_id** | **str** | ID of the Session that is being updated. | [default to null]
|
1730
|
-
**session_operation_type** | [**SessionOperationType**](#sessionoperationtype) | The variety of operation being performed: start sets the session's goal state to Running, stop sets the session's goal state to Stopped, terminate sets the session's goal state to Terminated | [default to null]
|
1731
|
-
|
1732
|
-
## SessionOperationType
|
1733
|
-
|
1734
|
-
The type of session operation.
|
1735
|
-
|
1736
|
-
Possible Values:
|
1737
|
-
['start', 'stop', 'terminate']
|
1738
|
-
|
1739
1654
|
## SessionResponse
|
1740
1655
|
|
1741
1656
|
A response from the API. Contains a field \"result\" which has the contents of the response.
|
@@ -1776,14 +1691,6 @@ Name | Type | Description | Notes
|
|
1776
1691
|
**stop_progress** | **str** | | [optional] [default to null]
|
1777
1692
|
**stop_error** | **str** | | [optional] [default to null]
|
1778
1693
|
|
1779
|
-
## SessionoperationResponse
|
1780
|
-
|
1781
|
-
A response from the API. Contains a field \"result\" which has the contents of the response.
|
1782
|
-
|
1783
|
-
Name | Type | Description | Notes
|
1784
|
-
------------ | ------------- | ------------- | -------------
|
1785
|
-
**result** | [**SessionOperation**](#sessionoperation) | | [default to null]
|
1786
|
-
|
1787
1694
|
## SortByClauseJobsSortField
|
1788
1695
|
|
1789
1696
|
This model is used in the backend to represent the SQL ORDER BY clauses.
|
@@ -1883,15 +1790,6 @@ Name | Type | Description | Notes
|
|
1883
1790
|
**machine_pool_name** | **str** | The machine pool name the instance belongs to if it is PCP machine type, otherwise it is empty string. | [default to null]
|
1884
1791
|
**billing_error_message** | **str** | If there was an error in the price calculation for this instance, this message should be shown to the user. | [optional] [default to null]
|
1885
1792
|
|
1886
|
-
## UpdateCloud
|
1887
|
-
|
1888
|
-
Updateable fields for a Cloud. If a field is absent, it will not be updated.
|
1889
|
-
|
1890
|
-
Name | Type | Description | Notes
|
1891
|
-
------------ | ------------- | ------------- | -------------
|
1892
|
-
**config** | [**CloudConfig**](#cloudconfig) | Additional configurable properties of this Cloud. | [optional] [default to null]
|
1893
|
-
**auto_add_user** | **bool** | Whether all users in the organization should be automatically added to this cloud. This field is only relevant for organizations with cloud isolation enabled, because all users in the organization automatically have access to all clouds if cloud isolation is not enabled. | [optional] [default to null]
|
1894
|
-
|
1895
1793
|
## UpdateCluster
|
1896
1794
|
|
1897
1795
|
Model used to update a Cluster. A field will not be updated if its value is absent.
|
@@ -1911,15 +1809,6 @@ Name | Type | Description | Notes
|
|
1911
1809
|
------------ | ------------- | ------------- | -------------
|
1912
1810
|
**sso_mode** | [**SSOMode**](#ssomode) | Mode for use of single sign on (SSO) for your organization.WARNING: It is dangerous to require SSO if you are not confident it is correctly configured. Once SSO is required, users may not log into Anyscale without using SSO. If you lock all users out of your organization by requiring incorrectly configured SSO, you may need to contact Anyscale for support. | [default to null]
|
1913
1811
|
|
1914
|
-
## UpdateProject
|
1915
|
-
|
1916
|
-
Model for updating a Project. A field will not be updated if its value is absent.
|
1917
|
-
|
1918
|
-
Name | Type | Description | Notes
|
1919
|
-
------------ | ------------- | ------------- | -------------
|
1920
|
-
**cluster_config** | **str** | New cluster config to apply to the Project on update action. | [optional] [default to null]
|
1921
|
-
**description** | **str** | New description to update in the Project. | [optional] [default to null]
|
1922
|
-
|
1923
1812
|
## UserServiceAccessTypes
|
1924
1813
|
|
1925
1814
|
An enumeration.
|
anyscale/client/README.md
CHANGED
@@ -128,7 +128,6 @@ Class | Method | HTTP request | Description
|
|
128
128
|
*DefaultApi* | [**create_resource_quota_api_v2_resource_quotas_post**](docs/DefaultApi.md#create_resource_quota_api_v2_resource_quotas_post) | **POST** /api/v2/resource_quotas/ | Create Resource Quota
|
129
129
|
*DefaultApi* | [**create_service_account_api_v2_users_service_accounts_post**](docs/DefaultApi.md#create_service_account_api_v2_users_service_accounts_post) | **POST** /api/v2/users/service_accounts | Create Service Account
|
130
130
|
*DefaultApi* | [**create_session_command_api_v2_sessions_session_id_create_session_command_post**](docs/DefaultApi.md#create_session_command_api_v2_sessions_session_id_create_session_command_post) | **POST** /api/v2/sessions/{session_id}/create_session_command | Create Session Command
|
131
|
-
*DefaultApi* | [**create_web_terminal_api_v2_sessions_session_id_web_terminals_post**](docs/DefaultApi.md#create_web_terminal_api_v2_sessions_session_id_web_terminals_post) | **POST** /api/v2/sessions/{session_id}/web_terminals | Create Web Terminal
|
132
131
|
*DefaultApi* | [**create_workspace_api_v2_experimental_workspaces_post**](docs/DefaultApi.md#create_workspace_api_v2_experimental_workspaces_post) | **POST** /api/v2/experimental_workspaces/ | Create Workspace
|
133
132
|
*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
|
134
133
|
*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
|
@@ -191,7 +190,6 @@ Class | Method | HTTP request | Description
|
|
191
190
|
*DefaultApi* | [**get_decorated_interactive_session_api_v2_decorated_interactive_sessions_interactive_session_id_get**](docs/DefaultApi.md#get_decorated_interactive_session_api_v2_decorated_interactive_sessions_interactive_session_id_get) | **GET** /api/v2/decorated_interactive_sessions/{interactive_session_id} | Get Decorated Interactive Session
|
192
191
|
*DefaultApi* | [**get_decorated_job_api_v2_decorated_jobs_job_id_get**](docs/DefaultApi.md#get_decorated_job_api_v2_decorated_jobs_job_id_get) | **GET** /api/v2/decorated_jobs/{job_id} | Get Decorated Job
|
193
192
|
*DefaultApi* | [**get_decorated_serve_deployment_api_v2_decorated_serve_deployments_serve_deloyment_id_get**](docs/DefaultApi.md#get_decorated_serve_deployment_api_v2_decorated_serve_deployments_serve_deloyment_id_get) | **GET** /api/v2/decorated_serve_deployments/{serve_deloyment_id} | Get Decorated Serve Deployment
|
194
|
-
*DefaultApi* | [**get_decorated_serve_deployment_fast_api_docs_status_api_v2_decorated_serve_deployments_serve_deployment_id_fast_api_docs_status_get**](docs/DefaultApi.md#get_decorated_serve_deployment_fast_api_docs_status_api_v2_decorated_serve_deployments_serve_deployment_id_fast_api_docs_status_get) | **GET** /api/v2/decorated_serve_deployments/{serve_deployment_id}/fast_api_docs_status | Get Decorated Serve Deployment Fast Api Docs Status
|
195
193
|
*DefaultApi* | [**get_decorated_support_request_for_user_organization_api_v2_support_requests_get**](docs/DefaultApi.md#get_decorated_support_request_for_user_organization_api_v2_support_requests_get) | **GET** /api/v2/support_requests/ | Get Decorated Support Request For User Organization
|
196
194
|
*DefaultApi* | [**get_default_cluster_env_build_api_v2_builds_default_py_version_ray_version_get**](docs/DefaultApi.md#get_default_cluster_env_build_api_v2_builds_default_py_version_ray_version_get) | **GET** /api/v2/builds/default/{py_version}/{ray_version} | Get Default Cluster Env Build
|
197
195
|
*DefaultApi* | [**get_default_compute_config_api_v2_compute_templates_default_cloud_id_get**](docs/DefaultApi.md#get_default_compute_config_api_v2_compute_templates_default_cloud_id_get) | **GET** /api/v2/compute_templates/default/{cloud_id} | Get Default Compute Config
|
@@ -814,10 +812,8 @@ Class | Method | HTTP request | Description
|
|
814
812
|
- [SUPPORTEDBASEIMAGESENUM](docs/SUPPORTEDBASEIMAGESENUM.md)
|
815
813
|
- [ScheduleConfig](docs/ScheduleConfig.md)
|
816
814
|
- [SchedulerInfo](docs/SchedulerInfo.md)
|
817
|
-
- [ServeDeploymentFastApiDocsStatus](docs/ServeDeploymentFastApiDocsStatus.md)
|
818
815
|
- [ServeDeploymentGrafanaDashboardStatus](docs/ServeDeploymentGrafanaDashboardStatus.md)
|
819
816
|
- [ServeDeploymentState](docs/ServeDeploymentState.md)
|
820
|
-
- [ServedeploymentfastapidocsstatusResponse](docs/ServedeploymentfastapidocsstatusResponse.md)
|
821
817
|
- [ServerSessionToken](docs/ServerSessionToken.md)
|
822
818
|
- [ServersessiontokenResponse](docs/ServersessiontokenResponse.md)
|
823
819
|
- [ServiceConfig](docs/ServiceConfig.md)
|
@@ -922,8 +918,6 @@ Class | Method | HTTP request | Description
|
|
922
918
|
- [WaitlistStatusType](docs/WaitlistStatusType.md)
|
923
919
|
- [WaitliststatusresponseResponse](docs/WaitliststatusresponseResponse.md)
|
924
920
|
- [WandBRunDetails](docs/WandBRunDetails.md)
|
925
|
-
- [WebTerminal](docs/WebTerminal.md)
|
926
|
-
- [WebterminalResponse](docs/WebterminalResponse.md)
|
927
921
|
- [WorkerNodeType](docs/WorkerNodeType.md)
|
928
922
|
- [WorkloadInfo](docs/WorkloadInfo.md)
|
929
923
|
- [WorkloadType](docs/WorkloadType.md)
|
@@ -477,10 +477,8 @@ from openapi_client.models.sso_mode import SSOMode
|
|
477
477
|
from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
|
478
478
|
from openapi_client.models.schedule_config import ScheduleConfig
|
479
479
|
from openapi_client.models.scheduler_info import SchedulerInfo
|
480
|
-
from openapi_client.models.serve_deployment_fast_api_docs_status import ServeDeploymentFastApiDocsStatus
|
481
480
|
from openapi_client.models.serve_deployment_grafana_dashboard_status import ServeDeploymentGrafanaDashboardStatus
|
482
481
|
from openapi_client.models.serve_deployment_state import ServeDeploymentState
|
483
|
-
from openapi_client.models.servedeploymentfastapidocsstatus_response import ServedeploymentfastapidocsstatusResponse
|
484
482
|
from openapi_client.models.server_session_token import ServerSessionToken
|
485
483
|
from openapi_client.models.serversessiontoken_response import ServersessiontokenResponse
|
486
484
|
from openapi_client.models.service_config import ServiceConfig
|
@@ -585,8 +583,6 @@ from openapi_client.models.waitlist_status_response import WaitlistStatusRespons
|
|
585
583
|
from openapi_client.models.waitlist_status_type import WaitlistStatusType
|
586
584
|
from openapi_client.models.waitliststatusresponse_response import WaitliststatusresponseResponse
|
587
585
|
from openapi_client.models.wand_b_run_details import WandBRunDetails
|
588
|
-
from openapi_client.models.web_terminal import WebTerminal
|
589
|
-
from openapi_client.models.webterminal_response import WebterminalResponse
|
590
586
|
from openapi_client.models.worker_node_type import WorkerNodeType
|
591
587
|
from openapi_client.models.workload_info import WorkloadInfo
|
592
588
|
from openapi_client.models.workload_type import WorkloadType
|