Skip to content

Commit 30a8b61

Browse files
author
PureCloud Jenkins
committed
77.0.0
1 parent 183611e commit 30a8b61

25 files changed

Lines changed: 205 additions & 142 deletions

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'] = '76.0.0'
188+
header_params['purecloud-sdk'] = '77.0.0'
189189

190190
# path parameters
191191
if path_params:

build/PureCloudPlatformClientV2/apis/analytics_api.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,12 +528,13 @@ def get_analytics_conversations_details_job_results(self, job_id, **kwargs):
528528
for asynchronous request. (optional)
529529
:param str job_id: jobId (required)
530530
:param str cursor: Indicates where to resume query results (not required for first page)
531+
:param int page_size: The desired maximum number of results
531532
:return: AnalyticsConversationAsyncQueryResponse
532533
If the method is called asynchronously,
533534
returns the request thread.
534535
"""
535536

536-
all_params = ['job_id', 'cursor']
537+
all_params = ['job_id', 'cursor', 'page_size']
537538
all_params.append('callback')
538539

539540
params = locals()
@@ -559,6 +560,8 @@ def get_analytics_conversations_details_job_results(self, job_id, **kwargs):
559560
query_params = {}
560561
if 'cursor' in params:
561562
query_params['cursor'] = params['cursor']
563+
if 'page_size' in params:
564+
query_params['pageSize'] = params['page_size']
562565

563566
header_params = {}
564567

@@ -1539,12 +1542,13 @@ def get_analytics_users_details_job_results(self, job_id, **kwargs):
15391542
for asynchronous request. (optional)
15401543
:param str job_id: jobId (required)
15411544
:param str cursor: Indicates where to resume query results (not required for first page)
1545+
:param int page_size: The desired maximum number of results
15421546
:return: AnalyticsUserDetailsAsyncQueryResponse
15431547
If the method is called asynchronously,
15441548
returns the request thread.
15451549
"""
15461550

1547-
all_params = ['job_id', 'cursor']
1551+
all_params = ['job_id', 'cursor', 'page_size']
15481552
all_params.append('callback')
15491553

15501554
params = locals()
@@ -1570,6 +1574,8 @@ def get_analytics_users_details_job_results(self, job_id, **kwargs):
15701574
query_params = {}
15711575
if 'cursor' in params:
15721576
query_params['cursor'] = params['cursor']
1577+
if 'page_size' in params:
1578+
query_params['pageSize'] = params['page_size']
15731579

15741580
header_params = {}
15751581

build/PureCloudPlatformClientV2/apis/conversations_api.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,12 +1026,13 @@ def get_analytics_conversations_details_job_results(self, job_id, **kwargs):
10261026
for asynchronous request. (optional)
10271027
:param str job_id: jobId (required)
10281028
:param str cursor: Indicates where to resume query results (not required for first page)
1029+
:param int page_size: The desired maximum number of results
10291030
:return: AnalyticsConversationAsyncQueryResponse
10301031
If the method is called asynchronously,
10311032
returns the request thread.
10321033
"""
10331034

1034-
all_params = ['job_id', 'cursor']
1035+
all_params = ['job_id', 'cursor', 'page_size']
10351036
all_params.append('callback')
10361037

10371038
params = locals()
@@ -1057,6 +1058,8 @@ def get_analytics_conversations_details_job_results(self, job_id, **kwargs):
10571058
query_params = {}
10581059
if 'cursor' in params:
10591060
query_params['cursor'] = params['cursor']
1061+
if 'page_size' in params:
1062+
query_params['pageSize'] = params['page_size']
10601063

10611064
header_params = {}
10621065

build/PureCloudPlatformClientV2/apis/users_api.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,12 +789,13 @@ def get_analytics_users_details_job_results(self, job_id, **kwargs):
789789
for asynchronous request. (optional)
790790
:param str job_id: jobId (required)
791791
:param str cursor: Indicates where to resume query results (not required for first page)
792+
:param int page_size: The desired maximum number of results
792793
:return: AnalyticsUserDetailsAsyncQueryResponse
793794
If the method is called asynchronously,
794795
returns the request thread.
795796
"""
796797

797-
all_params = ['job_id', 'cursor']
798+
all_params = ['job_id', 'cursor', 'page_size']
798799
all_params.append('callback')
799800

