Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

RolloutStrategyParams

Properties

Name Type Description Notes
max_surge int [optional]
max_unavailable int [optional]

Example

from platform_api_python_client.models.rollout_strategy_params import RolloutStrategyParams

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

# convert the object into a dict
rollout_strategy_params_dict = rollout_strategy_params_instance.to_dict()
# create an instance of RolloutStrategyParams from a dict
rollout_strategy_params_from_dict = RolloutStrategyParams.from_dict(rollout_strategy_params_dict)

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