Skip to content

Commit 022f939

Browse files
author
InIn Devops
committed
9.0.0
1 parent c69bf84 commit 022f939

File tree

318 files changed

+7000
-6928
lines changed

Some content is hidden

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

318 files changed

+7000
-6928
lines changed

build/PureCloudPlatformClientV2/apis/users_api.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,12 +537,13 @@ def get_user(self, user_id, **kwargs):
537537
for asynchronous request. (optional)
538538
:param str user_id: User ID (required)
539539
:param list[str] expand: Which fields, if any, to expand
540+
:param str state: Search for a user with this state
540541
:return: User
541542
If the method is called asynchronously,
542543
returns the request thread.
543544
"""
544545

545-
all_params = ['user_id', 'expand']
546+
all_params = ['user_id', 'expand', 'state']
546547
all_params.append('callback')
547548

548549
params = locals()
@@ -568,6 +569,8 @@ def get_user(self, user_id, **kwargs):
568569
query_params = {}
569570
if 'expand' in params:
570571
query_params['expand'] = params['expand']
572+
if 'state' in params:
573+
query_params['state'] = params['state']
571574

572575
header_params = {}
573576

build/PureCloudPlatformClientV2/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,5 +238,5 @@ def to_debug_report(self):
238238
"OS: {env}\n"\
239239
"Python Version: {pyversion}\n"\
240240
"Version of the API: v2\n"\
241-
"SDK Package Version: 8.0.0".\
241+
"SDK Package Version: 9.0.0".\
242242
format(env=sys.platform, pyversion=sys.version)

build/PureCloudPlatformClientV2/models/adfs.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ def __init__(self):
4242
'name': 'str',
4343
'relying_party_identifier': 'str',
4444
'certificate': 'str',
45-
'issuer_uri': 'str',
4645
'sso_target_uri': 'str',
46+
'issuer_uri': 'str',
4747
'disabled': 'bool',
4848
'self_uri': 'str'
4949
}
@@ -53,8 +53,8 @@ def __init__(self):
5353
'name': 'name',
5454
'relying_party_identifier': 'relyingPartyIdentifier',
5555
'certificate': 'certificate',
56-
'issuer_uri': 'issuerURI',
5756
'sso_target_uri': 'ssoTargetURI',
57+
'issuer_uri': 'issuerURI',
5858
'disabled': 'disabled',
5959
'self_uri': 'selfUri'
6060
}
@@ -63,8 +63,8 @@ def __init__(self):
6363
self._name = None
6464
self._relying_party_identifier = None
6565
self._certificate = None
66-
self._issuer_uri = None
6766
self._sso_target_uri = None
67+
self._issuer_uri = None
6868
self._disabled = None
6969
self._self_uri = None
7070

@@ -161,50 +161,50 @@ def certificate(self, certificate):
161161
self._certificate = certificate
162162

163163
@property
164-
def issuer_uri(self):
164+
def sso_target_uri(self):
165165
"""
166-
Gets the issuer_uri of this ADFS.
166+
Gets the sso_target_uri of this ADFS.
167167
168168
169-
:return: The issuer_uri of this ADFS.
169+
:return: The sso_target_uri of this ADFS.
170170
:rtype: str
171171
"""
172-
return self._issuer_uri
172+
return self._sso_target_uri
173173

174-
@issuer_uri.setter
175-
def issuer_uri(self, issuer_uri):
174+
@sso_target_uri.setter
175+
def sso_target_uri(self, sso_target_uri):
176176
"""
177-
Sets the issuer_uri of this ADFS.
177+
Sets the sso_target_uri of this ADFS.
178178
179179
180-
:param issuer_uri: The issuer_uri of this ADFS.
180+
:param sso_target_uri: The sso_target_uri of this ADFS.
181181
:type: str
182182
"""
183183

184-
self._issuer_uri = issuer_uri
184+
self._sso_target_uri = sso_target_uri
185185

186186
@property
187-
def sso_target_uri(self):
187+
def issuer_uri(self):
188188
"""
189-
Gets the sso_target_uri of this ADFS.
189+
Gets the issuer_uri of this ADFS.
190190
191191
192-
:return: The sso_target_uri of this ADFS.
192+
:return: The issuer_uri of this ADFS.
193193
:rtype: str
194194
"""
195-
return self._sso_target_uri
195+
return self._issuer_uri
196196

197-
@sso_target_uri.setter
198-
def sso_target_uri(self, sso_target_uri):
197+
@issuer_uri.setter
198+
def issuer_uri(self, issuer_uri):
199199
"""
200-
Sets the sso_target_uri of this ADFS.
200+
Sets the issuer_uri of this ADFS.
201201
202202
203-
:param sso_target_uri: The sso_target_uri of this ADFS.
203+
:param issuer_uri: The issuer_uri of this ADFS.
204204
:type: str
205205
"""
206206

207-
self._sso_target_uri = sso_target_uri
207+
self._issuer_uri = issuer_uri
208208

209209
@property
210210
def disabled(self):

build/PureCloudPlatformClientV2/models/agent_activity_entity_listing.py

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ def __init__(self):
4242
'page_size': 'int',
4343
'page_number': 'int',
4444
'total': 'int',
45-
'first_uri': 'str',
4645
'self_uri': 'str',
47-
'previous_uri': 'str',
46+
'first_uri': 'str',
4847
'next_uri': 'str',
48+
'previous_uri': 'str',
4949
'last_uri': 'str',
5050
'page_count': 'int'
5151
}
@@ -55,10 +55,10 @@ def __init__(self):
5555
'page_size': 'pageSize',
5656
'page_number': 'pageNumber',
5757
'total': 'total',
58-
'first_uri': 'firstUri',
5958
'self_uri': 'selfUri',
60-
'previous_uri': 'previousUri',
59+
'first_uri': 'firstUri',
6160
'next_uri': 'nextUri',
61+
'previous_uri': 'previousUri',
6262
'last_uri': 'lastUri',
6363
'page_count': 'pageCount'
6464
}
@@ -67,10 +67,10 @@ def __init__(self):
6767
self._page_size = None
6868
self._page_number = None
6969
self._total = None
70-
self._first_uri = None
7170
self._self_uri = None
72-
self._previous_uri = None
71+
self._first_uri = None
7372
self._next_uri = None
73+
self._previous_uri = None
7474
self._last_uri = None
7575
self._page_count = None
7676

@@ -166,29 +166,6 @@ def total(self, total):
166166

167167
self._total = total
168168

169-
@property
170-
def first_uri(self):
171-
"""
172-
Gets the first_uri of this AgentActivityEntityListing.
173-
174-
175-
:return: The first_uri of this AgentActivityEntityListing.
176-
:rtype: str
177-
"""
178-
return self._first_uri
179-
180-
@first_uri.setter
181-
def first_uri(self, first_uri):
182-
"""
183-
Sets the first_uri of this AgentActivityEntityListing.
184-
185-
186-
:param first_uri: The first_uri of this AgentActivityEntityListing.
187-
:type: str
188-
"""
189-
190-
self._first_uri = first_uri
191-
192169
@property
193170
def self_uri(self):
194171
"""
@@ -213,27 +190,27 @@ def self_uri(self, self_uri):
213190
self._self_uri = self_uri
214191

