Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1007 Bytes

File metadata and controls

32 lines (23 loc) · 1007 Bytes

Batch

Batch is an element in batch sequence.

Properties

Name Type Description Notes
selector LabelSelector [optional]
success_threshold str Percentage is the string format representing percentage string. [optional]
limit BatchLimit [optional]

Example

from flightctl.models.batch import Batch

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

# convert the object into a dict
batch_dict = batch_instance.to_dict()
# create an instance of Batch from a dict
batch_from_dict = Batch.from_dict(batch_dict)

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