Skip to content

Commit 80e8e09

Browse files
author
PureCloud Jenkins
committed
63.0.0
1 parent e09cdea commit 80e8e09

394 files changed

Lines changed: 4845 additions & 4571 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build/PureCloudPlatformClientV2/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,13 +898,13 @@
898898
from .models.local_encryption_key_request import LocalEncryptionKeyRequest
899899
from .models.location import Location
900900
from .models.location_address import LocationAddress
901+
from .models.location_create_update_definition import LocationCreateUpdateDefinition
901902
from .models.location_definition import LocationDefinition
902903
from .models.location_emergency_number import LocationEmergencyNumber
903904
from .models.location_entity_listing import LocationEntityListing
904905
from .models.location_image import LocationImage
905906
from .models.location_search_criteria import LocationSearchCriteria
906907
from .models.location_search_request import LocationSearchRequest
907-
from .models.location_update_definition import LocationUpdateDefinition
908908
from .models.locations_search_response import LocationsSearchResponse
909909
from .models.lock_info import LockInfo
910910
from .models.logical_interface_entity_listing import LogicalInterfaceEntityListing
@@ -1272,6 +1272,7 @@
12721272
from .models.recording_job_entity_listing import RecordingJobEntityListing
12731273
from .models.recording_jobs_query import RecordingJobsQuery
12741274
from .models.recording_messaging_message import RecordingMessagingMessage
1275+
from .models.recording_metadata import RecordingMetadata
12751276
from .models.recording_settings import RecordingSettings
12761277
from .models.region_time_zone import RegionTimeZone
12771278
from .models.relationship import Relationship

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def __call_api(self, resource_path, method,
187187
header_params['Cookie'] = self.cookie
188188
if header_params:
189189
header_params = self.sanitize_for_serialization(header_params)
190-
header_params['purecloud-sdk'] = '62.0.0'
190+
header_params['purecloud-sdk'] = '63.0.0'
191191

192192
# path parameters
193193
if path_params:

build/PureCloudPlatformClientV2/apis/conversations_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2389,7 +2389,7 @@ def get_conversations_chat(self, conversation_id, **kwargs):
23892389
def get_conversations_chat_message(self, conversation_id, message_id, **kwargs):
23902390
"""
23912391
Get a web chat conversation message
2392-
2392+
The current user must be involved with the conversation to get its messages.
23932393
23942394
This method makes a synchronous HTTP request by default. To make an
23952395
asynchronous HTTP request, please define a `callback` function
@@ -2473,7 +2473,7 @@ def get_conversations_chat_message(self, conversation_id, message_id, **kwargs):
24732473
def get_conversations_chat_messages(self, conversation_id, **kwargs):
24742474
"""
24752475
Get the messages of a chat conversation.
2476-
2476+
The current user must be involved with the conversation to get its messages.
24772477
24782478
This method makes a synchronous HTTP request by default. To make an
24792479
asynchronous HTTP request, please define a `callback` function

build/PureCloudPlatformClientV2/apis/locations_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ def patch_location(self, location_id, body, **kwargs):
464464
:param callback function: The callback function
465465
for asynchronous request. (optional)
466466
:param str location_id: Location ID (required)
467-
:param LocationUpdateDefinition body: Location (required)
467+
:param LocationCreateUpdateDefinition body: Location (required)
468468
:return: LocationDefinition
469469
If the method is called asynchronously,
470470
returns the request thread.
@@ -547,7 +547,7 @@ def post_locations(self, body, **kwargs):
547547
548548
:param callback function: The callback function
549549
for asynchronous request. (optional)
550-
:param LocationDefinition body: Location (required)
550+
:param LocationCreateUpdateDefinition body: Location (required)
551551
:return: LocationDefinition
552552
If the method is called asynchronously,
553553
returns the request thread.

build/PureCloudPlatformClientV2/apis/recording_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ def get_conversation_recordingmetadata_recording_id(self, conversation_id, recor
810810
for asynchronous request. (optional)
811811
:param str conversation_id: Conversation ID (required)
812812
:param str recording_id: Recording ID (required)
813-
:return: Recording
813+
:return: RecordingMetadata
814814
If the method is called asynchronously,
815815
returns the request thread.
816816
"""
@@ -872,7 +872,7 @@ def get_conversation_recordingmetadata_recording_id(self, conversation_id, recor
872872
body=body_params,
873873
post_params=form_params,
874874
files=local_var_files,
875-
response_type='Recording',
875+
response_type='RecordingMetadata',
876876
auth_settings=auth_settings,
877877
callback=params.get('callback'))
878878
return response

build/PureCloudPlatformClientV2/apis/telephony_providers_edge_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5457,7 +5457,7 @@ def get_telephony_providers_edges_site_numberplan(self, site_id, number_plan_id,
54575457

54585458
def get_telephony_providers_edges_site_numberplans(self, site_id, **kwargs):
54595459
"""
5460-
Get the list of Number Plans for this Site.
5460+
Get the list of Number Plans for this Site. Only fetches the first 200 records.
54615461
54625462
54635463
This method makes a synchronous HTTP request by default. To make an
@@ -9657,7 +9657,7 @@ def put_telephony_providers_edges_site(self, site_id, body, **kwargs):
96579657

96589658
def put_telephony_providers_edges_site_numberplans(self, site_id, body, **kwargs):
96599659
"""
9660-
Update the list of Number Plans.
9660+
Update the list of Number Plans. A user can update maximum 200 number plans at a time.
96619661
96629662
96639663
This method makes a synchronous HTTP request by default. To make an

build/PureCloudPlatformClientV2/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,5 +249,5 @@ def to_debug_report(self):
249249
"OS: {env}\n"\
250250
"Python Version: {pyversion}\n"\
251251
"Version of the API: v2\n"\
252-
"SDK Package Version: 62.0.0".\
252+
"SDK Package Version: 63.0.0".\
253253
format(env=sys.platform, pyversion=sys.version)

build/PureCloudPlatformClientV2/models/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,13 +898,13 @@
898898
from .local_encryption_key_request import LocalEncryptionKeyRequest
899899
from .location import Location
900900
from .location_address import LocationAddress
901+
from .location_create_update_definition import LocationCreateUpdateDefinition
901902
from .location_definition import LocationDefinition
902903
from .location_emergency_number import LocationEmergencyNumber
903904
from .location_entity_listing import LocationEntityListing
904905
from .location_image import LocationImage
905906
from .location_search_criteria import LocationSearchCriteria
906907
from .location_search_request import LocationSearchRequest
907-
from .location_update_definition import LocationUpdateDefinition
908908
from .locations_search_response import LocationsSearchResponse
909909
from .lock_info import LockInfo
910910
from .logical_interface_entity_listing import LogicalInterfaceEntityListing
@@ -1272,6 +1272,7 @@
12721272
from .recording_job_entity_listing import RecordingJobEntityListing
12731273
from .recording_jobs_query import RecordingJobsQuery
12741274
from .recording_messaging_message import RecordingMessagingMessage
1275+
from .recording_metadata import RecordingMetadata
12751276
from .recording_settings import RecordingSettings
12761277
from .region_time_zone import RegionTimeZone
12771278
from .relationship import Relationship

build/PureCloudPlatformClientV2/models/action_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ def __init__(self):
4747
'first_uri': 'str',
4848
'self_uri': 'str',
4949
'next_uri': 'str',
50-
'last_uri': 'str',
5150
'previous_uri': 'str',
51+
'last_uri': 'str',
5252
'page_count': 'int'
5353
}
5454

@@ -60,8 +60,8 @@ def __init__(self):
6060
'first_uri': 'firstUri',
6161
'self_uri': 'selfUri',
6262
'next_uri': 'nextUri',
63-
'last_uri': 'lastUri',
6463
'previous_uri': 'previousUri',
64+
'last_uri': 'lastUri',
6565
'page_count': 'pageCount'
6666
}
6767

@@ -72,8 +72,8 @@ def __init__(self):
7272
self._first_uri = None
7373
self._self_uri = None
7474
self._next_uri = None
75-
self._last_uri = None
7675
self._previous_uri = None
76+
self._last_uri = None
7777
self._page_count = None
7878

7979
@property
@@ -238,50 +238,50 @@ def next_uri(self, next_uri):
238238
self._next_uri = next_uri
239239

240240
@property
241-
def last_uri(self):
241+
def previous_uri(self):
242242
"""
243-
Gets the last_uri of this ActionEntityListing.
243+
Gets the previous_uri of this ActionEntityListing.
244244
245245
246-
:return: The last_uri of this ActionEntityListing.
246+
:return: The previous_uri of this ActionEntityListing.
247247
:rtype: str
248248
"""
249-
return self._last_uri
249+
return self._previous_uri
250250

251-
@last_uri.setter
252-
def last_uri(self, last_uri):
251+
@previous_uri.setter
252+
def previous_uri(self, previous_uri):
253253
"""
254-
Sets the last_uri of this ActionEntityListing.
254+
Sets the previous_uri of this ActionEntityListing.
255255
256256
257-
:param last_uri: The last_uri of this ActionEntityListing.
257+
:param previous_uri: The previous_uri of this ActionEntityListing.
258258
:type: str
259259
"""
260260

261-
self._last_uri = last_uri
261+
self._previous_uri = previous_uri
262262

263263
@property
264-
def previous_uri(self):
264+
def last_uri(self):
265265
"""
266-
Gets the previous_uri of this ActionEntityListing.
266+
Gets the last_uri of this ActionEntityListing.
267267
268268
269-
:return: The previous_uri of this ActionEntityListing.
269+
:return: The last_uri of this ActionEntityListing.
270270
:rtype: str
271271
"""
272-
return self._previous_uri
272+
return self._last_uri
273273

274-
@previous_uri.setter
275-
def previous_uri(self, previous_uri):
274+
@last_uri.setter
275+
def last_uri(self, last_uri):
276276
"""
277-
Sets the previous_uri of this ActionEntityListing.
277+
Sets the last_uri of this ActionEntityListing.
278278
279279
280-
:param previous_uri: The previous_uri of this ActionEntityListing.
280+
:param last_uri: The last_uri of this ActionEntityListing.
281281
:type: str
282282
"""
283283

284-
self._previous_uri = previous_uri
284+
self._last_uri = last_uri
285285

286286
@property
287287
def page_count(self):

build/PureCloudPlatformClientV2/models/adfs.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ def __init__(self):
4444
'name': 'str',
4545
'relying_party_identifier': 'str',
4646
'certificate': 'str',
47-
'sso_target_uri': 'str',
4847
'issuer_uri': 'str',
48+
'sso_target_uri': 'str',
4949
'disabled': 'bool',
5050
'self_uri': 'str'
5151
}
@@ -55,8 +55,8 @@ def __init__(self):
5555
'name': 'name',
5656
'relying_party_identifier': 'relyingPartyIdentifier',
5757
'certificate': 'certificate',
58-
'sso_target_uri': 'ssoTargetURI',
5958
'issuer_uri': 'issuerURI',
59+
'sso_target_uri': 'ssoTargetURI',
6060
'disabled': 'disabled',
6161
'self_uri': 'selfUri'
6262
}
@@ -65,8 +65,8 @@ def __init__(self):
6565
self._name = None
6666
self._relying_party_identifier = None
6767
self._certificate = None
68-
self._sso_target_uri = None
6968
self._issuer_uri = None
69+
self._sso_target_uri = None
7070
self._disabled = None
7171
self._self_uri = None
7272

@@ -163,50 +163,50 @@ def certificate(self, certificate):
163163
self._certificate = certificate
164164

165165
@property
166-
def sso_target_uri(self):
166+
def issuer_uri(self):
167167
"""
168-
Gets the sso_target_uri of this ADFS.
168+
Gets the issuer_uri of this ADFS.
169169
170170
171-
:return: The sso_target_uri of this ADFS.
171+
:return: The issuer_uri of this ADFS.
172172
:rtype: str
173173
"""
174-
return self._sso_target_uri
174+
return self._issuer_uri
175175

176-
@sso_target_uri.setter
177-
def sso_target_uri(self, sso_target_uri):
176+
@issuer_uri.setter
177+
def issuer_uri(self, issuer_uri):
178178
"""
179-
Sets the sso_target_uri of this ADFS.
179+
Sets the issuer_uri of this ADFS.
180180
181181
182-
:param sso_target_uri: The sso_target_uri of this ADFS.
182+
:param issuer_uri: The issuer_uri of this ADFS.
183183
:type: str
184184
"""
185185

186-
self._sso_target_uri = sso_target_uri
186+
self._issuer_uri = issuer_uri
187187

188188
@property
189-
def issuer_uri(self):
189+
def sso_target_uri(self):
190190
"""
191-
Gets the issuer_uri of this ADFS.
191+
Gets the sso_target_uri of this ADFS.
192192
193193
194-
:return: The issuer_uri of this ADFS.
194+
:return: The sso_target_uri of this ADFS.
195195
:rtype: str
196196
"""
197-
return self._issuer_uri
197+
return self._sso_target_uri
198198

199-
@issuer_uri.setter
200-
def issuer_uri(self, issuer_uri):
199+
@sso_target_uri.setter
200+
def sso_target_uri(self, sso_target_uri):
201201
"""
202-
Sets the issuer_uri of this ADFS.
202+
Sets the sso_target_uri of this ADFS.
203203
204204
205-
:param issuer_uri: The issuer_uri of this ADFS.
205+
:param sso_target_uri: The sso_target_uri of this ADFS.
206206
:type: str
207207
"""
208208

209-
self._issuer_uri = issuer_uri
209+
self._sso_target_uri = sso_target_uri
210210

211211
@property
212212
def disabled(self):

0 commit comments

Comments
 (0)