Skip to content

Commit 371b5e8

Browse files
author
Flexify
committed
v2.15.0-SNAPSHOT build 1435
1 parent 7020d14 commit 371b5e8

File tree

5 files changed

+31
-4
lines changed

5 files changed

+31
-4
lines changed

docs/UserConfig.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6+
**allow_dropbox_destinations** | **int** | | [optional]
67
**max_active_migrations** | **int** | | [optional]
78
**max_auto_deploy_engines_count** | **int** | | [optional]
89
**max_endpoints** | **int** | | [optional]

flexify_api/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7474
self.default_headers[header_name] = header_value
7575
self.cookie = cookie
7676
# Set default User-Agent.
77-
self.user_agent = 'Swagger-Codegen/2.15.0.dev1431/python'
77+
self.user_agent = 'Swagger-Codegen/2.15.0.dev1435/python'
7878
self.client_side_validation = configuration.client_side_validation
7979

8080
def __del__(self):

flexify_api/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,5 +251,5 @@ def to_debug_report(self):
251251
"OS: {env}\n"\
252252
"Python Version: {pyversion}\n"\
253253
"Version of the API: 2.15.0-SNAPSHOT\n"\
254-
"SDK Package Version: 2.15.0.dev1431".\
254+
"SDK Package Version: 2.15.0.dev1435".\
255255
format(env=sys.platform, pyversion=sys.version)

flexify_api/models/user_config.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from setuptools import setup, find_packages # noqa: H301
1515

1616
NAME = "flexify-api"
17-
VERSION = "2.15.0.dev1431"
17+
VERSION = "2.15.0.dev1435"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

0 commit comments

Comments
 (0)