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

UpdateFleetConfigurationRequest

Properties

Name Type Description Notes
configuration object
name str
version str

Example

from instana_client.models.update_fleet_configuration_request import UpdateFleetConfigurationRequest

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

# convert the object into a dict
update_fleet_configuration_request_dict = update_fleet_configuration_request_instance.to_dict()
# create an instance of UpdateFleetConfigurationRequest from a dict
update_fleet_configuration_request_from_dict = UpdateFleetConfigurationRequest.from_dict(update_fleet_configuration_request_dict)

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