215192
@property
216-
def previous_uri(self):
193+
def first_uri(self):
217194
"""
218-
Gets the previous_uri of this AgentActivityEntityListing.
195+
Gets the first_uri of this AgentActivityEntityListing.
219196
220197
221-
:return: The previous_uri of this AgentActivityEntityListing.
198+
:return: The first_uri of this AgentActivityEntityListing.
222199
:rtype: str
223200
"""
224-
return self._previous_uri
201+
return self._first_uri
225202

226-
@previous_uri.setter
227-
def previous_uri(self, previous_uri):
203+
@first_uri.setter
204+
def first_uri(self, first_uri):
228205
"""
229-
Sets the previous_uri of this AgentActivityEntityListing.
206+
Sets the first_uri of this AgentActivityEntityListing.
230207
231208
232-
:param previous_uri: The previous_uri of this AgentActivityEntityListing.
209+
:param first_uri: The first_uri of this AgentActivityEntityListing.
233210
:type: str
234211
"""
235212

236-
self._previous_uri = previous_uri
213+
self._first_uri = first_uri
237214

238215
@property
239216
def next_uri(self):
@@ -258,6 +235,29 @@ def next_uri(self, next_uri):
258235

259236
self._next_uri = next_uri
260237

238+
@property
239+
def previous_uri(self):
240+
"""
241+
Gets the previous_uri of this AgentActivityEntityListing.
242+
243+
244+
:return: The previous_uri of this AgentActivityEntityListing.
245+
:rtype: str
246+
"""
247+
return self._previous_uri
248+
249+
@previous_uri.setter
250+
def previous_uri(self, previous_uri):
251+
"""
252+
Sets the previous_uri of this AgentActivityEntityListing.
253+
254+
255+
:param previous_uri: The previous_uri of this AgentActivityEntityListing.
256+
:type: str
257+
"""
258+
259+
self._previous_uri = previous_uri
260+
261261
@property
262262
def last_uri(self):
263263
"""

0 commit comments

Comments
 (0)