gatewayGetMigration is a command that get migration
Name | Type | Description | Notes |
---|---|---|---|
var_json | bool | Set output format to JSON | [optional] [default to False] |
name | str | Migration name to display | [optional] |
token | str | Authentication token (see `/auth` and `/configure`) | [optional] |
uid_token | str | The universal identity token, Required only for universal_identity authentication | [optional] |
from akeyless.models.gateway_get_migration import GatewayGetMigration
# TODO update the JSON string below
json = "{}"
# create an instance of GatewayGetMigration from a JSON string
gateway_get_migration_instance = GatewayGetMigration.from_json(json)
# print the JSON string representation of the object
print(GatewayGetMigration.to_json())
# convert the object into a dict
gateway_get_migration_dict = gateway_get_migration_instance.to_dict()
# create an instance of GatewayGetMigration from a dict
gateway_get_migration_from_dict = GatewayGetMigration.from_dict(gateway_get_migration_dict)