@@ -33,6 +33,7 @@ class UserConfig(object):
3333 and the value is json key in definition.
3434 """
3535 swagger_types = {
36+ 'allow_dropbox_destinations' : 'int' ,
3637 'max_active_migrations' : 'int' ,
3738 'max_auto_deploy_engines_count' : 'int' ,
3839 'max_endpoints' : 'int' ,
@@ -54,6 +55,7 @@ class UserConfig(object):
5455 }
5556
5657 attribute_map = {
58+ 'allow_dropbox_destinations' : 'allowDropboxDestinations' ,
5759 'max_active_migrations' : 'maxActiveMigrations' ,
5860 'max_auto_deploy_engines_count' : 'maxAutoDeployEnginesCount' ,
5961 'max_endpoints' : 'maxEndpoints' ,
@@ -74,12 +76,13 @@ class UserConfig(object):
7476 'skip_auto_undeploy' : 'skipAutoUndeploy'
7577 }
7678
77- def __init__ (self , max_active_migrations = None , max_auto_deploy_engines_count = None , max_endpoints = None , max_migration_copy_retries = None , max_migration_engines = None , max_migration_mappings = None , max_migration_ram_mb = None , max_migration_retries = None , max_migration_slots = None , max_migration_stream_ram_kb = None , max_migration_streams = None , max_migrations_in_queue = None , max_policy_rules_per_virtual_bucket = None , max_storage_accounts_per_endpoint = None , max_storages = None , max_storages_per_virtual_bucket = None , max_virtual_buckets_per_endpoint = None , skip_auto_undeploy = None , _configuration = None ): # noqa: E501
79+ def __init__ (self , allow_dropbox_destinations = None , max_active_migrations = None , max_auto_deploy_engines_count = None , max_endpoints = None , max_migration_copy_retries = None , max_migration_engines = None , max_migration_mappings = None , max_migration_ram_mb = None , max_migration_retries = None , max_migration_slots = None , max_migration_stream_ram_kb = None , max_migration_streams = None , max_migrations_in_queue = None , max_policy_rules_per_virtual_bucket = None , max_storage_accounts_per_endpoint = None , max_storages = None , max_storages_per_virtual_bucket = None , max_virtual_buckets_per_endpoint = None , skip_auto_undeploy = None , _configuration = None ): # noqa: E501
7880 """UserConfig - a model defined in Swagger""" # noqa: E501
7981 if _configuration is None :
8082 _configuration = Configuration ()
8183 self ._configuration = _configuration
8284
85+ self ._allow_dropbox_destinations = None
8386 self ._max_active_migrations = None
8487 self ._max_auto_deploy_engines_count = None
8588 self ._max_endpoints = None
@@ -100,6 +103,8 @@ def __init__(self, max_active_migrations=None, max_auto_deploy_engines_count=Non
100103 self ._skip_auto_undeploy = None
101104 self .discriminator = None
102105
106+ if allow_dropbox_destinations is not None :
107+ self .allow_dropbox_destinations = allow_dropbox_destinations
103108 if max_active_migrations is not None :
104109 self .max_active_migrations = max_active_migrations
105110 if max_auto_deploy_engines_count is not None :
@@ -137,6 +142,27 @@ def __init__(self, max_active_migrations=None, max_auto_deploy_engines_count=Non
137142 if skip_auto_undeploy is not None :
138143 self .skip_auto_undeploy = skip_auto_undeploy
139144
145+ @property
146+ def allow_dropbox_destinations (self ):
147+ """Gets the allow_dropbox_destinations of this UserConfig. # noqa: E501
148+
149+
150+ :return: The allow_dropbox_destinations of this UserConfig. # noqa: E501
151+ :rtype: int
152+ """
153+ return self ._allow_dropbox_destinations
154+
155+ @allow_dropbox_destinations .setter
156+ def allow_dropbox_destinations (self , allow_dropbox_destinations ):
157+ """Sets the allow_dropbox_destinations of this UserConfig.
158+
159+
160+ :param allow_dropbox_destinations: The allow_dropbox_destinations of this UserConfig. # noqa: E501
161+ :type: int
162+ """
163+
164+ self ._allow_dropbox_destinations = allow_dropbox_destinations
165+
140166 @property
141167 def max_active_migrations (self ):
142168 """Gets the max_active_migrations of this UserConfig. # noqa: E501
0 commit comments