Skip to content

Commit a9c3810

Browse files
author
PureCloud Jenkins
committed
210.0.0
1 parent 330c5a2 commit a9c3810

File tree

479 files changed

+7612
-6613
lines changed

Some content is hidden

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

479 files changed

+7612
-6613
lines changed

build/.openapi-generator/FILES

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2330,6 +2330,8 @@ PureCloudPlatformClientV2/models/knowledge_document_guest_search.py
23302330
PureCloudPlatformClientV2/models/knowledge_document_guest_search_request.py
23312331
PureCloudPlatformClientV2/models/knowledge_document_guest_search_result.py
23322332
PureCloudPlatformClientV2/models/knowledge_document_presentation.py
2333+
PureCloudPlatformClientV2/models/knowledge_document_query.py
2334+
PureCloudPlatformClientV2/models/knowledge_document_query_response.py
23332335
PureCloudPlatformClientV2/models/knowledge_document_reference.py
23342336
PureCloudPlatformClientV2/models/knowledge_document_req.py
23352337
PureCloudPlatformClientV2/models/knowledge_document_request.py
@@ -3466,6 +3468,7 @@ PureCloudPlatformClientV2/models/ring.py
34663468
PureCloudPlatformClientV2/models/role_division.py
34673469
PureCloudPlatformClientV2/models/role_division_grants.py
34683470
PureCloudPlatformClientV2/models/role_division_pair.py
3471+
PureCloudPlatformClientV2/models/role_settings.py
34693472
PureCloudPlatformClientV2/models/room.py
34703473
PureCloudPlatformClientV2/models/room_participant.py
34713474
PureCloudPlatformClientV2/models/room_participant_response.py
@@ -6992,6 +6995,8 @@ docs/KnowledgeDocumentGuestSearch.md
69926995
docs/KnowledgeDocumentGuestSearchRequest.md
69936996
docs/KnowledgeDocumentGuestSearchResult.md
69946997
docs/KnowledgeDocumentPresentation.md
6998+
docs/KnowledgeDocumentQuery.md
6999+
docs/KnowledgeDocumentQueryResponse.md
69957000
docs/KnowledgeDocumentReference.md
69967001
docs/KnowledgeDocumentReq.md
69977002
docs/KnowledgeDocumentRequest.md
@@ -8168,6 +8173,7 @@ docs/Ring.md
81688173
docs/RoleDivision.md
81698174
docs/RoleDivisionGrants.md
81708175
docs/RoleDivisionPair.md
8176+
docs/RoleSettings.md
81718177
docs/Room.md
81728178
docs/RoomParticipant.md
81738179
docs/RoomParticipantResponse.md
@@ -9846,6 +9852,7 @@ docs/get_authorization_role_comparedefault_right_role_id-example.txt
98469852
docs/get_authorization_role_subjectgrants-example.txt
98479853
docs/get_authorization_role_users-example.txt
98489854
docs/get_authorization_roles-example.txt
9855+
docs/get_authorization_roles_settings-example.txt
98499856
docs/get_authorization_settings-example.txt
98509857
docs/get_authorization_subject-example.txt
98519858
docs/get_authorization_subject-example.txt
@@ -11450,6 +11457,7 @@ docs/post_knowledge_knowledgebase_documents-example.txt
1145011457
docs/post_knowledge_knowledgebase_documents_bulk_remove-example.txt
1145111458
docs/post_knowledge_knowledgebase_documents_bulk_update-example.txt
1145211459
docs/post_knowledge_knowledgebase_documents_presentations-example.txt
11460+
docs/post_knowledge_knowledgebase_documents_query-example.txt
1145311461
docs/post_knowledge_knowledgebase_documents_search-example.txt
1145411462
docs/post_knowledge_knowledgebase_documents_search_suggestions-example.txt
1145511463
docs/post_knowledge_knowledgebase_documents_versions_bulk_add-example.txt
@@ -11813,6 +11821,7 @@ docs/put_authorization_role-example.txt
1181311821
docs/put_authorization_role_users_add-example.txt
1181411822
docs/put_authorization_role_users_remove-example.txt
1181511823
docs/put_authorization_roles_default-example.txt
11824+
docs/put_authorization_roles_settings-example.txt
1181611825
docs/put_chats_message_reactions-example.txt
1181711826
docs/put_chats_settings-example.txt
1181811827
docs/put_contentmanagement_workspace-example.txt

