Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.16 KB

MigrationGeneral.md

File metadata and controls

36 lines (27 loc) · 1.16 KB

MigrationGeneral

Properties

Name Type Description Notes
id str [optional]
last_migration str [optional]
name str [optional]
new_name str [optional]
prefix str [optional]
protection_key str [optional]
status str [optional]
type str [optional]

Example

from akeyless.models.migration_general import MigrationGeneral

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

# convert the object into a dict
migration_general_dict = migration_general_instance.to_dict()
# create an instance of MigrationGeneral from a dict
migration_general_from_dict = MigrationGeneral.from_dict(migration_general_dict)

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