Skip to content

Commit 5de60db

Browse files
author
PureCloud Jenkins
committed
72.0.0
1 parent 207d781 commit 5de60db

383 files changed

Lines changed: 5646 additions & 4655 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: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,6 @@
673673
from .models.encryption_key import EncryptionKey
674674
from .models.encryption_key_entity_listing import EncryptionKeyEntityListing
675675
from .models.endpoint import Endpoint
676-
from .models.entity import Entity
677676
from .models.entry import Entry
678677
from .models.error_body import ErrorBody
679678
from .models.error_details import ErrorDetails
@@ -1737,6 +1736,12 @@
17371736
from .models.wfm_bu_schedule_topic_management_unit import WfmBuScheduleTopicManagementUnit
17381737
from .models.wfm_bu_schedule_topic_user_reference import WfmBuScheduleTopicUserReference
17391738
from .models.wfm_bu_schedule_topic_wfm_versioned_entity_metadata import WfmBuScheduleTopicWfmVersionedEntityMetadata
1739+
from .models.wfm_bulk_shift_trade_state_update_notification_topic_bulk_shift_trade_state_update_notification import WfmBulkShiftTradeStateUpdateNotificationTopicBulkShiftTradeStateUpdateNotification
1740+
from .models.wfm_bulk_shift_trade_state_update_notification_topic_bulk_shift_trade_state_update_result import WfmBulkShiftTradeStateUpdateNotificationTopicBulkShiftTradeStateUpdateResult
1741+
from .models.wfm_bulk_shift_trade_state_update_notification_topic_bulk_shift_trade_state_update_result_listing import WfmBulkShiftTradeStateUpdateNotificationTopicBulkShiftTradeStateUpdateResultListing
1742+
from .models.wfm_bulk_shift_trade_state_update_notification_topic_local_date import WfmBulkShiftTradeStateUpdateNotificationTopicLocalDate
1743+
from .models.wfm_bulk_shift_trade_state_update_notification_topic_user_reference import WfmBulkShiftTradeStateUpdateNotificationTopicUserReference
1744+
from .models.wfm_bulk_shift_trade_state_update_notification_topic_wfm_versioned_entity_metadata import WfmBulkShiftTradeStateUpdateNotificationTopicWfmVersionedEntityMetadata
17401745
from .models.wfm_forecast_modification import WfmForecastModification
17411746
from .models.wfm_forecast_modification_attributes import WfmForecastModificationAttributes
17421747
from .models.wfm_forecast_modification_interval_offset_value import WfmForecastModificationIntervalOffsetValue

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def __call_api(self, resource_path, method,
185185
header_params['Cookie'] = self.cookie
186186
if header_params:
187187
header_params = self.sanitize_for_serialization(header_params)
188-
header_params['purecloud-sdk'] = '71.0.0'
188+
header_params['purecloud-sdk'] = '72.0.0'
189189

190190
# path parameters
191191
if path_params:

build/PureCloudPlatformClientV2/apis/notifications_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def post_notifications_channel_subscriptions(self, channel_id, body, **kwargs):
439439
def post_notifications_channels(self, **kwargs):
440440
"""
441441
Create a new channel
442-
There is a limit of 20 channels per user/app combination. Creating a 21st channel will remove the channel with oldest last used date.
442+
There is a limit of 20 channels per user/app combination. Creating a 21st channel will remove the channel with oldest last used date. Channels without an active connection will be removed first.
443443
444444
This method makes a synchronous HTTP request by default. To make an
445445
asynchronous HTTP request, please define a `callback` function

build/PureCloudPlatformClientV2/apis/workforce_management_api.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4218,12 +4218,14 @@ def post_workforcemanagement_managementunit_agentschedules_search(self, mu_id, *
42184218
for asynchronous request. (optional)
42194219
:param str mu_id: The management unit ID of the management unit, or 'mine' for the management unit of the logged-in user. (required)
42204220
:param BuSearchAgentSchedulesRequest body: body
4221+
:param bool force_async: Force the result of this operation to be sent asynchronously via notification. For testing/app development purposes
4222+
:param bool force_download_service: Force the result of this operation to be sent via download service. For testing/app development purposes
42214223
:return: UserScheduleContainer
42224224
If the method is called asynchronously,
42234225
returns the request thread.
42244226
"""
42254227

4226-
all_params = ['mu_id', 'body']
4228+
all_params = ['mu_id', 'body', 'force_async', 'force_download_service']
42274229
all_params.append('callback')
42284230

42294231
params = locals()
@@ -4247,6 +4249,10 @@ def post_workforcemanagement_managementunit_agentschedules_search(self, mu_id, *
42474249
path_params['muId'] = params['mu_id']
42484250

42494251
query_params = {}
4252+
if 'force_async' in params:
4253+
query_params['forceAsync'] = params['force_async']
4254+
if 'force_download_service' in params:
4255+
query_params['forceDownloadService'] = params['force_download_service']
42504256

42514257
header_params = {}
42524258

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: 71.0.0".\
252+
"SDK Package Version: 72.0.0".\
253253
format(env=sys.platform, pyversion=sys.version)

build/PureCloudPlatformClientV2/models/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,6 @@
673673
from .encryption_key import EncryptionKey
674674
from .encryption_key_entity_listing import EncryptionKeyEntityListing
675675
from .endpoint import Endpoint
676-
from .entity import Entity
677676
from .entry import Entry
678677
from .error_body import ErrorBody
679678
from .error_details import ErrorDetails
@@ -1737,6 +1736,12 @@
17371736
from .wfm_bu_schedule_topic_management_unit import WfmBuScheduleTopicManagementUnit
17381737
from .wfm_bu_schedule_topic_user_reference import WfmBuScheduleTopicUserReference
17391738
from .wfm_bu_schedule_topic_wfm_versioned_entity_metadata import WfmBuScheduleTopicWfmVersionedEntityMetadata
1739+
from .wfm_bulk_shift_trade_state_update_notification_topic_bulk_shift_trade_state_update_notification import WfmBulkShiftTradeStateUpdateNotificationTopicBulkShiftTradeStateUpdateNotification
1740+
from .wfm_bulk_shift_trade_state_update_notification_topic_bulk_shift_trade_state_update_result import WfmBulkShiftTradeStateUpdateNotificationTopicBulkShiftTradeStateUpdateResult
1741+
from .wfm_bulk_shift_trade_state_update_notification_topic_bulk_shift_trade_state_update_result_listing import WfmBulkShiftTradeStateUpdateNotificationTopicBulkShiftTradeStateUpdateResultListing
1742+
from .wfm_bulk_shift_trade_state_update_notification_topic_local_date import WfmBulkShiftTradeStateUpdateNotificationTopicLocalDate
1743+
from .wfm_bulk_shift_trade_state_update_notification_topic_user_reference import WfmBulkShiftTradeStateUpdateNotificationTopicUserReference
1744+
from .wfm_bulk_shift_trade_state_update_notification_topic_wfm_versioned_entity_metadata import WfmBulkShiftTradeStateUpdateNotificationTopicWfmVersionedEntityMetadata
17401745
from .wfm_forecast_modification import WfmForecastModification
17411746
from .wfm_forecast_modification_attributes import WfmForecastModificationAttributes
17421747
from .wfm_forecast_modification_interval_offset_value import WfmForecastModificationIntervalOffsetValue

build/PureCloudPlatformClientV2/models/action_entity_listing.py

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ def __init__(self):
4545
'page_number': 'int',
4646
'total': 'int',
4747
'first_uri': 'str',
48-
'previous_uri': 'str',
48+
'self_uri': 'str',
4949
'last_uri': 'str',
5050
'next_uri': 'str',
51-
'self_uri': 'str',
51+
'previous_uri': 'str',
5252
'page_count': 'int'
5353
}
5454

@@ -58,10 +58,10 @@ def __init__(self):
5858
'page_number': 'pageNumber',
5959
'total': 'total',
6060
'first_uri': 'firstUri',
61-
'previous_uri': 'previousUri',
61+
'self_uri': 'selfUri',
6262
'last_uri': 'lastUri',
6363
'next_uri': 'nextUri',
64-
'self_uri': 'selfUri',
64+
'previous_uri': 'previousUri',
6565
'page_count': 'pageCount'
6666
}
6767

