Skip to content

Commit 9eb1579

Browse files
author
InIn Devops
committed
3.0.3
1 parent e4e47a2 commit 9eb1579

File tree

263 files changed

+4996
-4996
lines changed

Some content is hidden

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

263 files changed

+4996
-4996
lines changed

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: 3.0.2".\
241+
"SDK Package Version: 3.0.3".\
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-
'sso_target_uri': 'str',
4645
'issuer_uri': 'str',
46+
'sso_target_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-
'sso_target_uri': 'ssoTargetURI',
5756
'issuer_uri': 'issuerURI',
57+
'sso_target_uri': 'ssoTargetURI',
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._sso_target_uri = None
6766
self._issuer_uri = None
67+
self._sso_target_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 sso_target_uri(self):
164+
def issuer_uri(self):
165165
"""
166-
Gets the sso_target_uri of this ADFS.
166+
Gets the issuer_uri of this ADFS.
167167
168168
169-
:return: The sso_target_uri of this ADFS.
169+
:return: The issuer_uri of this ADFS.
170170
:rtype: str
171171
"""
172-
return self._sso_target_uri
172+
return self._issuer_uri
173173

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

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

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

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

207-
self._issuer_uri = issuer_uri
207+
self._sso_target_uri = sso_target_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,11 +42,11 @@ def __init__(self):
4242
'page_size': 'int',
4343
'page_number': 'int',
4444
'total': 'int',
45-
'self_uri': 'str',
4645
'first_uri': 'str',
46+
'self_uri': 'str',
47+
'last_uri': 'str',
4748
'previous_uri': 'str',
4849
'next_uri': 'str',
49-
'last_uri': 'str',
5050
'page_count': 'int'
5151
}
5252

@@ -55,23 +55,23 @@ def __init__(self):
5555
'page_size': 'pageSize',
5656
'page_number': 'pageNumber',
5757
'total': 'total',
58-
'self_uri': 'selfUri',
5958
'first_uri': 'firstUri',
59+
'self_uri': 'selfUri',
60+
'last_uri': 'lastUri',
6061
'previous_uri': 'previousUri',
6162
'next_uri': 'nextUri',
62-
'last_uri': 'lastUri',
6363
'page_count': 'pageCount'
6464
}
6565

6666
self._entities = None
6767
self._page_size = None
6868
self._page_number = None
6969
self._total = None
70-
self._self_uri = None
7170
self._first_uri = None
71+
self._self_uri = None
72+
self._last_uri = None
7273
self._previous_uri = None
7374
self._next_uri = None
74-
self._last_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -166,6 +166,29 @@ 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+
169192
@property
170193
def self_uri(self):
171194
"""
@@ -190,27 +213,27 @@ def self_uri(self, self_uri):
190213
self._self_uri = self_uri
191214

192215
@property
193-
def first_uri(self):
216+
def last_uri(self):
194217
"""
195-
Gets the first_uri of this AgentActivityEntityListing.
218+
Gets the last_uri of this AgentActivityEntityListing.
196219
197220
198-
:return: The first_uri of this AgentActivityEntityListing.
221+
:return: The last_uri of this AgentActivityEntityListing.
199222
:rtype: str
200223
"""
201-
return self._first_uri
224+
return self._last_uri
202225

203-
@first_uri.setter
204-
def first_uri(self, first_uri):
226+
@last_uri.setter
227+
def last_uri(self, last_uri):
205228
"""
206-
Sets the first_uri of this AgentActivityEntityListing.
229+
Sets the last_uri of this AgentActivityEntityListing.
207230
208231
209-
:param first_uri: The first_uri of this AgentActivityEntityListing.
232+
:param last_uri: The last_uri of this AgentActivityEntityListing.
210233
:type: str
211234
"""
212235

213-
self._first_uri = first_uri
236+
self._last_uri = last_uri
214237

215238
@property
216239
def previous_uri(self):
@@ -258,29 +281,6 @@ def next_uri(self, next_uri):
258281

259282
self._next_uri = next_uri
260283

261-
@property
262-
def last_uri(self):
263-
"""
264-
Gets the last_uri of this AgentActivityEntityListing.
265-
266-
267-
:return: The last_uri of this AgentActivityEntityListing.
268-
:rtype: str
269-
"""
270-
return self._last_uri
271-
272-
@last_uri.setter
273-
def last_uri(self, last_uri):
274-
"""
275-
Sets the last_uri of this AgentActivityEntityListing.
276-
277-
278-
:param last_uri: The last_uri of this AgentActivityEntityListing.
279-
:type: str
280-
"""
281-
282-
self._last_uri = last_uri
283-
284284
@property
285285
def page_count(self):
286286
"""

