Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

UpdateAuthMethodOCIOutput.md

File metadata and controls

29 lines (20 loc) · 1.02 KB

UpdateAuthMethodOCIOutput

Properties

Name Type Description Notes
access_id str [optional]

Example

from akeyless.models.update_auth_method_oci_output import UpdateAuthMethodOCIOutput

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

# convert the object into a dict
update_auth_method_oci_output_dict = update_auth_method_oci_output_instance.to_dict()
# create an instance of UpdateAuthMethodOCIOutput from a dict
update_auth_method_oci_output_from_dict = UpdateAuthMethodOCIOutput.from_dict(update_auth_method_oci_output_dict)

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