@@ -70,10 +70,10 @@ def __init__(self):
7070
self._page_number = None
7171
self._total = None
7272
self._first_uri = None
73-
self._previous_uri = None
73+
self._self_uri = None
7474
self._last_uri = None
7575
self._next_uri = None
76-
self._self_uri = None
76+
self._previous_uri = None
7777
self._page_count = None
7878

7979
@property
@@ -192,27 +192,27 @@ def first_uri(self, first_uri):
192192
self._first_uri = first_uri
193193

194194
@property
195-
def previous_uri(self):
195+
def self_uri(self):
196196
"""
197-
Gets the previous_uri of this ActionEntityListing.
197+
Gets the self_uri of this ActionEntityListing.
198198
199199
200-
:return: The previous_uri of this ActionEntityListing.
200+
:return: The self_uri of this ActionEntityListing.
201201
:rtype: str
202202
"""
203-
return self._previous_uri
203+
return self._self_uri
204204

205-
@previous_uri.setter
206-
def previous_uri(self, previous_uri):
205+
@self_uri.setter
206+
def self_uri(self, self_uri):
207207
"""
208-
Sets the previous_uri of this ActionEntityListing.
208+
Sets the self_uri of this ActionEntityListing.
209209
210210
211-
:param previous_uri: The previous_uri of this ActionEntityListing.
211+
:param self_uri: The self_uri of this ActionEntityListing.
212212
:type: str
213213
"""
214214

