Skip to content

Commit 275b060

Browse files
author
InIn Devops
committed
3.0.2
1 parent 3dc08ca commit 275b060

File tree

254 files changed

+2845
-2845
lines changed

Some content is hidden

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

254 files changed

+2845
-2845
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.1".\
241+
"SDK Package Version: 3.0.2".\
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: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ def __init__(self):
4444
'total': 'int',
4545
'self_uri': 'str',
4646
'first_uri': 'str',
47-
'next_uri': 'str',
4847
'previous_uri': 'str',
48+
'next_uri': 'str',
4949
'last_uri': 'str',
5050
'page_count': 'int'
5151
}
@@ -57,8 +57,8 @@ def __init__(self):
5757
'total': 'total',
5858
'self_uri': 'selfUri',
5959
'first_uri': 'firstUri',
60-
'next_uri': 'nextUri',
6160
'previous_uri': 'previousUri',
61+
'next_uri': 'nextUri',
6262
'last_uri': 'lastUri',
6363
'page_count': 'pageCount'
6464
}
@@ -69,8 +69,8 @@ def __init__(self):
6969
self._total = None
7070
self._self_uri = None
7171
self._first_uri = None
72-
self._next_uri = None
7372
self._previous_uri = None
73+
self._next_uri = None
7474
self._last_uri = None
7575
self._page_count = None
7676

@@ -213,50 +213,50 @@ def first_uri(self, first_uri):
213213
self._first_uri = first_uri
214214

215215
@property
216-
def next_uri(self):
216+
def previous_uri(self):
217217
"""
218-
Gets the next_uri of this AgentActivityEntityListing.
218+
Gets the previous_uri of this AgentActivityEntityListing.
219219
220220
221-
:return: The next_uri of this AgentActivityEntityListing.
221+
:return: The previous_uri of this AgentActivityEntityListing.
222222
:rtype: str
223223
"""
224-
return self._next_uri
224+
return self._previous_uri
225225

226-
@next_uri.setter
227-
def next_uri(self, next_uri):
226+
@previous_uri.setter
227+
def previous_uri(self, previous_uri):
228228
"""
229-
Sets the next_uri of this AgentActivityEntityListing.
229+
Sets the previous_uri of this AgentActivityEntityListing.
230230
231231
232-
:param next_uri: The next_uri of this AgentActivityEntityListing.
232+
:param previous_uri: The previous_uri of this AgentActivityEntityListing.
233233
:type: str
234234
"""
235235

236-
self._next_uri = next_uri
236+
self._previous_uri = previous_uri
237237

238238
@property
239-
def previous_uri(self):
239+
def next_uri(self):
240240
"""
241-
Gets the previous_uri of this AgentActivityEntityListing.
241+
Gets the next_uri of this AgentActivityEntityListing.
242242
243243
244-
:return: The previous_uri of this AgentActivityEntityListing.
244+
:return: The next_uri of this AgentActivityEntityListing.
245245
:rtype: str
246246
"""
247-
return self._previous_uri
247+
return self._next_uri
248248

249-
@previous_uri.setter
250-
def previous_uri(self, previous_uri):
249+
@next_uri.setter
250+
def next_uri(self, next_uri):
251251
"""
252-
Sets the previous_uri of this AgentActivityEntityListing.
252+
Sets the next_uri of this AgentActivityEntityListing.
253253
254254
255-
:param previous_uri: The previous_uri of this AgentActivityEntityListing.
255+
:param next_uri: The next_uri of this AgentActivityEntityListing.
256256
:type: str
257257
"""
258258

259-
self._previous_uri = previous_uri
259+
self._next_uri = next_uri
260260

261261
@property
262262
def last_uri(self):

build/PureCloudPlatformClientV2/models/attempt_limits_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ def __init__(self):
4444
'total': 'int',
4545
'self_uri': 'str',
4646
'first_uri': 'str',
47-
'next_uri': 'str',
4847
'previous_uri': 'str',
48+
'next_uri': 'str',
4949
'last_uri': 'str',
5050
'page_count': 'int'
5151
}
@@ -57,8 +57,8 @@ def __init__(self):
5757
'total': 'total',
5858
'self_uri': 'selfUri',
5959
'first_uri': 'firstUri',
60-
'next_uri': 'nextUri',
6160
'previous_uri': 'previousUri',
61+
'next_uri': 'nextUri',
6262
'last_uri': 'lastUri',
6363
'page_count': 'pageCount'
6464
}
@@ -69,8 +69,8 @@ def __init__(self):
6969
self._total = None
7070
self._self_uri = None
7171
self._first_uri = None
72-
self._next_uri = None
7372
self._previous_uri = None
73+
self._next_uri = None
7474
self._last_uri = None
7575
self._page_count = None
7676

@@ -213,50 +213,50 @@ def first_uri(self, first_uri):
213213
self._first_uri = first_uri
214214

215215
@property
216-
def next_uri(self):
216+
def previous_uri(self):
217217
"""
218-
Gets the next_uri of this AttemptLimitsEntityListing.
218+
Gets the previous_uri of this AttemptLimitsEntityListing.
219219
220220
221-
:return: The next_uri of this AttemptLimitsEntityListing.
221+
:return: The previous_uri of this AttemptLimitsEntityListing.
222222
:rtype: str
223223
"""
224-
return self._next_uri
224+
return self._previous_uri
225225

226-
@next_uri.setter
227-
def next_uri(self, next_uri):
226+
@previous_uri.setter
227+
def previous_uri(self, previous_uri):
228228
"""
229-
Sets the next_uri of this AttemptLimitsEntityListing.
229+
Sets the previous_uri of this AttemptLimitsEntityListing.
230230
231231
232-
:param next_uri: The next_uri of this AttemptLimitsEntityListing.
232+
:param previous_uri: The previous_uri of this AttemptLimitsEntityListing.
233233
:type: str
234234
"""
235235

236-
self._next_uri = next_uri
236+
self._previous_uri = previous_uri
237237

238238
@property
239-
def previous_uri(self):
239+
def next_uri(self):
240240
"""
241-
Gets the previous_uri of this AttemptLimitsEntityListing.
241+
Gets the next_uri of this AttemptLimitsEntityListing.
242242
243243
244-
:return: The previous_uri of this AttemptLimitsEntityListing.
244+
:return: The next_uri of this AttemptLimitsEntityListing.
245245
:rtype: str
246246
"""
247-
return self._previous_uri
247+
return self._next_uri
248248

249-
@previous_uri.setter
250-
def previous_uri(self, previous_uri):
249+
@next_uri.setter
250+
def next_uri(self, next_uri):
251251
"""
252-
Sets the previous_uri of this AttemptLimitsEntityListing.
252+
Sets the next_uri of this AttemptLimitsEntityListing.
253253
254254
255-
:param previous_uri: The previous_uri of this AttemptLimitsEntityListing.
255+
:param next_uri: The next_uri of this AttemptLimitsEntityListing.
256256
:type: str
257257
"""
258258

259-
self._previous_uri = previous_uri
259+
self._next_uri = next_uri
260260

261261
@property
262262
def last_uri(self):

0 commit comments

Comments
 (0)