800801
params = locals()
@@ -820,6 +821,8 @@ def get_analytics_users_details_job_results(self, job_id, **kwargs):
820821
query_params = {}
821822
if 'cursor' in params:
822823
query_params['cursor'] = params['cursor']
824+
if 'page_size' in params:
825+
query_params['pageSize'] = params['page_size']
823826

824827
header_params = {}
825828

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

build/PureCloudPlatformClientV2/models/array_node.py

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@ def __init__(self):
4848
'value_node': 'bool',
4949
'container_node': 'bool',
5050
'missing_node': 'bool',
51-
'integral_number': 'bool',
51+
'pojo': 'bool',
5252
'floating_point_number': 'bool',
53+
'integral_number': 'bool',
5354
'short': 'bool',
5455
'int': 'bool',
5556
'long': 'bool',
@@ -58,7 +59,6 @@ def __init__(self):
5859
'big_integer': 'bool',
5960
'textual': 'bool',
6061
'binary': 'bool',
61-
'pojo': 'bool',
6262
'array': 'bool',
6363
'null': 'bool'
6464
}
@@ -72,8 +72,9 @@ def __init__(self):
7272
'value_node': 'valueNode',
7373
'container_node': 'containerNode',
7474
'missing_node': 'missingNode',
75-
'integral_number': 'integralNumber',
75+
'pojo': 'pojo',
7676
'floating_point_number': 'floatingPointNumber',
77+
'integral_number': 'integralNumber',
7778
'short': 'short',
7879
'int': 'int',
7980
'long': 'long',
@@ -82,7 +83,6 @@ def __init__(self):
8283
'big_integer': 'bigInteger',
8384
'textual': 'textual',
8485
'binary': 'binary',
85-
'pojo': 'pojo',
8686
'array': 'array',
8787
'null': 'null'
8888
}
@@ -95,8 +95,9 @@ def __init__(self):
9595
self._value_node = None
9696
self._container_node = None
9797
self._missing_node = None
98-
self._integral_number = None
98+
self._pojo = None
9999
self._floating_point_number = None
100+
self._integral_number = None
100101
self._short = None
101102
self._int = None
102103
self._long = None
@@ -105,7 +106,6 @@ def __init__(self):
105106
self._big_integer = None
106107
self._textual = None
107108
self._binary = None
108-
self._pojo = None
109109
self._array = None
110110
self._null = None
111111

@@ -298,27 +298,27 @@ def missing_node(self, missing_node):
298298
self._missing_node = missing_node
299299

300300
@property
301-
def integral_number(self):
301+
def pojo(self):
302302
"""
303-
Gets the integral_number of this ArrayNode.
303+
Gets the pojo of this ArrayNode.
304304
305305
306-
:return: The integral_number of this ArrayNode.
306+
:return: The pojo of this ArrayNode.
307307
:rtype: bool
308308
"""
309-
return self._integral_number
309+
return self._pojo
310310

311-
@integral_number.setter
312-
def integral_number(self, integral_number):
311+
@pojo.setter
312+
def pojo(self, pojo):
313313
"""
314-
Sets the integral_number of this ArrayNode.
314+
Sets the pojo of this ArrayNode.
315315
316316
317-
:param integral_number: The integral_number of this ArrayNode.
317+
:param pojo: The pojo of this ArrayNode.
318318
:type: bool
319319
"""
320320

321-
self._integral_number = integral_number
321+
self._pojo = pojo
322322

323323
@property
324324
def floating_point_number(self):
@@ -343,6 +343,29 @@ def floating_point_number(self, floating_point_number):
343343

344344
self._floating_point_number = floating_point_number
345345

346+
@property
347+
def integral_number(self):
348+
"""
349+
Gets the integral_number of this ArrayNode.
350+
351+
352+
:return: The integral_number of this ArrayNode.
353+
:rtype: bool
354+
"""
355+
return self._integral_number
356+
357+
@integral_number.setter
358+
def integral_number(self, integral_number):
359+
"""
360+
Sets the integral_number of this ArrayNode.
361+
362+
363+
:param integral_number: The integral_number of this ArrayNode.
364+
:type: bool
365+
"""
366+
367+
self._integral_number = integral_number
368+
346369
@property
347370
def short(self):
348371
"""
@@ -527,29 +550,6 @@ def binary(self, binary):
527550

528551
self._binary = binary
529552

530-
@property
531-
def pojo(self):
532-
"""
533-
Gets the pojo of this ArrayNode.
534-
535-
536-
:return: The pojo of this ArrayNode.
537-
:rtype: bool
538-
"""
539-
return self._pojo
540-
541-
@pojo.setter
542-
def pojo(self, pojo):
543-
"""
544-
Sets the pojo of this ArrayNode.
545-
546-
547-
:param pojo: The pojo of this ArrayNode.
548-
:type: bool
549-
"""
550-
551-
self._pojo = pojo
552-
553553
@property
554554
def array(self):
555555
"""

