@@ -33,6 +33,7 @@ class UserConfig(object):
33
33
and the value is json key in definition.
34
34
"""
35
35
swagger_types = {
36
+ 'allow_dropbox_destinations' : 'int' ,
36
37
'max_active_migrations' : 'int' ,
37
38
'max_auto_deploy_engines_count' : 'int' ,
38
39
'max_endpoints' : 'int' ,
@@ -54,6 +55,7 @@ class UserConfig(object):
54
55
}
55
56
56
57
attribute_map = {
58
+ 'allow_dropbox_destinations' : 'allowDropboxDestinations' ,
57
59
'max_active_migrations' : 'maxActiveMigrations' ,
58
60
'max_auto_deploy_engines_count' : 'maxAutoDeployEnginesCount' ,
59
61
'max_endpoints' : 'maxEndpoints' ,
@@ -74,12 +76,13 @@ class UserConfig(object):
74
76
'skip_auto_undeploy' : 'skipAutoUndeploy'
75
77
}
76
78
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
78
80
"""UserConfig - a model defined in Swagger""" # noqa: E501
79
81
if _configuration is None :
80
82
_configuration = Configuration ()
81
83
self ._configuration = _configuration
82
84
85
+ self ._allow_dropbox_destinations = None
83
86
self ._max_active_migrations = None
84
87
self ._max_auto_deploy_engines_count = None
85
88
self ._max_endpoints = None
@@ -100,6 +103,8 @@ def __init__(self, max_active_migrations=None, max_auto_deploy_engines_count=Non
100
103
self ._skip_auto_undeploy = None
101
104
self .discriminator = None
102
105
106
+ if allow_dropbox_destinations is not None :
107
+ self .allow_dropbox_destinations = allow_dropbox_destinations
103
108
if max_active_migrations is not None :
104
109
self .max_active_migrations = max_active_migrations
105
110
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
137
142
if skip_auto_undeploy is not None :
138
143
self .skip_auto_undeploy = skip_auto_undeploy
139
144
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
+
140
166
@property
141
167
def max_active_migrations (self ):
142
168
"""Gets the max_active_migrations of this UserConfig. # noqa: E501
0 commit comments