215-
self._previous_uri = previous_uri
215+
self._self_uri = self_uri
216216

217217
@property
218218
def last_uri(self):
@@ -261,27 +261,27 @@ def next_uri(self, next_uri):
261261
self._next_uri = next_uri
262262

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

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

284-
self._self_uri = self_uri
284+
self._previous_uri = previous_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
@@ -43,8 +43,8 @@ def __init__(self):
4343
'id': 'str',
4444
'name': 'str',
4545
'relying_party_identifier': 'str',
46-
'certificate': 'str',
4746
'issuer_uri': 'str',
47+
'certificate': 'str',
4848
'sso_target_uri': 'str',
4949
'disabled': 'bool',
5050
'self_uri': 'str'
@@ -54,8 +54,8 @@ def __init__(self):
5454
'id': 'id',
5555
'name': 'name',
5656
'relying_party_identifier': 'relyingPartyIdentifier',
57-
'certificate': 'certificate',
5857
'issuer_uri': 'issuerURI',
58+
'certificate': 'certificate',
5959
'sso_target_uri': 'ssoTargetURI',
6060
'disabled': 'disabled',
6161
'self_uri': 'selfUri'
@@ -64,8 +64,8 @@ def __init__(self):
6464
self._id = None
6565
self._name = None
6666
self._relying_party_identifier = None
67-
self._certificate = None
6867
self._issuer_uri = None
68+
self._certificate = None
6969
self._sso_target_uri = None
7070
self._disabled = None
7171
self._self_uri = None
@@ -140,50 +140,50 @@ def relying_party_identifier(self, relying_party_identifier):
140140
self._relying_party_identifier = relying_party_identifier
141141

142142
@property
143-
def certificate(self):
143+
def issuer_uri(self):
144144
"""
145-
Gets the certificate of this ADFS.
145+
Gets the issuer_uri of this ADFS.
146146
147147
148-
:return: The certificate of this ADFS.
148+
:return: The issuer_uri of this ADFS.
149149
:rtype: str
150150
"""
151-
return self._certificate
151+
return self._issuer_uri
152152

153-
@certificate.setter
154-
def certificate(self, certificate):
153+
@issuer_uri.setter
154+
def issuer_uri(self, issuer_uri):
155155
"""
156-
Sets the certificate of this ADFS.
156+
Sets the issuer_uri of this ADFS.
157157
158158
159-
:param certificate: The certificate of this ADFS.
159+
:param issuer_uri: The issuer_uri of this ADFS.
160160
:type: str
161161
"""
162162

163-
self._certificate = certificate
163+
self._issuer_uri = issuer_uri
164164

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

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

186-
self._issuer_uri = issuer_uri
186+
self._certificate = certificate
187187

188188
@property
189189
def sso_target_uri(self):

0 commit comments

Comments
 (0)