build/PureCloudPlatformClientV2/models/attempt_limits_entity_listing.py

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ def __init__(self):
4242
'page_size': 'int',
4343
'page_number': 'int',
4444
'total': 'int',
45-
'self_uri': 'str',
4645
'first_uri': 'str',
46+
'self_uri': 'str',
47+
'last_uri': 'str',
4748
'previous_uri': 'str',
4849
'next_uri': 'str',
49-
'last_uri': 'str',
5050
'page_count': 'int'
5151
}
5252

@@ -55,23 +55,23 @@ def __init__(self):
5555
'page_size': 'pageSize',
5656
'page_number': 'pageNumber',
5757
'total': 'total',
58-
'self_uri': 'selfUri',
5958
'first_uri': 'firstUri',
59+
'self_uri': 'selfUri',
60+
'last_uri': 'lastUri',
6061
'previous_uri': 'previousUri',
6162
'next_uri': 'nextUri',
62-
'last_uri': 'lastUri',
6363
'page_count': 'pageCount'
6464
}
6565

6666
self._entities = None
6767
self._page_size = None
6868
self._page_number = None
6969
self._total = None
70-
self._self_uri = None
7170
self._first_uri = None
71+
self._self_uri = None
72+
self._last_uri = None
7273
self._previous_uri = None
7374
self._next_uri = None
74-
self._last_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -166,6 +166,29 @@ 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 AttemptLimitsEntityListing.
173+
174+
175+
:return: The first_uri of this AttemptLimitsEntityListing.
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 AttemptLimitsEntityListing.
184+
185+
186+
:param first_uri: The first_uri of this AttemptLimitsEntityListing.
187+
:type: str
188+
"""
189+
190+
self._first_uri = first_uri
191+
169192
@property
170193
def self_uri(self):
171194
"""
@@ -190,27 +213,27 @@ def self_uri(self, self_uri):
190213
self._self_uri = self_uri
191214

192215
@property
193-
def first_uri(self):
216+
def last_uri(self):
194217
"""
195-
Gets the first_uri of this AttemptLimitsEntityListing.
218+
Gets the last_uri of this AttemptLimitsEntityListing.
196219
197220
198-
:return: The first_uri of this AttemptLimitsEntityListing.
221+
:return: The last_uri of this AttemptLimitsEntityListing.
199222
:rtype: str
200223
"""
201-
return self._first_uri
224+
return self._last_uri
202225

203-
@first_uri.setter
204-
def first_uri(self, first_uri):
226+
@last_uri.setter
227+
def last_uri(self, last_uri):
205228
"""
206-
Sets the first_uri of this AttemptLimitsEntityListing.
229+
Sets the last_uri of this AttemptLimitsEntityListing.
207230
208231
209-
:param first_uri: The first_uri of this AttemptLimitsEntityListing.
232+
:param last_uri: The last_uri of this AttemptLimitsEntityListing.
210233
:type: str
211234
"""
212235

213-
self._first_uri = first_uri
236+
self._last_uri = last_uri
214237

215238
@property
216239
def previous_uri(self):
@@ -258,29 +281,6 @@ def next_uri(self, next_uri):
258281

259282
self._next_uri = next_uri
260283

261-
@property
262-
def last_uri(self):
263-
"""
264-
Gets the last_uri of this AttemptLimitsEntityListing.
265-
266-
267-
:return: The last_uri of this AttemptLimitsEntityListing.
268-
:rtype: str
269-
"""
270-
return self._last_uri
271-
272-
@last_uri.setter
273-
def last_uri(self, last_uri):
274-
"""
275-
Sets the last_uri of this AttemptLimitsEntityListing.
276-
277-
278-
:param last_uri: The last_uri of this AttemptLimitsEntityListing.
279-
:type: str
280-
"""
281-
282-
self._last_uri = last_uri
283-
284284
@property
285285
def page_count(self):
286286
"""

0 commit comments

Comments
 (0)