@@ -25,6 +25,7 @@ All URIs are relative to *https://api.mypurecloud.com*
2525| [ ** post_guide_versions** ] ( #post_guide_versions ) | Create a guide version.|
2626| [ ** post_guides** ] ( #post_guides ) | Create a guide.|
2727| [ ** post_guides_jobs** ] ( #post_guides_jobs ) | Start a guide content generation job.|
28+ | [ ** post_guides_uploads** ] ( #post_guides_uploads ) | Generate presigned URL for uploading a file content to generate guide|
2829| [ ** put_conversations_summaries_setting** ] ( #put_conversations_summaries_setting ) | Update a summary setting.|
2930
3031
@@ -83,8 +84,6 @@ void (empty response body)
8384
8485Start the deletion of a guide.
8586
86- delete_guide_jobs is a preview method and is subject to both breaking and non-breaking changes at any time without notice
87-
8887Wraps DELETE /api/v2/guides/{guideId}/jobs
8988
9089Requires ALL permissions:
@@ -239,8 +238,6 @@ except ApiException as e:
239238
240239Get guide.
241240
242- get_guide is a preview method and is subject to both breaking and non-breaking changes at any time without notice
243-
244241Wraps GET /api/v2/guides/{guideId}
245242
246243Requires ALL permissions:
@@ -289,8 +286,6 @@ except ApiException as e:
289286
290287Get the specified guide deletion job.
291288
292- get_guide_job is a preview method and is subject to both breaking and non-breaking changes at any time without notice
293-
294289Wraps GET /api/v2/guides/{guideId}/jobs/{jobId}
295290
296291Requires ALL permissions:
@@ -341,8 +336,6 @@ except ApiException as e:
341336
342337Get a guide version.
343338
344- get_guide_version is a preview method and is subject to both breaking and non-breaking changes at any time without notice
345-
346339Wraps GET /api/v2/guides/{guideId}/versions/{versionId}
347340
348341Requires ALL permissions:
@@ -393,8 +386,6 @@ except ApiException as e:
393386
394387Get the status of the publishing job for this guide version.
395388
396- get_guide_version_job is a preview method and is subject to both breaking and non-breaking changes at any time without notice
397-
398389Wraps GET /api/v2/guides/{guideId}/versions/{versionId}/jobs/{jobId}
399390
400391Requires ALL permissions:
@@ -447,8 +438,6 @@ except ApiException as e:
447438
448439Get all guides.
449440
450- get_guides is a preview method and is subject to both breaking and non-breaking changes at any time without notice
451-
452441Wraps GET /api/v2/guides
453442
454443Requires ALL permissions:
@@ -509,8 +498,6 @@ except ApiException as e:
509498
510499Get the status of the guide content generation job.
511500
512- get_guides_job is a preview method and is subject to both breaking and non-breaking changes at any time without notice
513-
514501Wraps GET /api/v2/guides/jobs/{jobId}
515502
516503Requires ALL permissions:
@@ -559,8 +546,6 @@ except ApiException as e:
559546
560547Update a guide.
561548
562- patch_guide is a preview method and is subject to both breaking and non-breaking changes at any time without notice
563-
564549Wraps PATCH /api/v2/guides/{guideId}
565550
566551Requires ALL permissions:
@@ -611,8 +596,6 @@ except ApiException as e:
611596
612597Update a guide version.
613598
614- patch_guide_version is a preview method and is subject to both breaking and non-breaking changes at any time without notice
615-
616599Wraps PATCH /api/v2/guides/{guideId}/versions/{versionId}
617600
618601Requires ALL permissions:
@@ -814,8 +797,6 @@ except ApiException as e:
814797
815798Start the publishing of a guide version.
816799
817- post_guide_version_jobs is a preview method and is subject to both breaking and non-breaking changes at any time without notice
818-
819800Wraps POST /api/v2/guides/{guideId}/versions/{versionId}/jobs
820801
821802Requires ALL permissions:
@@ -868,8 +849,6 @@ except ApiException as e:
868849
869850Create a guide version.
870851
871- post_guide_versions is a preview method and is subject to both breaking and non-breaking changes at any time without notice
872-
873852Wraps POST /api/v2/guides/{guideId}/versions
874853
875854Requires ALL permissions:
@@ -920,8 +899,6 @@ except ApiException as e:
920899
921900Create a guide.
922901
923- post_guides is a preview method and is subject to both breaking and non-breaking changes at any time without notice
924-
925902Wraps POST /api/v2/guides
926903
927904Requires ALL permissions:
@@ -970,8 +947,6 @@ except ApiException as e:
970947
971948Start a guide content generation job.
972949
973- post_guides_jobs is a preview method and is subject to both breaking and non-breaking changes at any time without notice
974-
975950Wraps POST /api/v2/guides/jobs
976951
977952Requires ALL permissions:
@@ -1013,6 +988,54 @@ except ApiException as e:
1013988[ ** GuideContentGenerationJob** ] ( GuideContentGenerationJob )
1014989
1015990
991+ ## post_guides_uploads
992+
993+ > [ ** UploadUrlResponse** ] ( UploadUrlResponse ) post_guides_uploads(body)
994+
995+
996+ Generate presigned URL for uploading a file content to generate guide
997+
998+ Wraps POST /api/v2/guides/uploads
999+
1000+ Requires ALL permissions:
1001+
1002+ * aiStudio:guide: upload
1003+
1004+ ### Example
1005+
1006+ ``` {"language":"python"}
1007+ import time
1008+ import PureCloudPlatformClientV2
1009+ from PureCloudPlatformClientV2.rest import ApiException
1010+ from pprint import pprint
1011+
1012+ # Configure OAuth2 access token for authorization: PureCloud OAuth
1013+ PureCloudPlatformClientV2.configuration.access_token = 'YOUR_ACCESS_TOKEN'
1014+
1015+ # create an instance of the API class
1016+ api_instance = PureCloudPlatformClientV2.AIStudioApi()
1017+ body = PureCloudPlatformClientV2.UploadUrlRequest() # UploadUrlRequest | query
1018+
1019+ try:
1020+ # Generate presigned URL for uploading a file content to generate guide
1021+ api_response = api_instance.post_guides_uploads(body)
1022+ pprint(api_response)
1023+ except ApiException as e:
1024+ print("Exception when calling AIStudioApi->post_guides_uploads: %s\n" % e)
1025+ ```
1026+
1027+ ### Parameters
1028+
1029+
1030+ | Name | Type | Description | Notes|
1031+ | ------------- | ------------- | ------------- | -------------|
1032+ | ** body** | [ ** UploadUrlRequest** ] ( UploadUrlRequest ) | query | |
1033+
1034+ ### Return type
1035+
1036+ [ ** UploadUrlResponse** ] ( UploadUrlResponse )
1037+
1038+
10161039## put_conversations_summaries_setting
10171040
10181041> [ ** SummarySetting** ] ( SummarySetting ) put_conversations_summaries_setting(summary_setting_id, body)
@@ -1063,4 +1086,4 @@ except ApiException as e:
10631086[ ** SummarySetting** ] ( SummarySetting )
10641087
10651088
1066- _ PureCloudPlatformClientV2 247 .0.0_
1089+ _ PureCloudPlatformClientV2 248 .0.0_
0 commit comments