build/PureCloudPlatformClientV2/models/audit_log_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def entity_type(self, entity_type):
317317
:param entity_type: The entity_type of this AuditLogMessage.
318318
:type: str
319319
"""
320-
allowed_values = ["Document", "Queue", "Recording", "Role", "VoicemailUserPolicy", "WrapupCode", "AccessToken", "OAuthClient", "AuthOrganization", "AuthUser", "BulkActions", "Feedback", "Topic", "Program"]
320+
allowed_values = ["Document", "Queue", "Recording", "Role", "VoicemailUserPolicy", "WrapupCode", "AccessToken", "OAuthClient", "OAuthClientAuthorization", "AuthOrganization", "AuthUser", "BulkActions", "Feedback", "Topic", "Program"]
321321
if entity_type.lower() not in map(str.lower, allowed_values):
322322
# print "Invalid value for entity_type -> " + entity_type
323323
self._entity_type = "outdated_sdk_version"

build/PureCloudPlatformClientV2/models/certificate_details.py

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def __init__(self):
4545
'expiration_date': 'datetime',
4646
'issue_date': 'datetime',
4747
'expired': 'bool',
48-
'valid': 'bool',
49-
'signature_valid': 'bool'
48+
'signature_valid': 'bool',
49+
'valid': 'bool'
5050
}
5151

5252
self.attribute_map = {
@@ -55,17 +55,17 @@ def __init__(self):
5555
'expiration_date': 'expirationDate',
5656
'issue_date': 'issueDate',
5757
'expired': 'expired',
58-
'valid': 'valid',
59-
'signature_valid': 'signatureValid'
58+
'signature_valid': 'signatureValid',
59+
'valid': 'valid'
6060
}
6161

6262
self._issuer = None
6363
self._subject = None
6464
self._expiration_date = None
6565
self._issue_date = None
6666
self._expired = None
67-
self._valid = None
6867
self._signature_valid = None
68+
self._valid = None
6969

7070
@property
7171
def issuer(self):
@@ -183,50 +183,50 @@ def expired(self, expired):
183183
self._expired = expired
184184

185185
@property
186-
def valid(self):
186+
def signature_valid(self):
187187
"""
188-
Gets the valid of this CertificateDetails.
188+
Gets the signature_valid of this CertificateDetails.
189189
190190
191-
:return: The valid of this CertificateDetails.
191+
:return: The signature_valid of this CertificateDetails.
192192
:rtype: bool
193193
"""
194-
return self._valid
194+
return self._signature_valid
195195

196-
@valid.setter
197-
def valid(self, valid):
196+
@signature_valid.setter
197+
def signature_valid(self, signature_valid):
198198
"""
199-
Sets the valid of this CertificateDetails.
199+
Sets the signature_valid of this CertificateDetails.
200200
201201
202-
:param valid: The valid of this CertificateDetails.
202+
:param signature_valid: The signature_valid of this CertificateDetails.
203203
:type: bool
204204
"""
205205

206-
self._valid = valid
206+
self._signature_valid = signature_valid
207207

208208
@property
209-
def signature_valid(self):
209+
def valid(self):
210210
"""
211-
Gets the signature_valid of this CertificateDetails.
211+
Gets the valid of this CertificateDetails.
212212
213213
214-
:return: The signature_valid of this CertificateDetails.
214+
:return: The valid of this CertificateDetails.
215215
:rtype: bool
216216
"""
217-
return self._signature_valid
217+
return self._valid
218218

219-
@signature_valid.setter
220-
def signature_valid(self, signature_valid):
219+
@valid.setter
220+
def valid(self, valid):
221221
"""
222-
Sets the signature_valid of this CertificateDetails.
222+
Sets the valid of this CertificateDetails.
223223
224224
225-
:param signature_valid: The signature_valid of this CertificateDetails.
225+
:param valid: The valid of this CertificateDetails.
226226
:type: bool
227227
"""
228228

229-
self._signature_valid = signature_valid
229+
self._valid = valid
230230

231231
def to_dict(self):
232232
"""

0 commit comments

Comments
 (0)