@@ -33,6 +33,7 @@ class AddMigrationRequestMapping(object):
33
33
and the value is json key in definition.
34
34
"""
35
35
swagger_types = {
36
+ 'cdn_url' : 'str' ,
36
37
'dest_bucket_name' : 'str' ,
37
38
'dest_bucket_new_region' : 'str' ,
38
39
'dest_storage_account_id' : 'int' ,
@@ -44,6 +45,7 @@ class AddMigrationRequestMapping(object):
44
45
}
45
46
46
47
attribute_map = {
48
+ 'cdn_url' : 'cdnUrl' ,
47
49
'dest_bucket_name' : 'destBucketName' ,
48
50
'dest_bucket_new_region' : 'destBucketNewRegion' ,
49
51
'dest_storage_account_id' : 'destStorageAccountId' ,
@@ -54,12 +56,13 @@ class AddMigrationRequestMapping(object):
54
56
'source_storage_account_id' : 'sourceStorageAccountId'
55
57
}
56
58
57
- def __init__ (self , dest_bucket_name = None , dest_bucket_new_region = None , dest_storage_account_id = None , key_add_prefix = None , key_remove_prefix = None , objects_list_uri = None , source_bucket_name = None , source_storage_account_id = None , _configuration = None ): # noqa: E501
59
+ def __init__ (self , cdn_url = None , dest_bucket_name = None , dest_bucket_new_region = None , dest_storage_account_id = None , key_add_prefix = None , key_remove_prefix = None , objects_list_uri = None , source_bucket_name = None , source_storage_account_id = None , _configuration = None ): # noqa: E501
58
60
"""AddMigrationRequestMapping - a model defined in Swagger""" # noqa: E501
59
61
if _configuration is None :
60
62
_configuration = Configuration ()
61
63
self ._configuration = _configuration
62
64
65
+ self ._cdn_url = None
63
66
self ._dest_bucket_name = None
64
67
self ._dest_bucket_new_region = None
65
68
self ._dest_storage_account_id = None
@@ -70,6 +73,8 @@ def __init__(self, dest_bucket_name=None, dest_bucket_new_region=None, dest_stor
70
73
self ._source_storage_account_id = None
71
74
self .discriminator = None
72
75
76
+ if cdn_url is not None :
77
+ self .cdn_url = cdn_url
73
78
self .dest_bucket_name = dest_bucket_name
74
79
if dest_bucket_new_region is not None :
75
80
self .dest_bucket_new_region = dest_bucket_new_region
@@ -83,6 +88,29 @@ def __init__(self, dest_bucket_name=None, dest_bucket_new_region=None, dest_stor
83
88
self .source_bucket_name = source_bucket_name
84
89
self .source_storage_account_id = source_storage_account_id
85
90
91
+ @property
92
+ def cdn_url (self ):
93
+ """Gets the cdn_url of this AddMigrationRequestMapping. # noqa: E501
94
+
95
+ CDN base URL for GET operations during migration # noqa: E501
96
+
97
+ :return: The cdn_url of this AddMigrationRequestMapping. # noqa: E501
98
+ :rtype: str
99
+ """
100
+ return self ._cdn_url
101
+
102
+ @cdn_url .setter
103
+ def cdn_url (self , cdn_url ):
104
+ """Sets the cdn_url of this AddMigrationRequestMapping.
105
+
106
+ CDN base URL for GET operations during migration # noqa: E501
107
+
108
+ :param cdn_url: The cdn_url of this AddMigrationRequestMapping. # noqa: E501
109
+ :type: str
110
+ """
111
+
112
+ self ._cdn_url = cdn_url
113
+
86
114
@property
87
115
def dest_bucket_name (self ):
88
116
"""Gets the dest_bucket_name of this AddMigrationRequestMapping. # noqa: E501
0 commit comments