build/APIData.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6013,6 +6013,13 @@
60136013
"return": "OrganizationRoleEntityListing",
60146014
"example": "import PureCloudPlatformClientV2\nfrom PureCloudPlatformClientV2.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: PureCloud OAuth\nPureCloudPlatformClientV2.configuration.access_token = 'your_access_token'\n# or use get_client_credentials_token(...), get_saml2bearer_token(...), get_code_authorization_token(...) or get_pkce_token(...)\n\n# create an instance of the API class\napi_instance = PureCloudPlatformClientV2.AuthorizationApi();\npage_size = 25 # int | The total page size requested (optional) (default to 25)\npage_number = 1 # int | The page number requested (optional) (default to 1)\nsort_by = 'sort_by_example' # str | variable name requested to sort by (optional)\nexpand = ['expand_example'] # list[str] | variable name requested by expand list (optional)\nnext_page = 'next_page_example' # str | next page token (optional)\nprevious_page = 'previous_page_example' # str | Previous page token (optional)\nname = 'name_example' # str | (optional)\npermission = ['permission_example'] # list[str] | (optional)\ndefault_role_id = ['default_role_id_example'] # list[str] | (optional)\nuser_count = True # bool | (optional) (default to True)\nid = ['id_example'] # list[str] | id (optional)\n\ntry:\n # Retrieve a list of all roles defined for the organization\n api_response = api_instance.get_authorization_roles(page_size=page_size, page_number=page_number, sort_by=sort_by, expand=expand, next_page=next_page, previous_page=previous_page, name=name, permission=permission, default_role_id=default_role_id, user_count=user_count, id=id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling AuthorizationApi->get_authorization_roles: %s\\n\" % e)"
60156015
},
6016+
"get_authorization_roles_settings": {
6017+
"operationId": "get_authorization_roles_settings",
6018+
"functionName": "get_authorization_roles_settings",
6019+
"signature": "get_authorization_roles_settings()",
6020+
"return": "RoleSettings",
6021+
"example": "import PureCloudPlatformClientV2\nfrom PureCloudPlatformClientV2.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: PureCloud OAuth\nPureCloudPlatformClientV2.configuration.access_token = 'your_access_token'\n# or use get_client_credentials_token(...), get_saml2bearer_token(...), get_code_authorization_token(...) or get_pkce_token(...)\n\n# create an instance of the API class\napi_instance = PureCloudPlatformClientV2.AuthorizationApi();\n\ntry:\n # Get authorization role settings\n api_response = api_instance.get_authorization_roles_settings()\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling AuthorizationApi->get_authorization_roles_settings: %s\\n\" % e)"
6022+
},
60166023
"get_authorization_settings": {
60176024
"operationId": "get_authorization_settings",
60186025
"functionName": "get_authorization_settings",
@@ -6427,6 +6434,20 @@
64276434
"return": "OrganizationRoleEntityListing",
64286435
"example": "import PureCloudPlatformClientV2\nfrom PureCloudPlatformClientV2.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: PureCloud OAuth\nPureCloudPlatformClientV2.configuration.access_token = 'your_access_token'\n# or use get_client_credentials_token(...), get_saml2bearer_token(...), get_code_authorization_token(...) or get_pkce_token(...)\n\n# create an instance of the API class\napi_instance = PureCloudPlatformClientV2.AuthorizationApi();\nbody = [PureCloudPlatformClientV2.DomainOrganizationRole()] # list[DomainOrganizationRole] | Organization roles list\n\ntry:\n # Restore specified default roles\n api_response = api_instance.put_authorization_roles_default(body)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling AuthorizationApi->put_authorization_roles_default: %s\\n\" % e)"
64296436
},
6437+
"put_authorization_roles_settings": {
6438+
"operationId": "put_authorization_roles_settings",
6439+
"functionName": "put_authorization_roles_settings",
6440+
"signature": "put_authorization_roles_settings(body)",
6441+
"parameters": [
6442+
{
6443+
"name": "body",
6444+
"type": "RoleSettings",
6445+
"required": "true"
6446+
}
6447+
],
6448+
"return": "RoleSettings",
6449+
"example": "import PureCloudPlatformClientV2\nfrom PureCloudPlatformClientV2.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: PureCloud OAuth\nPureCloudPlatformClientV2.configuration.access_token = 'your_access_token'\n# or use get_client_credentials_token(...), get_saml2bearer_token(...), get_code_authorization_token(...) or get_pkce_token(...)\n\n# create an instance of the API class\napi_instance = PureCloudPlatformClientV2.AuthorizationApi();\nbody = PureCloudPlatformClientV2.RoleSettings() # RoleSettings | Authorization Role Settings\n\ntry:\n # Change authorization role settings\n api_response = api_instance.put_authorization_roles_settings(body)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling AuthorizationApi->put_authorization_roles_settings: %s\\n\" % e)"
6450+
},
64306451
"put_user_roles": {
64316452
"operationId": "put_user_roles",
64326453
"functionName": "put_user_roles",
@@ -22070,6 +22091,30 @@
2207022091
],
2207122092
"example": "import PureCloudPlatformClientV2\nfrom PureCloudPlatformClientV2.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: PureCloud OAuth\nPureCloudPlatformClientV2.configuration.access_token = 'your_access_token'\n# or use get_client_credentials_token(...), get_saml2bearer_token(...), get_code_authorization_token(...) or get_pkce_token(...)\n\n# create an instance of the API class\napi_instance = PureCloudPlatformClientV2.KnowledgeApi();\nknowledge_base_id = 'knowledge_base_id_example' # str | Knowledge base ID.\nbody = PureCloudPlatformClientV2.KnowledgeDocumentPresentation() # KnowledgeDocumentPresentation | (optional)\n\ntry:\n # Indicate that documents were presented to the user.\n api_instance.post_knowledge_knowledgebase_documents_presentations(knowledge_base_id, body=body)\nexcept ApiException as e:\n print(\"Exception when calling KnowledgeApi->post_knowledge_knowledgebase_documents_presentations: %s\\n\" % e)"
2207222093
},
22094+
"post_knowledge_knowledgebase_documents_query": {
22095+
"operationId": "post_knowledge_knowledgebase_documents_query",
22096+
"functionName": "post_knowledge_knowledgebase_documents_query",
22097+
"signature": "post_knowledge_knowledgebase_documents_query(knowledge_base_id, expand, body)",
22098+
"parameters": [
22099+
{
22100+
"name": "knowledge_base_id",
22101+
"type": "str",
22102+
"required": "true"
22103+
},
22104+
{
22105+
"name": "expand",
22106+
"type": "list[str]",
22107+
"required": "false"
22108+
},
22109+
{
22110+
"name": "body",
22111+
"type": "KnowledgeDocumentQuery",
22112+
"required": "false"
22113+
}
22114+
],
22115+
"return": "KnowledgeDocumentQueryResponse",
22116+
"example": "import PureCloudPlatformClientV2\nfrom PureCloudPlatformClientV2.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: PureCloud OAuth\nPureCloudPlatformClientV2.configuration.access_token = 'your_access_token'\n# or use get_client_credentials_token(...), get_saml2bearer_token(...), get_code_authorization_token(...) or get_pkce_token(...)\n\n# create an instance of the API class\napi_instance = PureCloudPlatformClientV2.KnowledgeApi();\nknowledge_base_id = 'knowledge_base_id_example' # str | Knowledge Base ID\nexpand = ['expand_example'] # list[str] | Fields, if any, to expand for each document in the search result matching the query. (optional)\nbody = PureCloudPlatformClientV2.KnowledgeDocumentQuery() # KnowledgeDocumentQuery | (optional)\n\ntry:\n # Query for knowledge documents.\n api_response = api_instance.post_knowledge_knowledgebase_documents_query(knowledge_base_id, expand=expand, body=body)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling KnowledgeApi->post_knowledge_knowledgebase_documents_query: %s\\n\" % e)"
22117+
},
2207322118
"post_knowledge_knowledgebase_documents_search": {
2207422119
"operationId": "post_knowledge_knowledgebase_documents_search",
2207522120
"functionName": "post_knowledge_knowledgebase_documents_search",

build/PureCloudPlatformClientV2/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2249,6 +2249,8 @@
22492249
from .models.knowledge_document_guest_search_request import KnowledgeDocumentGuestSearchRequest
22502250
from .models.knowledge_document_guest_search_result import KnowledgeDocumentGuestSearchResult
22512251
from .models.knowledge_document_presentation import KnowledgeDocumentPresentation
2252+
from .models.knowledge_document_query import KnowledgeDocumentQuery
2253+
from .models.knowledge_document_query_response import KnowledgeDocumentQueryResponse
22522254
from .models.knowledge_document_reference import KnowledgeDocumentReference
22532255
from .models.knowledge_document_req import KnowledgeDocumentReq
22542256
from .models.knowledge_document_request import KnowledgeDocumentRequest
@@ -3385,6 +3387,7 @@
33853387
from .models.role_division import RoleDivision
33863388
from .models.role_division_grants import RoleDivisionGrants
33873389
from .models.role_division_pair import RoleDivisionPair
3390+
from .models.role_settings import RoleSettings
33883391
from .models.room import Room
33893392
from .models.room_participant import RoomParticipant
33903393
from .models.room_participant_response import RoomParticipantResponse

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def __call_api(self, resource_path, method,
357357
header_params['Cookie'] = self.cookie
358358
if header_params:
359359
header_params = self.sanitize_for_serialization(header_params)
360-
header_params['purecloud-sdk'] = '209.0.0'
360+
header_params['purecloud-sdk'] = '210.0.0'
361361

362362
# path parameters
363363
if path_params:

build/PureCloudPlatformClientV2/apis/architect_api.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1267,7 +1267,6 @@ def delete_flow_instances_settings_loglevels(self, flow_id: str, **kwargs) -> No
12671267
"""
12681268
Deletes a log level for a flow by flow id.
12691269
Deletes the associated log level for a flow by flow id
1270-
delete_flow_instances_settings_loglevels is a preview method and is subject to both breaking and non-breaking changes at any time without notice
12711270
12721271
This method makes a synchronous HTTP request by default. To make an
12731272
asynchronous HTTP request, please define a `callback` function
@@ -1589,7 +1588,6 @@ def delete_flows_instances_settings_loglevels_default(self, **kwargs) -> None:
15891588
"""
15901589
Resets the org log level to default, base
15911590
Resets the org log level to default, base
1592-
delete_flows_instances_settings_loglevels_default is a preview method and is subject to both breaking and non-breaking changes at any time without notice
15931591
15941592
This method makes a synchronous HTTP request by default. To make an
15951593
asynchronous HTTP request, please define a `callback` function
@@ -4959,7 +4957,6 @@ def get_flow_instances_settings_loglevels(self, flow_id: str, **kwargs) -> 'Flow
49594957
"""
49604958
Retrieves the log level for a flow by flow id.
49614959
Retrieves the log level for a flow by flow id.
4962-
get_flow_instances_settings_loglevels is a preview method and is subject to both breaking and non-breaking changes at any time without notice
49634960
49644961
This method makes a synchronous HTTP request by default. To make an
49654962
asynchronous HTTP request, please define a `callback` function
@@ -6994,7 +6991,6 @@ def get_flows_instances_settings_executiondata(self, **kwargs) -> 'ExecutionData
69946991
"""
69956992
Get the execution history enabled setting.
69966993
Get the execution history enabled setting.
6997-
get_flows_instances_settings_executiondata is a preview method and is subject to both breaking and non-breaking changes at any time without notice
69986994
69996995
This method makes a synchronous HTTP request by default. To make an
70006996
asynchronous HTTP request, please define a `callback` function
@@ -7067,7 +7063,6 @@ def get_flows_instances_settings_loglevels(self, **kwargs) -> 'FlowSettingsRespo
70677063
"""
70687064
Retrieve a list of LogLevels for the organization.
70697065
Returns a paged set of LogLevels per flow id
7070-
get_flows_instances_settings_loglevels is a preview method and is subject to both breaking and non-breaking changes at any time without notice
70717066
70727067
This method makes a synchronous HTTP request by default. To make an
70737068
asynchronous HTTP request, please define a `callback` function
@@ -7149,7 +7144,6 @@ def get_flows_instances_settings_loglevels_characteristics(self, **kwargs) -> 'F
71497144
"""
71507145
Gets the available flow log level characteristics for this organization.
71517146
Log levels can be customized and this returns the set of available characteristics that can be enabled/disabled.
7152-
get_flows_instances_settings_loglevels_characteristics is a preview method and is subject to both breaking and non-breaking changes at any time without notice
71537147
71547148
This method makes a synchronous HTTP request by default. To make an
71557149
asynchronous HTTP request, please define a `callback` function
@@ -7222,7 +7216,6 @@ def get_flows_instances_settings_loglevels_default(self, **kwargs) -> 'FlowSetti
72227216
"""
72237217
Returns the flow default log level.
72247218
Returns the flow default log level which will be used if no specific flow id log level is found.
7225-
get_flows_instances_settings_loglevels_default is a preview method and is subject to both breaking and non-breaking changes at any time without notice
72267219
72277220
This method makes a synchronous HTTP request by default. To make an
72287221
asynchronous HTTP request, please define a `callback` function
@@ -8089,7 +8082,6 @@ def patch_flows_instances_settings_executiondata(self, body: 'ExecutionDataSetti
80898082
"""
80908083
Edit the execution history enabled setting.
80918084
Edit the execution history enabled setting.
8092-
patch_flows_instances_settings_executiondata is a preview method and is subject to both breaking and non-breaking changes at any time without notice
80938085
80948086
This method makes a synchronous HTTP request by default. To make an
80958087
asynchronous HTTP request, please define a `callback` function
@@ -9378,7 +9370,6 @@ def post_flow_instances_settings_loglevels(self, flow_id: str, body: 'FlowLogLev
93789370
"""
93799371
Set the logLevel for a particular flow id
93809372
Assigns a new loglevel to a flow id
9381-
post_flow_instances_settings_loglevels is a preview method and is subject to both breaking and non-breaking changes at any time without notice
93829373
93839374
This method makes a synchronous HTTP request by default. To make an
93849375
asynchronous HTTP request, please define a `callback` function
@@ -11575,7 +11566,6 @@ def put_flow_instances_settings_loglevels(self, flow_id: str, body: 'FlowLogLeve
1157511566
"""
1157611567
Edit the logLevel for a particular flow id
1157711568
Updates the loglevel for a flow id
11578-
put_flow_instances_settings_loglevels is a preview method and is subject to both breaking and non-breaking changes at any time without notice
1157911569
1158011570
This method makes a synchronous HTTP request by default. To make an
1158111571
asynchronous HTTP request, please define a `callback` function
@@ -11837,7 +11827,6 @@ def put_flows_instances_settings_loglevels_default(self, body: 'FlowLogLevelRequ
1183711827
"""
1183811828
Edit the flow default log level.
1183911829
Edit the flow default log level.
11840-
put_flows_instances_settings_loglevels_default is a preview method and is subject to both breaking and non-breaking changes at any time without notice
1184111830
1184211831
This method makes a synchronous HTTP request by default. To make an
1184311832
asynchronous HTTP request, please define a `callback` function

0 commit comments

Comments
 (0)