Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

OpenSearchSnapshotShard

Properties

Name Type Description Notes
total float Total number of shards [optional]
failed float Failed number of shards [optional]
successful float Successful number of shards [optional]

Example

from formkiq_client.models.open_search_snapshot_shard import OpenSearchSnapshotShard

# TODO update the JSON string below
json = "{}"
# create an instance of OpenSearchSnapshotShard from a JSON string
open_search_snapshot_shard_instance = OpenSearchSnapshotShard.from_json(json)
# print the JSON string representation of the object
print(OpenSearchSnapshotShard.to_json())

# convert the object into a dict
open_search_snapshot_shard_dict = open_search_snapshot_shard_instance.to_dict()
# create an instance of OpenSearchSnapshotShard from a dict
open_search_snapshot_shard_from_dict = OpenSearchSnapshotShard.from_dict(open_search_snapshot_shard_dict)

[Back to Model list] [Back to API list] [Back to README]