Skip to content

Commit

Permalink
Updating Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
anuragsharma-123 committed Jan 12, 2024
1 parent 45c8de4 commit a888dc1
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).

## [2.3.2] - 2024-01-12
### Added
- Added `caching` field in field in Azure Stateful Node `OsDisk` and `DataDisk` model.

## [2.3.1] - 2023-12-18
### Added
- Added `public_settings` and `protected_settings` fields in Azure Stateful Node `Extension` model.
Expand Down
23 changes: 21 additions & 2 deletions docs/models/stateful_node.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,20 +332,37 @@ An enumeration.
<h3 id="spotinst_sdk2.models.stateful_node.DataDiskType.ultra_ssd_lrs">ultra_ssd_lrs</h3>


<h2 id="spotinst_sdk2.models.stateful_node.CachingType">CachingType</h2>

```python
CachingType(cls, value, names=None, *, module, qualname, type, start)
```
An enumeration.
<h3 id="spotinst_sdk2.models.stateful_node.CachingType.none">none</h3>


<h3 id="spotinst_sdk2.models.stateful_node.CachingType.read_only">read_only</h3>


<h3 id="spotinst_sdk2.models.stateful_node.CachingType.read_write">read_write</h3>


<h2 id="spotinst_sdk2.models.stateful_node.DataDisk">DataDisk</h2>

```python
DataDisk(self,
lun: int = 'd3043820717d74d9a17694c176d39733',
size_g_b: int = 'd3043820717d74d9a17694c176d39733',
type: DataDiskType = 'd3043820717d74d9a17694c176d39733')
type: DataDiskType = 'd3043820717d74d9a17694c176d39733',
caching: CachingType = 'd3043820717d74d9a17694c176d39733')
```

__Arguments__

- __lun__: int
size_g_b = int
- __type__: DataDiskType
- __caching __: CachingType

<h2 id="spotinst_sdk2.models.stateful_node.Extension">Extension</h2>

Expand Down Expand Up @@ -662,13 +679,15 @@ __Arguments__
```python
OsDisk(self,
size_g_b: int = 'd3043820717d74d9a17694c176d39733',
type: DataDiskType = 'd3043820717d74d9a17694c176d39733')
type: DataDiskType = 'd3043820717d74d9a17694c176d39733',
caching: CachingType = 'd3043820717d74d9a17694c176d39733')
```

__Arguments__

- __size_g_b__: int
- __type__: DataDiskType
- __caching __: CachingType

<h2 id="spotinst_sdk2.models.stateful_node.SourceVault">SourceVault</h2>

Expand Down
2 changes: 1 addition & 1 deletion spotinst_sdk2/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.3.1'
__version__ = '2.3.2'

0 comments on commit a888dc1

Please sign in to comment.