From 4849f20c5cb320da4fc5b8761d7be82403bceef0 Mon Sep 17 00:00:00 2001 From: Anurag Sharma Date: Wed, 6 Nov 2024 17:02:14 +0530 Subject: [PATCH] Documentation Update --- CHANGELOG.md | 4 ++++ docs/models/stateful_node.md | 34 +++++++++++++++++++++++++++++----- spotinst_sdk2/version.py | 2 +- 3 files changed, 34 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b47761f4..f97cabaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [3.19.0] - 2024-11-06 +### Added +- Added `SpotSizeAttributes` model for Azure Stateful Nodes + ## [3.18.2] - 2024-10-30 ### Fixed - Fixed implementation of `update_access_policy()` API diff --git a/docs/models/stateful_node.md b/docs/models/stateful_node.md index 4d8c456a..2a00a675 100644 --- a/docs/models/stateful_node.md +++ b/docs/models/stateful_node.md @@ -746,15 +746,38 @@ __Arguments__ - __tag_key__: str - __tag_value__: str +

SpotSizeAttributes

+ +```python +SpotSizeAttributes( + self, + max_cpu: int = 'd3043820717d74d9a17694c176d39733', + min_cpu: int = 'd3043820717d74d9a17694c176d39733', + max_memory: int = 'd3043820717d74d9a17694c176d39733', + min_memory: int = 'd3043820717d74d9a17694c176d39733', + max_storage: int = 'd3043820717d74d9a17694c176d39733', + min_storage: int = 'd3043820717d74d9a17694c176d39733') +``` + +__Arguments__ + +- __max_cpu__: int +- __min_cpu__: int +- __max_memory__: int +- __min_memory__: int +- __max_storage__: int +- __min_storage__: int +

VmSizes

```python VmSizes( - self, - od_sizes: typing.List[str] = 'd3043820717d74d9a17694c176d39733', - preferred_spot_sizes: - typing.List[str] = 'd3043820717d74d9a17694c176d39733', - spot_sizes: typing.List[str] = 'd3043820717d74d9a17694c176d39733') + self, + od_sizes: typing.List[str] = 'd3043820717d74d9a17694c176d39733', + preferred_spot_sizes: typing.List[str] = 'd3043820717d74d9a17694c176d39733', + spot_sizes: typing.List[str] = 'd3043820717d74d9a17694c176d39733', + spot_size_attributes: + SpotSizeAttributes = 'd3043820717d74d9a17694c176d39733') ``` __Arguments__ @@ -762,6 +785,7 @@ __Arguments__ - __od_sizes__: List[str] - __preferred_spot_sizes__: List[str] - __spot_sizes__: List[str] +- __spot_size_attributes__: SpotSizeAttributes

ProximityPlacementGroups

diff --git a/spotinst_sdk2/version.py b/spotinst_sdk2/version.py index 515dbdaf..9bf346d5 100644 --- a/spotinst_sdk2/version.py +++ b/spotinst_sdk2/version.py @@ -1,2 +1,2 @@ -__version__ = '3.18.3' +__version__ = '3.19.0'