Skip to content

Commit 2803a93

Browse files
authored
Merge branch 'aws:develop' into wip/group-test-starccm-and-openfoam
2 parents 5ef3b7e + 937dcbc commit 2803a93

File tree

101 files changed

+291
-112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+291
-112
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ CHANGELOG
88
- Add new configuration section `Scheduling/SlurmSettings/ExternalSlurmdbd` to connect the cluster to an external Slurmdbd.
99
- Add support for Amazon Linux 2023.
1010
- Add support for `price-capacity-optimized` as an `AllocationStrategy`.
11+
- Add validator to prevent the use of Placement Groups with Capacity Blocks.
1112

1213
**BUG FIXES**
1314
- Fix DRA configuration to make `AutoExportPolicy` and `AutoImportPolicy` optional.
@@ -17,6 +18,9 @@ CHANGELOG
1718
- Allow ParallelCluster Custom Resource to suppress validators using `PclusterCluster/SuppressValidators`.
1819
- Removing `/etc/profile.d/pcluster.sh` so that it's not executed at every user login and
1920
`cfn_bootstrap_virtualenv` is not added in PATH environment variable.
21+
- Fix ParallelCluster API spec by replacing in `DescribeCluster` response the field `failureReason` with `failures`.
22+
- Fix ParallelCluster API spec by adding the CloudFormation stack status that were missing:
23+
`IMPORT_*`, `REVIEW_IN_PROGRESS` and `UPDATE_FAILED`.
2024

2125
**CHANGES**
2226
- CentOS 7 is no longer supported.

api/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@ cdk.out
1818
build
1919
node_modules
2020
package.json
21+
22+
# Generated code
23+
generated

api/client/src/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ParallelCluster API
33

44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

6-
- API version: 3.10.0
6+
- API version: 3.11.0
77
- Package version: 1.0.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

api/client/src/docs/CloudFormationStackStatus.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **str** | | must be one of ["CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", ]
7+
**value** | **str** | | must be one of ["CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_COMPLETE", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "REVIEW_IN_PROGRESS", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", ]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

api/client/src/pcluster_client/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
ParallelCluster API # noqa: E501
77
8-
The version of the OpenAPI document: 3.10.0
8+
The version of the OpenAPI document: 3.11.0
99
Generated by: https://openapi-generator.tech
1010
"""
1111

api/client/src/pcluster_client/api/cluster_compute_fleet_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/api/cluster_instances_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/api/cluster_logs_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/api/cluster_operations_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/api/image_logs_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/api/image_operations_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/configuration.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

@@ -408,7 +408,7 @@ def to_debug_report(self):
408408
return "Python SDK Debug Report:\n"\
409409
"OS: {env}\n"\
410410
"Python Version: {pyversion}\n"\
411-
"Version of the API: 3.10.0\n"\
411+
"Version of the API: 3.11.0\n"\
412412
"SDK Package Version: 1.0.0".\
413413
format(env=sys.platform, pyversion=sys.version)
414414

api/client/src/pcluster_client/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/ami_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/bad_request_exception_response_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/build_image_bad_request_exception_response_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/build_image_request_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/build_image_response_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/change.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/cloud_formation_resource_status.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/cloud_formation_stack_status.py

+12-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

@@ -55,15 +55,22 @@ class CloudFormationStackStatus(ModelSimple):
5555
'CREATE_IN_PROGRESS': "CREATE_IN_PROGRESS",
5656
'CREATE_FAILED': "CREATE_FAILED",
5757
'CREATE_COMPLETE': "CREATE_COMPLETE",
58+
'IMPORT_IN_PROGRESS': "IMPORT_IN_PROGRESS",
59+
'IMPORT_COMPLETE': "IMPORT_COMPLETE",
60+
'IMPORT_ROLLBACK_IN_PROGRESS': "IMPORT_ROLLBACK_IN_PROGRESS",
61+
'IMPORT_ROLLBACK_FAILED': "IMPORT_ROLLBACK_FAILED",
62+
'IMPORT_ROLLBACK_COMPLETE': "IMPORT_ROLLBACK_COMPLETE",
5863
'ROLLBACK_IN_PROGRESS': "ROLLBACK_IN_PROGRESS",
5964
'ROLLBACK_FAILED': "ROLLBACK_FAILED",
6065
'ROLLBACK_COMPLETE': "ROLLBACK_COMPLETE",
6166
'DELETE_IN_PROGRESS': "DELETE_IN_PROGRESS",
6267
'DELETE_FAILED': "DELETE_FAILED",
6368
'DELETE_COMPLETE': "DELETE_COMPLETE",
69+
'REVIEW_IN_PROGRESS': "REVIEW_IN_PROGRESS",
6470
'UPDATE_IN_PROGRESS': "UPDATE_IN_PROGRESS",
6571
'UPDATE_COMPLETE_CLEANUP_IN_PROGRESS': "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS",
6672
'UPDATE_COMPLETE': "UPDATE_COMPLETE",
73+
'UPDATE_FAILED': "UPDATE_FAILED",
6774
'UPDATE_ROLLBACK_IN_PROGRESS': "UPDATE_ROLLBACK_IN_PROGRESS",
6875
'UPDATE_ROLLBACK_FAILED': "UPDATE_ROLLBACK_FAILED",
6976
'UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS': "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS",
@@ -119,10 +126,10 @@ def __init__(self, *args, **kwargs):
119126
Note that value can be passed either in args or in kwargs, but not in both.
120127
121128
Args:
122-
args[0] (str):, must be one of ["CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", ] # noqa: E501
129+
args[0] (str):, must be one of ["CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_COMPLETE", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "REVIEW_IN_PROGRESS", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", ] # noqa: E501
123130
124131
Keyword Args:
125-
value (str):, must be one of ["CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", ] # noqa: E501
132+
value (str):, must be one of ["CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_COMPLETE", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "REVIEW_IN_PROGRESS", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", ] # noqa: E501
126133
_check_type (bool): if True, values for parameters in openapi_types
127134
will be type checked and a TypeError will be
128135
raised if the wrong type is input.
@@ -213,10 +220,10 @@ def _from_openapi_data(cls, *args, **kwargs):
213220
Note that value can be passed either in args or in kwargs, but not in both.
214221
215222
Args:
216-
args[0] (str):, must be one of ["CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", ] # noqa: E501
223+
args[0] (str):, must be one of ["CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_COMPLETE", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "REVIEW_IN_PROGRESS", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", ] # noqa: E501
217224
218225
Keyword Args:
219-
value (str):, must be one of ["CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", ] # noqa: E501
226+
value (str):, must be one of ["CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_COMPLETE", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "REVIEW_IN_PROGRESS", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", ] # noqa: E501
220227
_check_type (bool): if True, values for parameters in openapi_types
221228
will be type checked and a TypeError will be
222229
raised if the wrong type is input.

api/client/src/pcluster_client/model/cluster_configuration_structure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/cluster_info_summary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/cluster_instance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/cluster_status.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/cluster_status_filtering_option.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/compute_fleet_status.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/config_validation_message.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/conflict_exception_response_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/create_cluster_bad_request_exception_response_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/create_cluster_request_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/create_cluster_response_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/delete_cluster_response_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/delete_image_response_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/describe_cluster_instances_response_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

api/client/src/pcluster_client/model/describe_cluster_response_content.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
ParallelCluster API # noqa: E501
55
6-
The version of the OpenAPI document: 3.10.0
6+
The version of the OpenAPI document: 3.11.0
77
Generated by: https://openapi-generator.tech
88
"""
99

0 commit comments

Comments
 (0)