+
+ Read the Docs
+ v: ${config.versions.current.slug}
+
+
+
+
+ ${renderLanguages(config)}
+ ${renderVersions(config)}
+ ${renderDownloads(config)}
+
+ On Read the Docs
+
+ Project Home
+
+
+ Builds
+
+
+ Downloads
+
+
+
+ Search
+
+
+
+
+
+
+ Hosted by Read the Docs
+
+
+
+ `;
+
+ // Inject the generated flyout into the body HTML element.
+ document.body.insertAdjacentHTML("beforeend", flyout);
+
+ // Trigger the Read the Docs Addons Search modal when clicking on the "Search docs" input from inside the flyout.
+ document
+ .querySelector("#flyout-search-form")
+ .addEventListener("focusin", () => {
+ const event = new CustomEvent("readthedocs-search-show");
+ document.dispatchEvent(event);
+ });
+ })
+}
+
+if (themeLanguageSelector || themeVersionSelector) {
+ function onSelectorSwitch(event) {
+ const option = event.target.selectedIndex;
+ const item = event.target.options[option];
+ window.location.href = item.dataset.url;
+ }
+
+ document.addEventListener("readthedocs-addons-data-ready", function (event) {
+ const config = event.detail.data();
+
+ const versionSwitch = document.querySelector(
+ "div.switch-menus > div.version-switch",
+ );
+ if (themeVersionSelector) {
+ let versions = config.versions.active;
+ if (config.versions.current.hidden || config.versions.current.type === "external") {
+ versions.unshift(config.versions.current);
+ }
+ const versionSelect = `
+
+ ${versions
+ .map(
+ (version) => `
+
+ ${version.slug}
+ `,
+ )
+ .join("\n")}
+
+ `;
+
+ versionSwitch.innerHTML = versionSelect;
+ versionSwitch.firstElementChild.addEventListener("change", onSelectorSwitch);
+ }
+
+ const languageSwitch = document.querySelector(
+ "div.switch-menus > div.language-switch",
+ );
+
+ if (themeLanguageSelector) {
+ if (config.projects.translations.length) {
+ // Add the current language to the options on the selector
+ let languages = config.projects.translations.concat(
+ config.projects.current,
+ );
+ languages = languages.sort((a, b) =>
+ a.language.name.localeCompare(b.language.name),
+ );
+
+ const languageSelect = `
+
+ ${languages
+ .map(
+ (language) => `
+
+ ${language.language.name}
+ `,
+ )
+ .join("\n")}
+
+ `;
+
+ languageSwitch.innerHTML = languageSelect;
+ languageSwitch.firstElementChild.addEventListener("change", onSelectorSwitch);
+ }
+ else {
+ languageSwitch.remove();
+ }
+ }
+ });
+}
+
+document.addEventListener("readthedocs-addons-data-ready", function (event) {
+ // Trigger the Read the Docs Addons Search modal when clicking on "Search docs" input from the topnav.
+ document
+ .querySelector("[role='search'] input")
+ .addEventListener("focusin", () => {
+ const event = new CustomEvent("readthedocs-search-show");
+ document.dispatchEvent(event);
+ });
+});
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/_static/language_data.js b/docs/apidocs/4.2.0/_static/language_data.js
new file mode 100644
index 0000000..c7fe6c6
--- /dev/null
+++ b/docs/apidocs/4.2.0/_static/language_data.js
@@ -0,0 +1,192 @@
+/*
+ * This script contains the language-specific data used by searchtools.js,
+ * namely the list of stopwords, stemmer, scorer and splitter.
+ */
+
+var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
+
+
+/* Non-minified version is copied as a separate JS file, if available */
+
+/**
+ * Porter Stemmer
+ */
+var Stemmer = function() {
+
+ var step2list = {
+ ational: 'ate',
+ tional: 'tion',
+ enci: 'ence',
+ anci: 'ance',
+ izer: 'ize',
+ bli: 'ble',
+ alli: 'al',
+ entli: 'ent',
+ eli: 'e',
+ ousli: 'ous',
+ ization: 'ize',
+ ation: 'ate',
+ ator: 'ate',
+ alism: 'al',
+ iveness: 'ive',
+ fulness: 'ful',
+ ousness: 'ous',
+ aliti: 'al',
+ iviti: 'ive',
+ biliti: 'ble',
+ logi: 'log'
+ };
+
+ var step3list = {
+ icate: 'ic',
+ ative: '',
+ alize: 'al',
+ iciti: 'ic',
+ ical: 'ic',
+ ful: '',
+ ness: ''
+ };
+
+ var c = "[^aeiou]"; // consonant
+ var v = "[aeiouy]"; // vowel
+ var C = c + "[^aeiouy]*"; // consonant sequence
+ var V = v + "[aeiou]*"; // vowel sequence
+
+ var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0
+ var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1
+ var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1
+ var s_v = "^(" + C + ")?" + v; // vowel in stem
+
+ this.stemWord = function (w) {
+ var stem;
+ var suffix;
+ var firstch;
+ var origword = w;
+
+ if (w.length < 3)
+ return w;
+
+ var re;
+ var re2;
+ var re3;
+ var re4;
+
+ firstch = w.substr(0,1);
+ if (firstch == "y")
+ w = firstch.toUpperCase() + w.substr(1);
+
+ // Step 1a
+ re = /^(.+?)(ss|i)es$/;
+ re2 = /^(.+?)([^s])s$/;
+
+ if (re.test(w))
+ w = w.replace(re,"$1$2");
+ else if (re2.test(w))
+ w = w.replace(re2,"$1$2");
+
+ // Step 1b
+ re = /^(.+?)eed$/;
+ re2 = /^(.+?)(ed|ing)$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ re = new RegExp(mgr0);
+ if (re.test(fp[1])) {
+ re = /.$/;
+ w = w.replace(re,"");
+ }
+ }
+ else if (re2.test(w)) {
+ var fp = re2.exec(w);
+ stem = fp[1];
+ re2 = new RegExp(s_v);
+ if (re2.test(stem)) {
+ w = stem;
+ re2 = /(at|bl|iz)$/;
+ re3 = new RegExp("([^aeiouylsz])\\1$");
+ re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
+ if (re2.test(w))
+ w = w + "e";
+ else if (re3.test(w)) {
+ re = /.$/;
+ w = w.replace(re,"");
+ }
+ else if (re4.test(w))
+ w = w + "e";
+ }
+ }
+
+ // Step 1c
+ re = /^(.+?)y$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ stem = fp[1];
+ re = new RegExp(s_v);
+ if (re.test(stem))
+ w = stem + "i";
+ }
+
+ // Step 2
+ re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ stem = fp[1];
+ suffix = fp[2];
+ re = new RegExp(mgr0);
+ if (re.test(stem))
+ w = stem + step2list[suffix];
+ }
+
+ // Step 3
+ re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ stem = fp[1];
+ suffix = fp[2];
+ re = new RegExp(mgr0);
+ if (re.test(stem))
+ w = stem + step3list[suffix];
+ }
+
+ // Step 4
+ re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
+ re2 = /^(.+?)(s|t)(ion)$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ stem = fp[1];
+ re = new RegExp(mgr1);
+ if (re.test(stem))
+ w = stem;
+ }
+ else if (re2.test(w)) {
+ var fp = re2.exec(w);
+ stem = fp[1] + fp[2];
+ re2 = new RegExp(mgr1);
+ if (re2.test(stem))
+ w = stem;
+ }
+
+ // Step 5
+ re = /^(.+?)e$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ stem = fp[1];
+ re = new RegExp(mgr1);
+ re2 = new RegExp(meq1);
+ re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
+ if (re.test(stem) || (re2.test(stem) && !(re3.test(stem))))
+ w = stem;
+ }
+ re = /ll$/;
+ re2 = new RegExp(mgr1);
+ if (re.test(w) && re2.test(w)) {
+ re = /.$/;
+ w = w.replace(re,"");
+ }
+
+ // and turn initial Y back to y
+ if (firstch == "y")
+ w = firstch.toLowerCase() + w.substr(1);
+ return w;
+ }
+}
+
diff --git a/docs/apidocs/4.2.0/_static/minus.png b/docs/apidocs/4.2.0/_static/minus.png
new file mode 100644
index 0000000..d96755f
Binary files /dev/null and b/docs/apidocs/4.2.0/_static/minus.png differ
diff --git a/docs/apidocs/4.2.0/_static/plus.png b/docs/apidocs/4.2.0/_static/plus.png
new file mode 100644
index 0000000..7107cec
Binary files /dev/null and b/docs/apidocs/4.2.0/_static/plus.png differ
diff --git a/docs/apidocs/4.2.0/_static/pygments.css b/docs/apidocs/4.2.0/_static/pygments.css
new file mode 100644
index 0000000..5f2b0a2
--- /dev/null
+++ b/docs/apidocs/4.2.0/_static/pygments.css
@@ -0,0 +1,75 @@
+pre { line-height: 125%; }
+td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
+span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
+td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
+span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
+.highlight .hll { background-color: #ffffcc }
+.highlight { background: #eeffcc; }
+.highlight .c { color: #408090; font-style: italic } /* Comment */
+.highlight .err { border: 1px solid #F00 } /* Error */
+.highlight .k { color: #007020; font-weight: bold } /* Keyword */
+.highlight .o { color: #666 } /* Operator */
+.highlight .ch { color: #408090; font-style: italic } /* Comment.Hashbang */
+.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */
+.highlight .cp { color: #007020 } /* Comment.Preproc */
+.highlight .cpf { color: #408090; font-style: italic } /* Comment.PreprocFile */
+.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */
+.highlight .cs { color: #408090; background-color: #FFF0F0 } /* Comment.Special */
+.highlight .gd { color: #A00000 } /* Generic.Deleted */
+.highlight .ge { font-style: italic } /* Generic.Emph */
+.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
+.highlight .gr { color: #F00 } /* Generic.Error */
+.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
+.highlight .gi { color: #00A000 } /* Generic.Inserted */
+.highlight .go { color: #333 } /* Generic.Output */
+.highlight .gp { color: #C65D09; font-weight: bold } /* Generic.Prompt */
+.highlight .gs { font-weight: bold } /* Generic.Strong */
+.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
+.highlight .gt { color: #04D } /* Generic.Traceback */
+.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
+.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
+.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
+.highlight .kp { color: #007020 } /* Keyword.Pseudo */
+.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
+.highlight .kt { color: #902000 } /* Keyword.Type */
+.highlight .m { color: #208050 } /* Literal.Number */
+.highlight .s { color: #4070A0 } /* Literal.String */
+.highlight .na { color: #4070A0 } /* Name.Attribute */
+.highlight .nb { color: #007020 } /* Name.Builtin */
+.highlight .nc { color: #0E84B5; font-weight: bold } /* Name.Class */
+.highlight .no { color: #60ADD5 } /* Name.Constant */
+.highlight .nd { color: #555; font-weight: bold } /* Name.Decorator */
+.highlight .ni { color: #D55537; font-weight: bold } /* Name.Entity */
+.highlight .ne { color: #007020 } /* Name.Exception */
+.highlight .nf { color: #06287E } /* Name.Function */
+.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */
+.highlight .nn { color: #0E84B5; font-weight: bold } /* Name.Namespace */
+.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */
+.highlight .nv { color: #BB60D5 } /* Name.Variable */
+.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */
+.highlight .w { color: #BBB } /* Text.Whitespace */
+.highlight .mb { color: #208050 } /* Literal.Number.Bin */
+.highlight .mf { color: #208050 } /* Literal.Number.Float */
+.highlight .mh { color: #208050 } /* Literal.Number.Hex */
+.highlight .mi { color: #208050 } /* Literal.Number.Integer */
+.highlight .mo { color: #208050 } /* Literal.Number.Oct */
+.highlight .sa { color: #4070A0 } /* Literal.String.Affix */
+.highlight .sb { color: #4070A0 } /* Literal.String.Backtick */
+.highlight .sc { color: #4070A0 } /* Literal.String.Char */
+.highlight .dl { color: #4070A0 } /* Literal.String.Delimiter */
+.highlight .sd { color: #4070A0; font-style: italic } /* Literal.String.Doc */
+.highlight .s2 { color: #4070A0 } /* Literal.String.Double */
+.highlight .se { color: #4070A0; font-weight: bold } /* Literal.String.Escape */
+.highlight .sh { color: #4070A0 } /* Literal.String.Heredoc */
+.highlight .si { color: #70A0D0; font-style: italic } /* Literal.String.Interpol */
+.highlight .sx { color: #C65D09 } /* Literal.String.Other */
+.highlight .sr { color: #235388 } /* Literal.String.Regex */
+.highlight .s1 { color: #4070A0 } /* Literal.String.Single */
+.highlight .ss { color: #517918 } /* Literal.String.Symbol */
+.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
+.highlight .fm { color: #06287E } /* Name.Function.Magic */
+.highlight .vc { color: #BB60D5 } /* Name.Variable.Class */
+.highlight .vg { color: #BB60D5 } /* Name.Variable.Global */
+.highlight .vi { color: #BB60D5 } /* Name.Variable.Instance */
+.highlight .vm { color: #BB60D5 } /* Name.Variable.Magic */
+.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/_static/searchtools.js b/docs/apidocs/4.2.0/_static/searchtools.js
new file mode 100644
index 0000000..2c774d1
--- /dev/null
+++ b/docs/apidocs/4.2.0/_static/searchtools.js
@@ -0,0 +1,632 @@
+/*
+ * Sphinx JavaScript utilities for the full-text search.
+ */
+"use strict";
+
+/**
+ * Simple result scoring code.
+ */
+if (typeof Scorer === "undefined") {
+ var Scorer = {
+ // Implement the following function to further tweak the score for each result
+ // The function takes a result array [docname, title, anchor, descr, score, filename]
+ // and returns the new score.
+ /*
+ score: result => {
+ const [docname, title, anchor, descr, score, filename, kind] = result
+ return score
+ },
+ */
+
+ // query matches the full name of an object
+ objNameMatch: 11,
+ // or matches in the last dotted part of the object name
+ objPartialMatch: 6,
+ // Additive scores depending on the priority of the object
+ objPrio: {
+ 0: 15, // used to be importantResults
+ 1: 5, // used to be objectResults
+ 2: -5, // used to be unimportantResults
+ },
+ // Used when the priority is not in the mapping.
+ objPrioDefault: 0,
+
+ // query found in title
+ title: 15,
+ partialTitle: 7,
+ // query found in terms
+ term: 5,
+ partialTerm: 2,
+ };
+}
+
+// Global search result kind enum, used by themes to style search results.
+class SearchResultKind {
+ static get index() { return "index"; }
+ static get object() { return "object"; }
+ static get text() { return "text"; }
+ static get title() { return "title"; }
+}
+
+const _removeChildren = (element) => {
+ while (element && element.lastChild) element.removeChild(element.lastChild);
+};
+
+/**
+ * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping
+ */
+const _escapeRegExp = (string) =>
+ string.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
+
+const _displayItem = (item, searchTerms, highlightTerms) => {
+ const docBuilder = DOCUMENTATION_OPTIONS.BUILDER;
+ const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX;
+ const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX;
+ const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY;
+ const contentRoot = document.documentElement.dataset.content_root;
+
+ const [docName, title, anchor, descr, score, _filename, kind] = item;
+
+ let listItem = document.createElement("li");
+ // Add a class representing the item's type:
+ // can be used by a theme's CSS selector for styling
+ // See SearchResultKind for the class names.
+ listItem.classList.add(`kind-${kind}`);
+ let requestUrl;
+ let linkUrl;
+ if (docBuilder === "dirhtml") {
+ // dirhtml builder
+ let dirname = docName + "/";
+ if (dirname.match(/\/index\/$/))
+ dirname = dirname.substring(0, dirname.length - 6);
+ else if (dirname === "index/") dirname = "";
+ requestUrl = contentRoot + dirname;
+ linkUrl = requestUrl;
+ } else {
+ // normal html builders
+ requestUrl = contentRoot + docName + docFileSuffix;
+ linkUrl = docName + docLinkSuffix;
+ }
+ let linkEl = listItem.appendChild(document.createElement("a"));
+ linkEl.href = linkUrl + anchor;
+ linkEl.dataset.score = score;
+ linkEl.innerHTML = title;
+ if (descr) {
+ listItem.appendChild(document.createElement("span")).innerHTML =
+ " (" + descr + ")";
+ // highlight search terms in the description
+ if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js
+ highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted"));
+ }
+ else if (showSearchSummary)
+ fetch(requestUrl)
+ .then((responseData) => responseData.text())
+ .then((data) => {
+ if (data)
+ listItem.appendChild(
+ Search.makeSearchSummary(data, searchTerms, anchor)
+ );
+ // highlight search terms in the summary
+ if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js
+ highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted"));
+ });
+ Search.output.appendChild(listItem);
+};
+const _finishSearch = (resultCount) => {
+ Search.stopPulse();
+ Search.title.innerText = _("Search Results");
+ if (!resultCount)
+ Search.status.innerText = Documentation.gettext(
+ "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories."
+ );
+ else
+ Search.status.innerText = Documentation.ngettext(
+ "Search finished, found one page matching the search query.",
+ "Search finished, found ${resultCount} pages matching the search query.",
+ resultCount,
+ ).replace('${resultCount}', resultCount);
+};
+const _displayNextItem = (
+ results,
+ resultCount,
+ searchTerms,
+ highlightTerms,
+) => {
+ // results left, load the summary and display it
+ // this is intended to be dynamic (don't sub resultsCount)
+ if (results.length) {
+ _displayItem(results.pop(), searchTerms, highlightTerms);
+ setTimeout(
+ () => _displayNextItem(results, resultCount, searchTerms, highlightTerms),
+ 5
+ );
+ }
+ // search finished, update title and status message
+ else _finishSearch(resultCount);
+};
+// Helper function used by query() to order search results.
+// Each input is an array of [docname, title, anchor, descr, score, filename, kind].
+// Order the results by score (in opposite order of appearance, since the
+// `_displayNextItem` function uses pop() to retrieve items) and then alphabetically.
+const _orderResultsByScoreThenName = (a, b) => {
+ const leftScore = a[4];
+ const rightScore = b[4];
+ if (leftScore === rightScore) {
+ // same score: sort alphabetically
+ const leftTitle = a[1].toLowerCase();
+ const rightTitle = b[1].toLowerCase();
+ if (leftTitle === rightTitle) return 0;
+ return leftTitle > rightTitle ? -1 : 1; // inverted is intentional
+ }
+ return leftScore > rightScore ? 1 : -1;
+};
+
+/**
+ * Default splitQuery function. Can be overridden in ``sphinx.search`` with a
+ * custom function per language.
+ *
+ * The regular expression works by splitting the string on consecutive characters
+ * that are not Unicode letters, numbers, underscores, or emoji characters.
+ * This is the same as ``\W+`` in Python, preserving the surrogate pair area.
+ */
+if (typeof splitQuery === "undefined") {
+ var splitQuery = (query) => query
+ .split(/[^\p{Letter}\p{Number}_\p{Emoji_Presentation}]+/gu)
+ .filter(term => term) // remove remaining empty strings
+}
+
+/**
+ * Search Module
+ */
+const Search = {
+ _index: null,
+ _queued_query: null,
+ _pulse_status: -1,
+
+ htmlToText: (htmlString, anchor) => {
+ const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
+ for (const removalQuery of [".headerlink", "script", "style"]) {
+ htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
+ }
+ if (anchor) {
+ const anchorContent = htmlElement.querySelector(`[role="main"] ${anchor}`);
+ if (anchorContent) return anchorContent.textContent;
+
+ console.warn(
+ `Anchored content block not found. Sphinx search tries to obtain it via DOM query '[role=main] ${anchor}'. Check your theme or template.`
+ );
+ }
+
+ // if anchor not specified or not found, fall back to main content
+ const docContent = htmlElement.querySelector('[role="main"]');
+ if (docContent) return docContent.textContent;
+
+ console.warn(
+ "Content block not found. Sphinx search tries to obtain it via DOM query '[role=main]'. Check your theme or template."
+ );
+ return "";
+ },
+
+ init: () => {
+ const query = new URLSearchParams(window.location.search).get("q");
+ document
+ .querySelectorAll('input[name="q"]')
+ .forEach((el) => (el.value = query));
+ if (query) Search.performSearch(query);
+ },
+
+ loadIndex: (url) =>
+ (document.body.appendChild(document.createElement("script")).src = url),
+
+ setIndex: (index) => {
+ Search._index = index;
+ if (Search._queued_query !== null) {
+ const query = Search._queued_query;
+ Search._queued_query = null;
+ Search.query(query);
+ }
+ },
+
+ hasIndex: () => Search._index !== null,
+
+ deferQuery: (query) => (Search._queued_query = query),
+
+ stopPulse: () => (Search._pulse_status = -1),
+
+ startPulse: () => {
+ if (Search._pulse_status >= 0) return;
+
+ const pulse = () => {
+ Search._pulse_status = (Search._pulse_status + 1) % 4;
+ Search.dots.innerText = ".".repeat(Search._pulse_status);
+ if (Search._pulse_status >= 0) window.setTimeout(pulse, 500);
+ };
+ pulse();
+ },
+
+ /**
+ * perform a search for something (or wait until index is loaded)
+ */
+ performSearch: (query) => {
+ // create the required interface elements
+ const searchText = document.createElement("h2");
+ searchText.textContent = _("Searching");
+ const searchSummary = document.createElement("p");
+ searchSummary.classList.add("search-summary");
+ searchSummary.innerText = "";
+ const searchList = document.createElement("ul");
+ searchList.setAttribute("role", "list");
+ searchList.classList.add("search");
+
+ const out = document.getElementById("search-results");
+ Search.title = out.appendChild(searchText);
+ Search.dots = Search.title.appendChild(document.createElement("span"));
+ Search.status = out.appendChild(searchSummary);
+ Search.output = out.appendChild(searchList);
+
+ const searchProgress = document.getElementById("search-progress");
+ // Some themes don't use the search progress node
+ if (searchProgress) {
+ searchProgress.innerText = _("Preparing search...");
+ }
+ Search.startPulse();
+
+ // index already loaded, the browser was quick!
+ if (Search.hasIndex()) Search.query(query);
+ else Search.deferQuery(query);
+ },
+
+ _parseQuery: (query) => {
+ // stem the search terms and add them to the correct list
+ const stemmer = new Stemmer();
+ const searchTerms = new Set();
+ const excludedTerms = new Set();
+ const highlightTerms = new Set();
+ const objectTerms = new Set(splitQuery(query.toLowerCase().trim()));
+ splitQuery(query.trim()).forEach((queryTerm) => {
+ const queryTermLower = queryTerm.toLowerCase();
+
+ // maybe skip this "word"
+ // stopwords array is from language_data.js
+ if (
+ stopwords.indexOf(queryTermLower) !== -1 ||
+ queryTerm.match(/^\d+$/)
+ )
+ return;
+
+ // stem the word
+ let word = stemmer.stemWord(queryTermLower);
+ // select the correct list
+ if (word[0] === "-") excludedTerms.add(word.substr(1));
+ else {
+ searchTerms.add(word);
+ highlightTerms.add(queryTermLower);
+ }
+ });
+
+ if (SPHINX_HIGHLIGHT_ENABLED) { // set in sphinx_highlight.js
+ localStorage.setItem("sphinx_highlight_terms", [...highlightTerms].join(" "))
+ }
+
+ // console.debug("SEARCH: searching for:");
+ // console.info("required: ", [...searchTerms]);
+ // console.info("excluded: ", [...excludedTerms]);
+
+ return [query, searchTerms, excludedTerms, highlightTerms, objectTerms];
+ },
+
+ /**
+ * execute search (requires search index to be loaded)
+ */
+ _performSearch: (query, searchTerms, excludedTerms, highlightTerms, objectTerms) => {
+ const filenames = Search._index.filenames;
+ const docNames = Search._index.docnames;
+ const titles = Search._index.titles;
+ const allTitles = Search._index.alltitles;
+ const indexEntries = Search._index.indexentries;
+
+ // Collect multiple result groups to be sorted separately and then ordered.
+ // Each is an array of [docname, title, anchor, descr, score, filename, kind].
+ const normalResults = [];
+ const nonMainIndexResults = [];
+
+ _removeChildren(document.getElementById("search-progress"));
+
+ const queryLower = query.toLowerCase().trim();
+ for (const [title, foundTitles] of Object.entries(allTitles)) {
+ if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
+ for (const [file, id] of foundTitles) {
+ const score = Math.round(Scorer.title * queryLower.length / title.length);
+ const boost = titles[file] === title ? 1 : 0; // add a boost for document titles
+ normalResults.push([
+ docNames[file],
+ titles[file] !== title ? `${titles[file]} > ${title}` : title,
+ id !== null ? "#" + id : "",
+ null,
+ score + boost,
+ filenames[file],
+ SearchResultKind.title,
+ ]);
+ }
+ }
+ }
+
+ // search for explicit entries in index directives
+ for (const [entry, foundEntries] of Object.entries(indexEntries)) {
+ if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) {
+ for (const [file, id, isMain] of foundEntries) {
+ const score = Math.round(100 * queryLower.length / entry.length);
+ const result = [
+ docNames[file],
+ titles[file],
+ id ? "#" + id : "",
+ null,
+ score,
+ filenames[file],
+ SearchResultKind.index,
+ ];
+ if (isMain) {
+ normalResults.push(result);
+ } else {
+ nonMainIndexResults.push(result);
+ }
+ }
+ }
+ }
+
+ // lookup as object
+ objectTerms.forEach((term) =>
+ normalResults.push(...Search.performObjectSearch(term, objectTerms))
+ );
+
+ // lookup as search terms in fulltext
+ normalResults.push(...Search.performTermsSearch(searchTerms, excludedTerms));
+
+ // let the scorer override scores with a custom scoring function
+ if (Scorer.score) {
+ normalResults.forEach((item) => (item[4] = Scorer.score(item)));
+ nonMainIndexResults.forEach((item) => (item[4] = Scorer.score(item)));
+ }
+
+ // Sort each group of results by score and then alphabetically by name.
+ normalResults.sort(_orderResultsByScoreThenName);
+ nonMainIndexResults.sort(_orderResultsByScoreThenName);
+
+ // Combine the result groups in (reverse) order.
+ // Non-main index entries are typically arbitrary cross-references,
+ // so display them after other results.
+ let results = [...nonMainIndexResults, ...normalResults];
+
+ // remove duplicate search results
+ // note the reversing of results, so that in the case of duplicates, the highest-scoring entry is kept
+ let seen = new Set();
+ results = results.reverse().reduce((acc, result) => {
+ let resultStr = result.slice(0, 4).concat([result[5]]).map(v => String(v)).join(',');
+ if (!seen.has(resultStr)) {
+ acc.push(result);
+ seen.add(resultStr);
+ }
+ return acc;
+ }, []);
+
+ return results.reverse();
+ },
+
+ query: (query) => {
+ const [searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms] = Search._parseQuery(query);
+ const results = Search._performSearch(searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms);
+
+ // for debugging
+ //Search.lastresults = results.slice(); // a copy
+ // console.info("search results:", Search.lastresults);
+
+ // print the results
+ _displayNextItem(results, results.length, searchTerms, highlightTerms);
+ },
+
+ /**
+ * search for object names
+ */
+ performObjectSearch: (object, objectTerms) => {
+ const filenames = Search._index.filenames;
+ const docNames = Search._index.docnames;
+ const objects = Search._index.objects;
+ const objNames = Search._index.objnames;
+ const titles = Search._index.titles;
+
+ const results = [];
+
+ const objectSearchCallback = (prefix, match) => {
+ const name = match[4]
+ const fullname = (prefix ? prefix + "." : "") + name;
+ const fullnameLower = fullname.toLowerCase();
+ if (fullnameLower.indexOf(object) < 0) return;
+
+ let score = 0;
+ const parts = fullnameLower.split(".");
+
+ // check for different match types: exact matches of full name or
+ // "last name" (i.e. last dotted part)
+ if (fullnameLower === object || parts.slice(-1)[0] === object)
+ score += Scorer.objNameMatch;
+ else if (parts.slice(-1)[0].indexOf(object) > -1)
+ score += Scorer.objPartialMatch; // matches in last name
+
+ const objName = objNames[match[1]][2];
+ const title = titles[match[0]];
+
+ // If more than one term searched for, we require other words to be
+ // found in the name/title/description
+ const otherTerms = new Set(objectTerms);
+ otherTerms.delete(object);
+ if (otherTerms.size > 0) {
+ const haystack = `${prefix} ${name} ${objName} ${title}`.toLowerCase();
+ if (
+ [...otherTerms].some((otherTerm) => haystack.indexOf(otherTerm) < 0)
+ )
+ return;
+ }
+
+ let anchor = match[3];
+ if (anchor === "") anchor = fullname;
+ else if (anchor === "-") anchor = objNames[match[1]][1] + "-" + fullname;
+
+ const descr = objName + _(", in ") + title;
+
+ // add custom score for some objects according to scorer
+ if (Scorer.objPrio.hasOwnProperty(match[2]))
+ score += Scorer.objPrio[match[2]];
+ else score += Scorer.objPrioDefault;
+
+ results.push([
+ docNames[match[0]],
+ fullname,
+ "#" + anchor,
+ descr,
+ score,
+ filenames[match[0]],
+ SearchResultKind.object,
+ ]);
+ };
+ Object.keys(objects).forEach((prefix) =>
+ objects[prefix].forEach((array) =>
+ objectSearchCallback(prefix, array)
+ )
+ );
+ return results;
+ },
+
+ /**
+ * search for full-text terms in the index
+ */
+ performTermsSearch: (searchTerms, excludedTerms) => {
+ // prepare search
+ const terms = Search._index.terms;
+ const titleTerms = Search._index.titleterms;
+ const filenames = Search._index.filenames;
+ const docNames = Search._index.docnames;
+ const titles = Search._index.titles;
+
+ const scoreMap = new Map();
+ const fileMap = new Map();
+
+ // perform the search on the required terms
+ searchTerms.forEach((word) => {
+ const files = [];
+ const arr = [
+ { files: terms[word], score: Scorer.term },
+ { files: titleTerms[word], score: Scorer.title },
+ ];
+ // add support for partial matches
+ if (word.length > 2) {
+ const escapedWord = _escapeRegExp(word);
+ if (!terms.hasOwnProperty(word)) {
+ Object.keys(terms).forEach((term) => {
+ if (term.match(escapedWord))
+ arr.push({ files: terms[term], score: Scorer.partialTerm });
+ });
+ }
+ if (!titleTerms.hasOwnProperty(word)) {
+ Object.keys(titleTerms).forEach((term) => {
+ if (term.match(escapedWord))
+ arr.push({ files: titleTerms[term], score: Scorer.partialTitle });
+ });
+ }
+ }
+
+ // no match but word was a required one
+ if (arr.every((record) => record.files === undefined)) return;
+
+ // found search word in contents
+ arr.forEach((record) => {
+ if (record.files === undefined) return;
+
+ let recordFiles = record.files;
+ if (recordFiles.length === undefined) recordFiles = [recordFiles];
+ files.push(...recordFiles);
+
+ // set score for the word in each file
+ recordFiles.forEach((file) => {
+ if (!scoreMap.has(file)) scoreMap.set(file, {});
+ scoreMap.get(file)[word] = record.score;
+ });
+ });
+
+ // create the mapping
+ files.forEach((file) => {
+ if (!fileMap.has(file)) fileMap.set(file, [word]);
+ else if (fileMap.get(file).indexOf(word) === -1) fileMap.get(file).push(word);
+ });
+ });
+
+ // now check if the files don't contain excluded terms
+ const results = [];
+ for (const [file, wordList] of fileMap) {
+ // check if all requirements are matched
+
+ // as search terms with length < 3 are discarded
+ const filteredTermCount = [...searchTerms].filter(
+ (term) => term.length > 2
+ ).length;
+ if (
+ wordList.length !== searchTerms.size &&
+ wordList.length !== filteredTermCount
+ )
+ continue;
+
+ // ensure that none of the excluded terms is in the search result
+ if (
+ [...excludedTerms].some(
+ (term) =>
+ terms[term] === file ||
+ titleTerms[term] === file ||
+ (terms[term] || []).includes(file) ||
+ (titleTerms[term] || []).includes(file)
+ )
+ )
+ break;
+
+ // select one (max) score for the file.
+ const score = Math.max(...wordList.map((w) => scoreMap.get(file)[w]));
+ // add result to the result list
+ results.push([
+ docNames[file],
+ titles[file],
+ "",
+ null,
+ score,
+ filenames[file],
+ SearchResultKind.text,
+ ]);
+ }
+ return results;
+ },
+
+ /**
+ * helper function to return a node containing the
+ * search summary for a given text. keywords is a list
+ * of stemmed words.
+ */
+ makeSearchSummary: (htmlText, keywords, anchor) => {
+ const text = Search.htmlToText(htmlText, anchor);
+ if (text === "") return null;
+
+ const textLower = text.toLowerCase();
+ const actualStartPosition = [...keywords]
+ .map((k) => textLower.indexOf(k.toLowerCase()))
+ .filter((i) => i > -1)
+ .slice(-1)[0];
+ const startWithContext = Math.max(actualStartPosition - 120, 0);
+
+ const top = startWithContext === 0 ? "" : "...";
+ const tail = startWithContext + 240 < text.length ? "..." : "";
+
+ let summary = document.createElement("p");
+ summary.classList.add("context");
+ summary.textContent = top + text.substr(startWithContext, 240).trim() + tail;
+
+ return summary;
+ },
+};
+
+_ready(Search.init);
diff --git a/docs/apidocs/4.2.0/_static/sphinx_highlight.js b/docs/apidocs/4.2.0/_static/sphinx_highlight.js
new file mode 100644
index 0000000..8a96c69
--- /dev/null
+++ b/docs/apidocs/4.2.0/_static/sphinx_highlight.js
@@ -0,0 +1,154 @@
+/* Highlighting utilities for Sphinx HTML documentation. */
+"use strict";
+
+const SPHINX_HIGHLIGHT_ENABLED = true
+
+/**
+ * highlight a given string on a node by wrapping it in
+ * span elements with the given class name.
+ */
+const _highlight = (node, addItems, text, className) => {
+ if (node.nodeType === Node.TEXT_NODE) {
+ const val = node.nodeValue;
+ const parent = node.parentNode;
+ const pos = val.toLowerCase().indexOf(text);
+ if (
+ pos >= 0 &&
+ !parent.classList.contains(className) &&
+ !parent.classList.contains("nohighlight")
+ ) {
+ let span;
+
+ const closestNode = parent.closest("body, svg, foreignObject");
+ const isInSVG = closestNode && closestNode.matches("svg");
+ if (isInSVG) {
+ span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
+ } else {
+ span = document.createElement("span");
+ span.classList.add(className);
+ }
+
+ span.appendChild(document.createTextNode(val.substr(pos, text.length)));
+ const rest = document.createTextNode(val.substr(pos + text.length));
+ parent.insertBefore(
+ span,
+ parent.insertBefore(
+ rest,
+ node.nextSibling
+ )
+ );
+ node.nodeValue = val.substr(0, pos);
+ /* There may be more occurrences of search term in this node. So call this
+ * function recursively on the remaining fragment.
+ */
+ _highlight(rest, addItems, text, className);
+
+ if (isInSVG) {
+ const rect = document.createElementNS(
+ "http://www.w3.org/2000/svg",
+ "rect"
+ );
+ const bbox = parent.getBBox();
+ rect.x.baseVal.value = bbox.x;
+ rect.y.baseVal.value = bbox.y;
+ rect.width.baseVal.value = bbox.width;
+ rect.height.baseVal.value = bbox.height;
+ rect.setAttribute("class", className);
+ addItems.push({ parent: parent, target: rect });
+ }
+ }
+ } else if (node.matches && !node.matches("button, select, textarea")) {
+ node.childNodes.forEach((el) => _highlight(el, addItems, text, className));
+ }
+};
+const _highlightText = (thisNode, text, className) => {
+ let addItems = [];
+ _highlight(thisNode, addItems, text, className);
+ addItems.forEach((obj) =>
+ obj.parent.insertAdjacentElement("beforebegin", obj.target)
+ );
+};
+
+/**
+ * Small JavaScript module for the documentation.
+ */
+const SphinxHighlight = {
+
+ /**
+ * highlight the search words provided in localstorage in the text
+ */
+ highlightSearchWords: () => {
+ if (!SPHINX_HIGHLIGHT_ENABLED) return; // bail if no highlight
+
+ // get and clear terms from localstorage
+ const url = new URL(window.location);
+ const highlight =
+ localStorage.getItem("sphinx_highlight_terms")
+ || url.searchParams.get("highlight")
+ || "";
+ localStorage.removeItem("sphinx_highlight_terms")
+ url.searchParams.delete("highlight");
+ window.history.replaceState({}, "", url);
+
+ // get individual terms from highlight string
+ const terms = highlight.toLowerCase().split(/\s+/).filter(x => x);
+ if (terms.length === 0) return; // nothing to do
+
+ // There should never be more than one element matching "div.body"
+ const divBody = document.querySelectorAll("div.body");
+ const body = divBody.length ? divBody[0] : document.querySelector("body");
+ window.setTimeout(() => {
+ terms.forEach((term) => _highlightText(body, term, "highlighted"));
+ }, 10);
+
+ const searchBox = document.getElementById("searchbox");
+ if (searchBox === null) return;
+ searchBox.appendChild(
+ document
+ .createRange()
+ .createContextualFragment(
+ '
' +
+ '' +
+ _("Hide Search Matches") +
+ "
"
+ )
+ );
+ },
+
+ /**
+ * helper function to hide the search marks again
+ */
+ hideSearchWords: () => {
+ document
+ .querySelectorAll("#searchbox .highlight-link")
+ .forEach((el) => el.remove());
+ document
+ .querySelectorAll("span.highlighted")
+ .forEach((el) => el.classList.remove("highlighted"));
+ localStorage.removeItem("sphinx_highlight_terms")
+ },
+
+ initEscapeListener: () => {
+ // only install a listener if it is really needed
+ if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) return;
+
+ document.addEventListener("keydown", (event) => {
+ // bail for input elements
+ if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;
+ // bail with special keys
+ if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return;
+ if (DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS && (event.key === "Escape")) {
+ SphinxHighlight.hideSearchWords();
+ event.preventDefault();
+ }
+ });
+ },
+};
+
+_ready(() => {
+ /* Do not call highlightSearchWords() when we are on the search page.
+ * It will highlight words from the *previous* search query.
+ */
+ if (typeof Search === "undefined") SphinxHighlight.highlightSearchWords();
+ SphinxHighlight.initEscapeListener();
+});
diff --git a/docs/apidocs/4.2.0/adobe.html b/docs/apidocs/4.2.0/adobe.html
new file mode 100644
index 0000000..75d659d
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.html
@@ -0,0 +1,1372 @@
+
+
+
+
+
+
+
+
+
adobe package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.html b/docs/apidocs/4.2.0/adobe.pdfservices.html
new file mode 100644
index 0000000..97f2d30
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.html
@@ -0,0 +1,1489 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices package
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.auth.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.auth.html
new file mode 100644
index 0000000..9d6ca48
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.auth.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.auth package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.auth package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.auth package
+
+
+adobe.pdfservices.operation.auth.credentials module
+
+
+class adobe.pdfservices.operation.auth.credentials. Credentials
+Bases: ABC
+This abstract class represents the basic contract for the credentials to be used with
+ServicePrincipalCredentials .
+
+
+
+
+adobe.pdfservices.operation.auth.service_principal_credentials module
+
+
+class adobe.pdfservices.operation.auth.service_principal_credentials. ServicePrincipalCredentials ( client_id : str , client_secret : str )
+Bases: Credentials
+Service Principal credentials allow your application to call PDF Services API. For getting the credentials,
+Click Here .
+Constructs an instance of ServicePrincipalCredentials .
+
+Parameters:
+
+
+
+
+
+get_client_id ( )
+
+Returns:
+Client Id
+
+Return type:
+str
+
+
+
+
+
+
+get_client_secret ( )
+
+Returns:
+Client Secret
+
+Return type:
+str
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.config.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.config.html
new file mode 100644
index 0000000..02db7ec
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.config.html
@@ -0,0 +1,1543 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.config package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.config package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.config package
+
+
+
+adobe.pdfservices.operation.config.client_config module
+
+
+class adobe.pdfservices.operation.config.client_config. ClientConfig ( * , connect_timeout : int = 4000 , read_timeout : int = 10000 , region : Region = Region.US , proxy_server_config : ProxyServerConfig = None )
+Bases: object
+Encapsulates the API request configurations.
+Constructs an instance of ClientConfig .
+
+Parameters:
+
+connect_timeout (int ) – determines the timeout in milliseconds until a connection is established in the API
+calls. Default value is 4000 milliseconds.
+read_timeout (int ) – Defines the read timeout in milliseconds, The number of milliseconds the client will wait for the server to send a response after the connection is established. Default value is 10000 milliseconds
+region (Region ) – Default value is US.
+proxy_server_config (ProxyServerConfig ) – Sets the configuration for proxy server.
+
+
+
+
+
+from_file ( client_config_file_path : str )
+Sets the connect timeout and read timeout using the JSON client config file path. All the keys in the JSON structure are optional.
+
+Parameters:
+client_config_file_path (str ) – JSON client config file path
+
+Returns:
+This Builder instance to add any additional parameters.
+
+Return type:
+ClientConfig.Builder
+
+
+JSON structure:
+{
+ "connectTimeout" : "4000" ,
+ "readTimeout" : "20000" ,
+ "proxyServerConfig" : {
+ "host" : "127.0.0.1" ,
+ "port" : "8080" ,
+ "scheme" : "https" ,
+ "usernamePasswordCredentials" : {
+ "username" : "username" ,
+ "password" : "password"
+ }
+ },
+ "region" : "EU"
+}
+
+
+
+
+
+
+get_connect_timeout ( )
+
+Returns:
+Connect timeout.
+
+Return type:
+int
+
+
+
+
+
+
+get_pdf_services_uri ( )
+
+Returns:
+The PDF Service URI used.
+
+Return type:
+str
+
+
+
+
+
+
+get_proxy_server_config ( )
+
+Returns:
+Proxy server config used.
+
+Return type:
+ProxyServerConfig
+
+
+
+
+
+
+get_read_timeout ( )
+
+Returns:
+Read timeout.
+
+Return type:
+int
+
+
+
+
+
+
+validate ( )
+Validator for the created client config.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.config.notifier.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.config.notifier.html
new file mode 100644
index 0000000..988fc72
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.config.notifier.html
@@ -0,0 +1,1452 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.config.notifier package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.config.notifier package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.config.notifier package
+
+
+adobe.pdfservices.operation.config.notifier.callback_notifier_data module
+
+
+class adobe.pdfservices.operation.config.notifier.callback_notifier_data. CallbackNotifierData ( url : str , * , headers : Dict = None )
+Bases: NotifierData
+Represents the configuration for the notifier data.
+Constructs an instance of CallbackNotifierData .
+
+Parameters:
+
+url (str ) – Callback URL, can not be None
+headers (dict ) – Callback headers. (Optional, use key-value)
+
+
+
+
+
+json_hint = {'headers': 'headers', 'url': 'url'}
+For JSON Representation of this class, used internally by SDK.
+
+
+
+
+to_json ( )
+
+Returns:
+Representation of CallbackNotifierData as a JSON string, used internally by the SDK.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.config.notifier.notifier_config module
+
+
+class adobe.pdfservices.operation.config.notifier.notifier_config. NotifierConfig ( notifier_type : NotifierType , notifier_data : NotifierData )
+Bases: object
+Represents the configuration for a notifier to be used to notify user about the completion of a
+PDFServicesJob .
+Constructs an instance of NotifierConfig .
+
+Parameters:
+
+
+
+
+
+json_hint = {'notifier_data': 'data', 'notifier_type': 'type'}
+For JSON Representation of this class, used internally by SDK.
+
+
+
+
+to_json ( )
+
+Returns:
+representation of NotifierConfig as a JSON string, used internally by the SDK.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.config.notifier.notifier_data module
+
+
+class adobe.pdfservices.operation.config.notifier.notifier_data. NotifierData
+Bases: ABC
+This abstract class represents the basic contract for the notifier data to be used with
+NotifierConfig
+
+
+
+
+adobe.pdfservices.operation.config.notifier.notifier_type module
+
+
+class adobe.pdfservices.operation.config.notifier.notifier_type. NotifierType ( value )
+Bases: Enum
+Notifier Type Mapping.
+
+
+CALLBACK = 'CALLBACK'
+Callback notifier type.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.config.proxy.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.config.proxy.html
new file mode 100644
index 0000000..e95f132
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.config.proxy.html
@@ -0,0 +1,1580 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.config.proxy package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.config.proxy package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.config.proxy package
+
+
+adobe.pdfservices.operation.config.proxy.proxy_authentication_credentials module
+
+
+class adobe.pdfservices.operation.config.proxy.proxy_authentication_credentials. ProxyAuthenticationCredentials
+Bases: ABC
+This abstract class represents the basic contract for the credentials to be used with
+ProxyServerConfig .
+
+
+
+
+adobe.pdfservices.operation.config.proxy.proxy_scheme module
+
+
+class adobe.pdfservices.operation.config.proxy.proxy_scheme. ProxyScheme ( value )
+Bases: Enum
+Supported scheme types for
+ProxyServerConfig .
+
+
+HTTP = 'http'
+Represents HTTP scheme.
+
+
+
+
+HTTPS = 'https'
+Represents HTTPS scheme.
+
+
+
+
+classmethod get ( proxy_scheme )
+Returns the instance of ProxyScheme for the input string.
+
+Parameters:
+proxy_scheme (str ) – String value of the scheme.
+
+Returns:
+the instance of ProxyScheme for the input string.
+
+Return type:
+ProxyScheme
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.config.proxy.proxy_server_config module
+
+
+class adobe.pdfservices.operation.config.proxy.proxy_server_config. ProxyServerConfig ( host : str , * , port : int = None , scheme : ProxyScheme = ProxyScheme.HTTP , credentials : ProxyAuthenticationCredentials = None )
+Bases: object
+Encapsulates the proxy server configurations.
+Creates an instance of ProxyServerConfig .
+
+Parameters:
+
+host (str ) – Host name. (Optional, use key-value)
+port (int ) – port number of proxy server. It should be greater than 0. Scheme’s default port is used if not
+provided. (Optional, use key-value)
+scheme (ProxyScheme ) – scheme of proxy server. Possible values are HTTP and HTTPS. Default value is HTTP. (Optional,
+use key-value)
+credentials (ProxyAuthenticationCredentials ) – ProxyAuthenticationCredentials} instance. (Optional, use key-value)
+
+
+
+
+
+HTTPS_PORT = 443
+Represents default port for HTTPS scheme.
+
+
+
+
+HTTP_PORT = 80
+Represents default port for HTTP scheme.
+
+
+
+
+from_json ( json_data : dict )
+Creates a proxy server instance from a json file.
+{
+"proxyServerConfig" : {
+ "host" : "127.0.0.1" ,
+ "port" : "8080" ,
+ "scheme" : "https" ,
+ "usernamePasswordCredentials" : {
+ "username" : "username" ,
+ "password" : "password"
+ }
+ },
+}
+
+
+
+Parameters:
+json_data (dict ) – A dictionary containing proxy server config in the specified format.
+
+
+
+
+
+
+get_credentials ( )
+
+Returns:
+the credentials for authenticating with a proxy server.
+
+Return type:
+ProxyAuthenticationCredentials
+
+
+
+
+
+
+get_host ( )
+
+Returns:
+the host name of proxy server.
+
+Return type:
+str
+
+
+
+
+
+
+get_port ( )
+
+Returns:
+the port number of proxy server.
+
+Return type:
+int
+
+
+
+
+
+
+classmethod get_port_based_on_scheme ( scheme : ProxyScheme )
+Used internally by the SDK.
+
+
+
+
+get_proxy_scheme ( )
+
+Returns:
+the scheme of proxy server.
+
+Return type:
+ProxyScheme
+
+
+
+
+
+
+proxy_config_map ( ) → dict [ str , str ]
+Used internally by the SDK.
+
+
+
+
+
+
+adobe.pdfservices.operation.config.proxy.username_password_credentials module
+
+
+class adobe.pdfservices.operation.config.proxy.username_password_credentials. UsernamePasswordCredentials ( username : str , password : str )
+Bases: ProxyAuthenticationCredentials
+Simple
+ProxyAuthenticationCredentials
+implementation based on a username and password.
+Constructs an instance of UsernamePasswordCredentials .
+
+Parameters:
+
+
+
+
+
+from_json ( json_data : dict )
+Constructs a UsernamePasswordCredentials instance from a dictionary in the specified format.
+
+Parameters:
+json_data (dict ) – JSON data in the form of a dictionary.
+
+
+
+
+
+
+get_password ( ) → str
+
+Returns:
+the password.
+
+Return type:
+str
+
+
+
+
+
+
+get_username ( ) → str
+
+Returns:
+the username.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.exception.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.exception.html
new file mode 100644
index 0000000..f60ef3f
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.exception.html
@@ -0,0 +1,1441 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.exception package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.exception package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.exception package
+
+
+adobe.pdfservices.operation.exception.exceptions module
+
+
+exception adobe.pdfservices.operation.exception.exceptions. SdkException ( message , request_tracking_id = None )
+Bases: Exception
+SdkException is typically thrown for client-side or network errors.
+
+
+property request_tracking_id
+The request tracking id of the exception.
+
+
+
+
+
+
+exception adobe.pdfservices.operation.exception.exceptions. ServiceApiException ( message , request_tracking_id , status_code = 0 , error_code = 'UNKNOWN' )
+Bases: Exception
+ServiceApiException is thrown when an underlying service API call results in an error.
+
+
+DEFAULT_ERROR_CODE = 'UNKNOWN'
+Returns the HTTP Status code or DEFAULT_STATUS_CODE if the status code doesn’t adequately represent the error.
+
+
+
+
+DEFAULT_STATUS_CODE = 0
+The default value of status code if there is no status code for this service exception.
+
+
+
+
+property error_code
+Returns the detailed message of this error.
+
+
+
+
+property request_tracking_id
+The request tracking id of the exception.
+
+
+
+
+property status_code
+Returns the HTTP Status code or DEFAULT_STATUS_CODE if the status code doesn’t adequately represent the
+error.
+
+
+
+
+
+
+exception adobe.pdfservices.operation.exception.exceptions. ServiceUsageException ( message , request_tracking_id , status_code = 429 , error_code = 'UNKNOWN' )
+Bases: Exception
+ServiceUsageError is thrown when either service usage limit has been reached or credentials quota has been
+exhausted.
+
+
+DEFAULT_ERROR_CODE = 'UNKNOWN'
+The default value of error code if there is no status code for this service failure.
+
+
+
+
+DEFAULT_STATUS_CODE = 429
+The default value of status code if there is no status code for this service failure.
+
+
+
+
+property error_code
+Returns the detailed message of this error.
+
+
+
+
+property request_tracking_id
+The request tracking id of the exception.
+
+
+
+
+property status_code
+Returns the HTTP Status code or DEFAULT_STATUS_CODE if the status code doesn’t adequately represent the
+error.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.html
new file mode 100644
index 0000000..8d7fbec
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.html
@@ -0,0 +1,2239 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation package
+
+
+
+adobe.pdfservices.operation.pdf_services module
+
+
+class adobe.pdfservices.operation.pdf_services. PDFServices ( credentials : Credentials , * , client_config : ClientConfig | None = None )
+Bases: object
+This class is the entry point for all the PDF Service utilities.
+These utilities can be used to perform various functions such as submitting
+PDFServicesJob ,
+getting status of a PDFServicesJob ,
+getting result of a PDFServicesJob ,
+uploading Asset ,
+getting content of an Asset ,
+deleting an Asset and refreshing an
+Asset .
+Constructs a new PDFServices instance with the given Credentials and ClientConfig.
+
+Parameters:
+
+credentials (Credentials ) – Credentials to be used for authentication; can not be None.
+client_config (ClientConfig ) – Client configuration for PDFServices. (Optional, use key-value)
+
+
+
+
+
+delete_asset ( asset : Asset )
+Deletes asset from PDF Services storage.
+
+Parameters:
+asset (Asset ) – Asset to be deleted; can not be None.
+
+Raises:
+
+
+
+
+
+
+
+get_content ( asset : Asset ) → StreamAsset
+
+Parameters:
+asset (Asset ) – Asset to the content; can not be None.
+
+Raises:
+
+
+Returns:
+Returns the content of the asset.
+
+Return type:
+StreamAsset
+
+
+
+
+
+
+get_job_result ( polling_url : str , result_type : ABCMeta ) → PDFServicesResponse
+Returns PDFServicesResponse for the submitted
+PDFServicesJob result.
+
+Parameters:
+
+polling_url (str ) – URL to be polled to get the job result; can not be None.
+result_type (PDFServicesJobResult.__class__ ) – result class for
+PDFServicesJob , it will be an
+implementation of PDFServicesJobResult; can not be None.
+
+
+Raises:
+
+
+Returns:
+PDFServicesResponse for the submitted job.
+
+Return type:
+PDFServicesResponse
+
+
+
+
+
+
+get_job_status ( polling_url : str ) → PDFServicesJobStatusResponse
+
+Parameters:
+polling_url (str ) – URL to be polled to get the job status; can not be None.
+
+Raises:
+
+ServiceApiException – If an error is encountered while submitting the job.
+SdkException – Is thrown for client-side or network errors.
+ServiceUsageException – If service usage limits have been reached or credentials quota has been
+exhausted.
+
+
+Returns:
+Returns PDFServicesJobStatusResponse for the submitted
+PDFServicesJob .
+
+Return type:
+PDFServicesJobStatusResponse
+
+
+
+
+
+
+refresh_download_uri ( asset : Asset ) → Asset
+
+Parameters:
+asset (Asset ) – asset to be refreshed; can not be None.
+
+Raises:
+
+
+Returns:
+a new Asset with a new valid download URI.
+
+Return type:
+Asset
+
+
+
+
+
+
+submit ( pdf_services_job : PDFServicesJob , * , notify_config_list : List | None = None ) → str
+Creates the PDFServicesJob
+and returns the polling URL.
+
+Parameters:
+
+pdf_services_job (PDFServicesJob ) – PDFServicesJob} to be submitted; can not be None.
+notify_config_list (list ) – List of
+NotifierConfig
+to be used for notification. (Optional, use key-value)
+
+
+Raises:
+
+ServiceApiException – If an error is encountered while submitting the job.
+SdkException – Is thrown for client-side or network errors.
+ServiceUsageException – If service usage limits have been reached or credentials quota has been
+exhausted.
+
+
+Returns:
+the polling URL.
+
+Return type:
+str
+
+
+
+
+
+
+upload ( input_stream : Any , mime_type : str ) → Asset
+Upload content from input stream and returns an Asset
+to be used in PDF Services SDK.
+Method will not close the input stream, responsibility of closing the input stream lies with the client.
+
+Parameters:
+
+
+Raises:
+
+ServiceApiException – If an error is encountered while submitting the job.
+SdkException – Is thrown for client-side or network errors.
+ServiceUsageException – If service usage limits have been reached or credentials quota has been
+exhausted.
+
+
+Returns:
+asset containing the uploaded content
+
+Return type:
+Asset
+
+
+
+
+
+
+upload_assets ( upload_asset_list : List ) → [ ]
+Upload content from list of StreamAsset and
+returns a list of Asset to be used in PDF Services
+SDK.
+Method will not close the input stream of the Stream Asset, responsibility of closing the input stream lies
+with the client.
+
+Parameters:
+upload_asset_list (list ) – StreamAsset
+list that is to be uploaded; can not be None.
+
+Raises:
+
+
+Returns:
+returns a list of Asset to be used in PDF Services
+SDK.
+
+Return type:
+list
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdf_services_job module
+
+
+class adobe.pdfservices.operation.pdf_services_job. PDFServicesJob
+Bases: ABC
+This abstract class represents the basic contract for all the PDF Services Jobs.
+It imposes no restrictions or particular details on the job execution process and leaves the
+specifics of setting up the jobs to their individual implementations.
+
+
+
+
+adobe.pdfservices.operation.pdf_services_job_status module
+
+
+class adobe.pdfservices.operation.pdf_services_job_status. PDFServicesJobStatus ( value )
+Bases: Enum
+Status types for PDFServicesJob .
+Constructs PDF Services job status using its string representation.
+
+Parameters:
+value (str ) – string representation of PDF services job status.
+
+
+
+
+DONE = 'done'
+Represents completed status
+
+
+
+
+FAILED = 'failed'
+Represents failed status
+
+
+
+
+IN_PROGRESS = 'in progress'
+Represents in progress status
+
+
+
+
+get_value ( )
+
+Returns:
+string representation of PDFServicesJobStatus .
+
+Return type:
+str
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdf_services_job_status_response module
+
+
+class adobe.pdfservices.operation.pdf_services_job_status_response. PDFServicesJobStatusResponse ( status : str , headers : {} )
+Bases: object
+Response object encapsulating PDFServicesJob
+status and retry interval.
+Constructs PDFServicesJob status response
+with its status, headers.
+
+Parameters:
+
+
+
+
+
+get_retry_interval ( ) → int
+
+Returns:
+retry interval for status polling of the
+PDFServicesJob in seconds.
+
+Return type:
+int
+
+
+
+
+
+
+get_status ( )
+
+Returns:
+string representation of
+PDFServicesJobStatus
+for the PDFServicesJob .
+
+Return type:
+str
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdf_services_response module
+
+
+class adobe.pdfservices.operation.pdf_services_response. PDFServicesResponse ( status: str , headers: {<class 'str'>: <class 'str'>} , result )
+Bases: PDFServicesJobStatusResponse
+Response object for PDFServicesJob .
+Constructs PDFServicesJob response with
+its status, headers and result.
+
+Parameters:
+
+
+
+
+
+get_result ( )
+
+Returns:
+Returns instance of result of
+PDFServicesJob .
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.region module
+
+
+class adobe.pdfservices.operation.region. Region ( value )
+Bases: str , Enum
+Supported regions to be used with ClientConfig .
+
+
+EU = 'eu'
+Represents
+“Europe”
+region
+
+
+
+
+US = 'us'
+Represents
+“US”
+region
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.html
new file mode 100644
index 0000000..3938f79
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.html
@@ -0,0 +1,1538 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto package
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.html
new file mode 100644
index 0000000..91f1947
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.autotagpdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.autotagpdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.autotagpdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_external_asset_request. AutotagPDFExternalAssetRequest ( input_asset : Asset , autotag_pdf_params : AutotagPDFParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_internal_asset_request. AutotagPDFInternalAssetRequest ( asset_id : str , autotag_pdf_params : AutotagPDFParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest , ABC
+
+
+json_hint = {'asset_id': 'assetID', 'generate_report': 'generateReport', 'notify_config_list': 'notifiers', 'shift_headings': 'shiftHeadings'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_params_payload. AutotagPDFParamsPayload ( autotag_pdf_params : AutotagPDFParams )
+Bases: object
+
+
+json_hint = {'generate_report': 'generateReport', 'shift_headings': 'shiftHeadings'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.combinepdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.combinepdf.html
new file mode 100644
index 0000000..072a2c0
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.combinepdf.html
@@ -0,0 +1,1386 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.combinepdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.combinepdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.combinepdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_external_asset_request. CombinePDFExternalAssetRequest ( combine_pdf_params : CombinePDFParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'inputs': 'inputs', 'notify_config_list': 'notifiers', 'output': 'output'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_internal_asset_request. CombinePDFInternalAssetRequest ( combine_pdf_params : CombinePDFParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest , ABC
+
+
+json_hint = {'assets': 'assets', 'notify_config_list': 'notifiers'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.compresspdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.compresspdf.html
new file mode 100644
index 0000000..abe3df2
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.compresspdf.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.compresspdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.compresspdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.compresspdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_external_asset_request. CompressPDFExternalAssetRequest ( input_asset : Asset , compress_pdf_params : CompressPDFParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_internal_asset_request. CompressPDFInternalAssetRequest ( input_asset_id : str , compress_pdf_params : CompressPDFParams , notify_config_list : List [ NotifierConfig ] )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'compression_level': 'compressionLevel', 'notify_config_list': 'notifiers'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_params_payload. CompressPDFParamsPayload ( compress_pdf_params : CompressPDFParams )
+Bases: object
+
+
+json_hint = {'compression_level': 'compressionLevel'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.createpdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.createpdf.html
new file mode 100644
index 0000000..9877f70
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.createpdf.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.createpdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.createpdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.createpdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_external_asset_request. CreatePDFExternalAssetRequest ( input_asset : Asset , create_pdf_params : CreatePDFParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_internal_asset_request. CreatePDFInternalAssetRequest ( asset_id , create_pdf_params : CreatePDFParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'create_tagged_pdf': 'createTaggedPDF', 'document_language': 'documentLanguage', 'notify_config_list': 'notifiers'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_params_payload. CreatePDFParamsPayload ( create_pdf_params : CreatePDFParams )
+Bases: object
+
+
+json_hint = {'create_tagged_pdf': 'createTaggedPDF', 'document_language': 'documentLanguage'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.document_generation.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.document_generation.html
new file mode 100644
index 0000000..93905e8
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.document_generation.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.document_generation package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.document_generation package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.document_generation package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_external_asset_request. DocumentMergeExternalAssetRequest ( input_asset : Asset , document_merge_params : DocumentMergeParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_internal_asset_request. DocumentMergeInternalAssetRequest ( asset_id : str , document_merge_params : DocumentMergeParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'fragments': 'fragments', 'json_data_for_merge': 'jsonDataForMerge', 'notify_config_list': 'notifiers', 'output_format': 'outputFormat'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_params_payload. DocumentGenerationParamsPayload ( document_merge_params : DocumentMergeParams )
+Bases: object
+
+
+json_hint = {'fragments': 'fragments', 'json_data_for_merge': 'jsonDataForMerge', 'output_format': 'outputFormat'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.esealpdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.esealpdf.html
new file mode 100644
index 0000000..7e2a728
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.esealpdf.html
@@ -0,0 +1,1386 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.esealpdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.esealpdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.esealpdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_external_asset_request. ESealPDFExternalAssetRequest ( input_asset : Asset , electronic_seal_params : PDFElectronicSealParams , seal_image_asset : Asset | None = None , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'inputs': 'inputs', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_internal_asset_request. ESealPDFInternalAssetRequest ( input_document_asset_id : str , seal_image_asset_id : str , electronic_seal_params : PDFElectronicSealParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input_document_asset_id': 'inputDocumentAssetID', 'notify_config_list': 'notifiers', 'seal_image_asset_id': 'sealImageAssetID', 'seal_options': 'sealOptions'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.exportpdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.exportpdf.html
new file mode 100644
index 0000000..df2caec
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.exportpdf.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.exportpdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.exportpdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.exportpdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_external_asset_request. ExportPDFExternalAssetRequest ( input_asset : Asset , export_pdf_params : ExportPDFParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_internal_asset_request. ExportPDFInternalAssetRequest ( input_asset_id : str , export_pdf_params : ExportPDFParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'notify_config_list': 'notifiers', 'ocr_lang': 'ocrLang', 'target_format': 'targetFormat'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_params_payload. ExportPDFParamsPayload ( export_pdf_params : ExportPDFParams )
+Bases: object
+
+
+json_hint = {'ocr_lang': 'ocrLang', 'target_format': 'targetFormat'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.html
new file mode 100644
index 0000000..3865ded
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.extract_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.extract_pdf package
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.html
new file mode 100644
index 0000000..9c98b0e
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.html
@@ -0,0 +1,1910 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request package
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.asset_upload_uri_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.asset_upload_uri_request. AssetUploadURIRequest ( media_type : str )
+Bases: object
+
+
+json_hint = {'mediaType': 'mediaType'}
+
+
+
+
+property media_type
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html
new file mode 100644
index 0000000..5728b7d
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.htmltopdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.htmltopdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.htmltopdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_external_asset_request. HTMLtoPDFExternalAssetRequest ( input_asset : Asset , html_to_pdf_params : HTMLtoPDFParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_internal_asset_request. HTMLtoPDFInternalAssetRequest ( input_asset_id , input_url , html_to_pdf_params : HTMLtoPDFParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'include_header_footer': 'includeHeaderFooter', 'input_url': 'inputUrl', 'json': 'json', 'notify_config_list': 'notifiers', 'page_layout': 'pageLayout'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_params_payload. HTMLtoPDFParamsPayload ( html_to_pdf_params : HTMLtoPDFParams )
+Bases: object
+
+
+json_hint = {'include_header_footer': 'includeHeaderFooter', 'json': 'json', 'page_layout': 'pageLayout'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.html
new file mode 100644
index 0000000..53475b7
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.html
@@ -0,0 +1,1386 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.linearizepdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.linearizepdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.linearizepdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_external_asset_request. LinearizePDFExternalAssetRequest ( input_asset : Asset , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_internal_asset_request. LinearizePDFInternalAssetRequest ( input_asset_id : str , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'notify_config_list': 'notifiers'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.html
new file mode 100644
index 0000000..ca2092d
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.ocrpdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.ocrpdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.ocrpdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_external_asset_request. OCRPDFExternalAssetRequest ( input_asset : Asset , ocr_pdf_params : OCRParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_internal_asset_request. OCRPDFInternalAssetRequest ( input_asset_id : str , ocr_pdf_params : OCRParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'notify_config_list': 'notifiers', 'ocr_lang': 'ocrLang', 'ocr_type': 'ocrType'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_params_payload. OCRParamsPayload ( ocr_params : OCRParams )
+Bases: object
+
+
+json_hint = {'ocr_lang': 'ocrLang', 'ocr_type': 'ocrType'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.html
new file mode 100644
index 0000000..726fe18
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.html
@@ -0,0 +1,1529 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.delete_page_action module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.delete_page_action. DeletePageAction ( page_ranges )
+Bases: PageAction
+
+
+get_type ( )
+
+
+
+
+json_hint = {'page_ranges': 'pageRanges'}
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action. PageAction ( page_ranges : PageRanges )
+Bases: ABC
+
+
+get_page_ranges ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_command module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_command. PageActionCommand ( * , delete_action : DeletePageAction | None = None , rotate_action : RotatePageAction | None = None )
+Bases: object
+
+
+static create_from ( action : PageAction )
+
+
+
+
+json_hint = {'delete_action': 'delete', 'rotate_action': 'rotate'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands. PageActionCommands
+Bases: object
+
+
+add_command ( command : PageActionCommand )
+
+
+
+
+get_commands ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions. PageActions
+Bases: object
+
+
+add_action ( action : PageAction )
+
+
+
+
+get_actions ( )
+
+
+
+
+get_length ( )
+
+
+
+
+is_empty ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_external_asset_request. PageManipulationExternalAssetRequest ( input_asset : Asset , page_action_commands : PageActionCommands , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_internal_asset_request. PageManipulationInternalAssetRequest ( input_asset_id : str , page_action_commands : PageActionCommands , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'notify_config_list': 'notifiers', 'page_actions': 'pageActions'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_params_payload. PageManipulationParamsPayload ( page_action_commands : PageActionCommands )
+Bases: object
+
+
+json_hint = {'page_actions': 'pageActions'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.rotate_page_action module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.rotate_page_action. RotatePageAction ( page_ranges : PageRanges , rotation_angle : Angle )
+Bases: PageAction
+
+
+get_rotation_angle ( )
+
+
+
+
+json_hint = {'page_ranges': 'pageRanges', 'rotation_angle': 'angle'}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.html
new file mode 100644
index 0000000..2233a2c
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.pdf_properties package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_properties package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pdf_properties package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_external_asset_request. PDFPropertiesExternalAssetRequest ( input_asset : Asset , pdf_properties_params : PDFPropertiesParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_internal_asset_request. PDFPropertiesInternalAssetRequest ( asset_id : str , pdf_properties_params : PDFPropertiesParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'include_page_level_properties': 'pageLevel', 'notify_config_list': 'notifiers'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_params_payload. PDFPropertiesParamsPayload ( pdf_properties_params : PDFPropertiesParams )
+Bases: object
+
+
+json_hint = {'page_level': 'pageLevel'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.html
new file mode 100644
index 0000000..45b71bc
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.html
@@ -0,0 +1,1362 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.pdf_services_api_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.pdf_services_api_request. PDFServicesAPIRequest
+Bases: ABC
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.html
new file mode 100644
index 0000000..713267e
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.pdftoimage package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdftoimage package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pdftoimage package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_external_asset_request. PDFtoImagesExternalAssetRequest ( input_asset : Asset , export_pdf_to_images_params : ExportPDFtoImagesParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_internal_asset_request. PDFToImagesInternalAssetRequest ( input_asset_id : str , export_pdf_to_images_params : ExportPDFtoImagesParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'notify_config_list': 'notifiers', 'output_type': 'outputType', 'target_format': 'targetFormat'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_params_payload. PDFtoImageParamsPayload ( export_pdf_to_images_params : ExportPDFtoImagesParams )
+Bases: object
+
+
+json_hint = {'target_format': 'targetFormat'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.html
new file mode 100644
index 0000000..ea53373
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.protect_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.protect_pdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.protect_pdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_external_asset_request. ProtectPDFExternalAssetRequest ( input_asset : Asset , protect_pdf_params : PasswordProtectParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_internal_asset_request. ProtectPDFInternalAssetRequest ( asset_id : str , protect_pdf_params : PasswordProtectParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'content_to_encrypt': 'contentToEncrypt', 'encryption_algorithm': 'encryptionAlgorithm', 'notify_config_list': 'notifiers', 'password_protection': 'passwordProtection', 'permissions': 'permissions'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_params_payload. ProtectPDFParamsPayload ( protect_pdf_params : PasswordProtectParams , notifier_config : NotifierConfig | None = None )
+Bases: object
+
+
+json_hint = {'content_to_encrypt': 'contentToEncrypt', 'encryption_algorithm': 'encryptionAlgorithm', 'password_protection': 'passwordProtection', 'permissions': 'permissions'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.remove_protection.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.remove_protection.html
new file mode 100644
index 0000000..9b78f0e
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.remove_protection.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.remove_protection package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.remove_protection package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.remove_protection package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_extenal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_extenal_asset_request. RemoveProtectionExternalAssetRequest ( input_asset : Asset , remove_protection_params : RemoveProtectionParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_internal_asset_request. RemoveProtectionInternalAssetRequest ( input_asset_id : str , params : RemoveProtectionParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'notify_config_list': 'notifiers', 'password': 'password'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_params_payload. RemoveProtectionParamsPayload ( params : RemoveProtectionParams )
+Bases: object
+
+
+json_hint = {'password': 'password'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.splitpdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.splitpdf.html
new file mode 100644
index 0000000..0ff7100
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.request.splitpdf.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.request.splitpdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.splitpdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.splitpdf package
+
+
+adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_external_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_external_asset_request. SplitPDFExternalAssetRequest ( input_asset : Asset , split_pdf_params : SplitPDFParams , notify_config_list : List [ NotifierConfig ] | None = None , output_asset : ExternalAsset | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'input': 'input', 'notify_config_list': 'notifiers', 'output': 'output', 'params': 'params'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_internal_asset_request module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_internal_asset_request. SplitPDFInternalAssetRequest ( asset_id : str , split_pdf_params : SplitPDFParams , notify_config_list : List [ NotifierConfig ] | None = None )
+Bases: PDFServicesAPIRequest
+
+
+json_hint = {'asset_id': 'assetID', 'notify_config_list': 'notifiers', 'split_pdf_params': 'splitoption'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_params_payload module
+
+
+class adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_params_payload. SplitPDFParamsPayload ( split_pdf_params : SplitPDFParams )
+Bases: object
+
+
+json_hint = {'splitoption': 'splitoption'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.response.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.response.html
new file mode 100644
index 0000000..e8cf55d
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.response.html
@@ -0,0 +1,1405 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.response package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.response package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.response package
+
+
+
+adobe.pdfservices.operation.internal.api.dto.response.job_status module
+
+
+class adobe.pdfservices.operation.internal.api.dto.response.job_status. JobStatus ( value )
+Bases: str , Enum
+enum of status of the response
+
+
+DONE = 'done'
+
+
+
+
+FAILED = 'failed'
+
+
+
+
+IN_PROGRESS = 'in_progress'
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.html
new file mode 100644
index 0000000..fccf52a
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.html
@@ -0,0 +1,1406 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api package
+
+
+adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response module
+
+
+class adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response. JobErrorResponse ( error_response : {} )
+Bases: object
+
+
+get_code ( )
+
+
+
+
+get_message ( )
+
+
+
+
+get_status ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.pdf_services_api_response module
+
+
+class adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.pdf_services_api_response. PDFServicesAPIResponse ( status : int , error : JobErrorResponse )
+Bases: object
+
+
+static from_json ( json_str )
+
+
+
+
+get_error_response ( )
+
+
+
+
+get_status ( )
+
+
+
+
+json_hint = {'error': 'error', 'status': 'status'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.html
new file mode 100644
index 0000000..9670096
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.api.html
@@ -0,0 +1,1459 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.api package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.api package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api package
+
+
+
+adobe.pdfservices.operation.internal.api.pdf_services_api module
+
+
+class adobe.pdfservices.operation.internal.api.pdf_services_api. PDFServicesAPI
+Bases: object
+
+
+POLLING_TIMEOUT_STATUS_CODE = 0
+
+
+
+
+assets = '/assets/'
+
+
+
+
+static delete_asset ( context : ExecutionContext , asset_id : str , x_request_id : str )
+
+
+
+
+static get_response ( context : ExecutionContext , location : str , x_request_id : str )
+
+
+
+
+static handle_error_response ( response : Response )
+
+
+
+
+operation = '/operation/'
+
+
+
+
+static status_poll ( context : ExecutionContext , location : str , x_request_id : str )
+
+
+
+
+static submit_job ( context : ExecutionContext , platform_api_request : PDFServicesAPIRequest , operation_endpoint : str , x_request_id : str , operation_header_info : str )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.api.storage_api module
+
+
+class adobe.pdfservices.operation.internal.api.storage_api. StorageApi
+Bases: object
+
+
+assets = '/assets'
+
+
+
+
+static get_download_uri ( context : ExecutionContext , asset_id : str , x_request_id : str )
+
+
+
+
+static get_upload_uri ( context : ExecutionContext , media_type : str , x_request_id : str )
+
+
+
+
+static handle_error_response ( response : Response )
+
+
+
+
+static upload_to_cloud ( context : ExecutionContext , uri : str , input_stream , media_type )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.auth.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.auth.html
new file mode 100644
index 0000000..8c0be66
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.auth.html
@@ -0,0 +1,1508 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.auth package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.auth package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.auth package
+
+
+adobe.pdfservices.operation.internal.auth.auth_factory module
+
+
+class adobe.pdfservices.operation.internal.auth.auth_factory. AuthenticatorFactory
+Bases: object
+
+
+static get_authenticator ( credential : Credentials , client_config : ClientConfig )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.auth.authenticator module
+
+
+class adobe.pdfservices.operation.internal.auth.authenticator. Authenticator
+Bases: ABC
+
+
+abstract get_api_key ( )
+
+
+
+
+abstract refresh_token ( )
+
+
+
+
+abstract session_token ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.auth.service_principal_authenticator module
+
+
+class adobe.pdfservices.operation.internal.auth.service_principal_authenticator. ServicePrincipalAuthenticator ( service_principal_configuration , client_config )
+Bases: Authenticator
+Authenticator for OAuth Server-to-Server based Service Principal credentials
+
+
+get_api_key ( )
+API key for Service Principle credentials
+
+
+
+
+handle_ims_failure ( response )
+Handling of IMS failure during call to PDF Services API
+
+
+
+
+refresh_token ( )
+Refreshes the access token sent to PDF Services API
+
+
+
+
+service_principal_configuration : ServicePrincipalCredentials
+
+
+
+
+session_token ( )
+Access token for the PDF Services API
+
+
+
+
+time_to_expire ( )
+Time remaining in minutes till token expiry
+
+
+
+
+token : SessionToken = None
+
+
+
+
+token_endpoint = ''
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.auth.service_token_authenticator module
+
+
+class adobe.pdfservices.operation.internal.auth.service_token_authenticator. ServiceTokenAuthenticator ( service_token_credentials : ServiceTokenCredentials )
+Bases: Authenticator
+
+
+get_api_key ( ) → str
+
+
+
+
+refresh_token ( ) → SessionToken
+
+
+
+
+session_token ( ) → SessionToken
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.auth.service_token_credentials module
+
+
+class adobe.pdfservices.operation.internal.auth.service_token_credentials. ServiceTokenCredentials ( client_id : str , token : str )
+Bases: Credentials
+
+
+get_client_id ( )
+
+
+
+
+get_token ( )
+
+
+
+
+set_client_id ( client_id )
+
+
+
+
+set_token ( token )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.auth.session_token module
+
+
+class adobe.pdfservices.operation.internal.auth.session_token. SessionToken ( access_token , expired_in_ms )
+Bases: object
+
+
+expired_at : datetime
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.constants.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.constants.html
new file mode 100644
index 0000000..b91f8ef
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.constants.html
@@ -0,0 +1,1750 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.constants package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.constants package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.constants package
+
+
+adobe.pdfservices.operation.internal.constants.custom_error_messages module
+
+
+class adobe.pdfservices.operation.internal.constants.custom_error_messages. CustomErrorMessages
+Bases: object
+
+
+GENERIC_CAN_NOT_BE_NONE = '{} can not be none'
+
+
+
+
+GENERIC_CAN_NOT_BE_NONE_OR_EMPTY = '{} can not be none or empty'
+
+
+
+
+INVALID_INPUT_ASSET = 'Invalid input asset provided for the operation'
+
+
+
+
+INVALID_OUTPUT_ASSET = 'Invalid output asset provided for the operation'
+
+
+
+
+SET_OUTPUT_VALIDATE = 'External assets can be set as output only when input is external asset as well'
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.constants.pdf_services_uri module
+
+
+class adobe.pdfservices.operation.internal.constants.pdf_services_uri. PDFServicesURI
+Bases: object
+
+
+EU_URI = 'https://pdf-services-ew1.adobe.io'
+
+
+
+
+REGION_URI_MAP = {Region.EU: 'https://pdf-services-ew1.adobe.io', Region.US: 'https://pdf-services-ue1.adobe.io'}
+
+
+
+
+URI = 'https://pdf-services.adobe.io'
+
+
+
+
+US_URI = 'https://pdf-services-ue1.adobe.io'
+
+
+
+
+static get_default_uri ( )
+
+
+
+
+static get_uri_for_region ( region : Region )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.constants.request_key module
+
+
+class adobe.pdfservices.operation.internal.constants.request_key. RequestKey ( value )
+Bases: str , Enum
+enum of RequestKeys in the requests
+
+
+AUTHN = 'ims.session_token'
+
+
+
+
+DOWNLOAD = 'download'
+
+
+
+
+PLATFORM = 'pdf_services_api'
+
+
+
+
+STATUS = 'status'
+
+
+
+
+UPLOAD = 'upload'
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.constants.service_constants module
+
+
+class adobe.pdfservices.operation.internal.constants.service_constants. ServiceConstants
+Bases: object
+
+
+AUTOTAG_OPERATION_NAME = 'AUTOTAG_PDF'
+
+
+
+
+COMBINE_PDF_NAME = 'COMBINE_PDF'
+
+
+
+
+COMPRESS_PDF_OPERATION_NAME = 'COMPRESS_PDF'
+
+
+
+
+CREATE_OPERATION_NAME = 'CREATE_PDF'
+
+
+
+
+DELETE_PAGES_OPERATION_NAME = 'DELETE_PAGES'
+
+
+
+
+DOCUMENT_MERGE_OPERATION_NAME = 'DOCUMENT_MERGE'
+
+
+
+
+ESEAL_PDF_NAME = 'ESEAL_PDF'
+
+
+
+
+EXPORT_PDF_FORM_DATA_OPERATION_NAME = 'EXPORT_PDF_FORM_DATA'
+
+
+
+
+EXPORT_PDF_OPERATION_NAME = 'EXPORT_PDF'
+
+
+
+
+
+
+
+
+HTML_TO_PDF_OPERATION_NAME = 'HTML_TO_PDF'
+
+
+
+
+HTTP_CONNECT_TIMEOUT = 4000
+
+
+
+
+HTTP_READ_TIMEOUT = 10000
+
+
+
+
+IMPORT_PDF_FORM_DATA_OPERATION_NAME = 'IMPORT_PDF_FORM_DATA'
+
+
+
+
+INSERT_PAGES_OPERATION_NAME = 'INSERT_PAGES'
+
+
+
+
+LINEARIZE_PDF_OPERATION_NAME = 'LINEARIZE_PDF'
+
+
+
+
+OCR_PDF_OPERATION_NAME = 'OCR_PDF'
+
+
+
+
+OPERATION_RESULT_TEMP_DIRECTORY = 'sdk_result'
+
+
+
+
+PDF_ACCESSIBILITY_CHECKER_OPERATION_NAME = 'PDF_ACCESSIBILITY_CHECKER'
+
+
+
+
+PDF_PROPERTIES_OPERATION_NAME = 'PDF_PROPERTIES'
+
+
+
+
+PDF_TO_IMAGES_OPERATION_NAME = 'PDF_TO_IMAGES'
+
+
+
+
+PDF_WATERMARK_OPERATION_NAME = 'PDF_WATERMARK'
+
+
+
+
+PROTECT_PDF_NAME = 'PROTECT_PDF'
+
+
+
+
+REMOVE_PROTECTION_OPERATION_NAME = 'REMOVE_PROTECTION'
+
+
+
+
+REORDER_PAGES_OPERATION_NAME = 'REORDER_PAGES'
+
+
+
+
+REPLACE_PAGES_OPERATION_NAME = 'REPLACE PAGES'
+
+
+
+
+ROTATE_PAGES_OPERATION_NAME = 'ROTATE_PAGES'
+
+
+
+
+SPLIT_PDF_OPERATION_NAME = 'SPLIT_PDF'
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.html
new file mode 100644
index 0000000..4370097
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.html
@@ -0,0 +1,1807 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal package
+
+
+
+adobe.pdfservices.operation.internal.exceptions module
+
+
+exception adobe.pdfservices.operation.internal.exceptions. OperationException ( message , error_message , request_tracking_id , status_code , error_code = None , report_error_code = None )
+Bases: Exception
+
+
+property error_code
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.execution_context module
+
+
+class adobe.pdfservices.operation.internal.execution_context. ExecutionContext ( credentials : Credentials , client_config : ClientConfig | None = None )
+Bases: object
+
+
+property authenticator
+
+
+
+
+property client_config
+
+
+
+
+property credentials
+
+
+
+
+validate ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.internal_client_config module
+
+
+adobe.pdfservices.operation.internal.pdf_services_helper module
+
+
+class adobe.pdfservices.operation.internal.pdf_services_helper. PDFServicesHelper
+Bases: object
+
+
+classmethod delete_asset ( context : ExecutionContext , asset : Asset )
+
+
+
+
+classmethod get_content ( context : ExecutionContext , asset : Asset ) → StreamAsset
+
+
+
+
+classmethod get_job_result ( context : ExecutionContext , location : str , result_type ) → PDFServicesResponse
+
+
+
+
+classmethod get_job_status ( context : ExecutionContext , location : str )
+
+
+
+
+classmethod refresh_download_uri ( context : ExecutionContext , asset : Asset ) → CloudAsset
+
+
+
+
+classmethod submit_job ( context : ExecutionContext , platform_api_request : PDFServicesAPIRequest , operation_endpoint : str , x_request_id : str , operation_header_info : str )
+
+
+
+
+classmethod upload ( context : ExecutionContext , input_stream , media_type : str ) → Asset
+
+
+
+
+classmethod upload_assets ( context : ExecutionContext , stream_asset_list : [ ] ) → [ ]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.http.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.http.html
new file mode 100644
index 0000000..5d1238a
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.http.html
@@ -0,0 +1,1518 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.http package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.http package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.http package
+
+
+adobe.pdfservices.operation.internal.http.http_client module
+
+
+adobe.pdfservices.operation.internal.http.http_client. process_request ( http_request : HttpRequest , success_status_codes : List , error_response_handler : Callable [ [ Response ] , None ] )
+
+
+
+
+adobe.pdfservices.operation.internal.http.http_method module
+
+
+class adobe.pdfservices.operation.internal.http.http_method. HttpMethod ( value )
+Bases: Enum
+An enumeration.
+
+
+DELETE = 'DELETE'
+
+
+
+
+GET = 'GET'
+
+
+
+
+POST = 'POST'
+
+
+
+
+PUT = 'PUT'
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.http.http_request module
+
+
+class adobe.pdfservices.operation.internal.http.http_request. HttpRequest ( http_method : HttpMethod , request_key : str , url : str , headers : dict , data = None , files = None , authenticator : Authenticator | None = None , read_timeout = None , connect_timeout = None , retryable : bool = False , proxies : ProxyServerConfig | None = None )
+Bases: object
+
+
+
+
+
+adobe.pdfservices.operation.internal.http.response_util module
+
+
+class adobe.pdfservices.operation.internal.http.response_util. ResponseUtil
+Bases: object
+
+
+CUSTOM_ERROR_MESSAGES_STATUS_CODE_MAPPING = {413: {'error_code': 'RequestEntityTooLarge', 'message': 'Request entity too large'}, 502: {'error_code': 'BadGateway', 'message': 'Bad gateway'}, 503: {'error_code': 'ServiceUnavaibale', 'message': 'The Gateway servers are up, but overloaded with requests. Try again later.'}, 504: {'error_code': 'Gateway Timeout', 'message': "The Gateway servers are up, but the request couldn't be serviced due to some failure within our stack. Try again later."}}
+
+
+
+
+INTEGRATION_SERVICE_USAGE_LIMIT_REACHED_ERROR_MESSAGE = 'Service usage limit has been reached for the integration. Please retry after sometime.'
+
+
+
+
+QUOTA_ERROR_MESSAGE = 'Either Quota for this operation is not available or Free trial quota is exhausted. Please visit (www.adobe.com/go/pdftoolsapi_home) to start using free trial quota or (www.adobe.com/go/pdftoolsapi_err_quota) to upgrade to paid credentials.'
+
+
+
+
+SERVICE_USAGE_EXCEPTION_STATUS_CODE_429001_STRING = '429001'
+
+
+
+
+SERVICE_USAGE_EXCEPTION_STATUS_CODE_429002_STRING = '429002'
+
+
+
+
+SERVICE_USAGE_LIMIT_REACHED_ERROR_MESSAGE = 'Service usage limit has been reached. Please retry after sometime.'
+
+
+
+
+static get_request_tracking_id_from_response ( response : Response , is_ims_api_call )
+
+
+
+
+static handle_api_failures ( response : Response , request_key , is_ims_call = False )
+
+
+
+
+static handle_service_api_error_response ( response )
+
+
+
+
+static handle_service_usage_failure ( response : Response )
+
+
+
+
+static handle_upload_asset_failure ( response : Response , request_key : str )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.params.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.params.html
new file mode 100644
index 0000000..01afc06
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.params.html
@@ -0,0 +1,1411 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.params package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.params package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.params package
+
+
+
+adobe.pdfservices.operation.internal.params.page_range module
+
+
+Bases: object
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.util.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.util.html
new file mode 100644
index 0000000..911ea18
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.internal.util.html
@@ -0,0 +1,1578 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.internal.util package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.internal.util package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.util package
+
+
+adobe.pdfservices.operation.internal.util.asset_upload_util module
+
+
+class adobe.pdfservices.operation.internal.util.asset_upload_util. AssetUploadUtil ( context : ExecutionContext , stream_asset : StreamAsset )
+Bases: object
+
+
+
+
+adobe.pdfservices.operation.internal.util.enforce_types module
+
+
+adobe.pdfservices.operation.internal.util.enforce_types. enforce_types ( func : Callable ) → Callable
+
+
+
+
+adobe.pdfservices.operation.internal.util.file_utils module
+
+
+adobe.pdfservices.operation.internal.util.file_utils. read_conf_file_content ( file_path )
+
+
+
+
+adobe.pdfservices.operation.internal.util.json_hint_encoder module
+
+
+class adobe.pdfservices.operation.internal.util.json_hint_encoder. JSONHintDecoder
+Bases: object
+
+
+static as_class ( dct )
+
+
+
+
+static rev ( dct )
+
+
+
+
+
+
+class adobe.pdfservices.operation.internal.util.json_hint_encoder. JSONHintEncoder ( * , skipkeys = False , ensure_ascii = True , check_circular = True , allow_nan = True , sort_keys = False , indent = None , separators = None , default = None )
+Bases: JSONEncoder
+Constructor for JSONEncoder, with sensible defaults.
+If skipkeys is false, then it is a TypeError to attempt
+encoding of keys that are not str, int, float or None. If
+skipkeys is True, such items are simply skipped.
+If ensure_ascii is true, the output is guaranteed to be str
+objects with all incoming non-ASCII characters escaped. If
+ensure_ascii is false, the output can contain non-ASCII characters.
+If check_circular is true, then lists, dicts, and custom encoded
+objects will be checked for circular references during encoding to
+prevent an infinite recursion (which would cause an RecursionError).
+Otherwise, no such check takes place.
+If allow_nan is true, then NaN, Infinity, and -Infinity will be
+encoded as such. This behavior is not JSON specification compliant,
+but is consistent with most JavaScript based encoders and decoders.
+Otherwise, it will be a ValueError to encode such floats.
+If sort_keys is true, then the output of dictionaries will be
+sorted by key; this is useful for regression tests to ensure
+that JSON serializations can be compared on a day-to-day basis.
+If indent is a non-negative integer, then JSON array
+elements and object members will be pretty-printed with that
+indent level. An indent level of 0 will only insert newlines.
+None is the most compact representation.
+If specified, separators should be an (item_separator, key_separator)
+tuple. The default is (’, ‘, ‘: ‘) if indent is None and
+(‘,’, ‘: ‘) otherwise. To get the most compact JSON representation,
+you should specify (‘,’, ‘:’) to eliminate whitespace.
+If specified, default is a function that gets called for objects
+that can’t otherwise be serialized. It should return a JSON encodable
+version of the object or raise a TypeError .
+
+
+default ( obj )
+Implement this method in a subclass such that it returns
+a serializable object for o , or calls the base implementation
+(to raise a TypeError ).
+For example, to support arbitrary iterators, you could
+implement default like this:
+def default ( self , o ):
+ try :
+ iterable = iter ( o )
+ except TypeError :
+ pass
+ else :
+ return list ( iterable )
+ # Let the base class default method raise the TypeError
+ return JSONEncoder . default ( self , o )
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.util.object_util module
+
+
+class adobe.pdfservices.operation.internal.util.object_util. ObjectUtil
+Bases: object
+
+
+classmethod require_not_null ( obj , err_msg )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.util.path_util module
+
+
+adobe.pdfservices.operation.internal.util.path_util. get_file_path ( file_path )
+
+
+
+
+adobe.pdfservices.operation.internal.util.string_util module
+
+
+class adobe.pdfservices.operation.internal.util.string_util. StringUtil
+Bases: object
+
+
+static is_blank ( string : str )
+
+
+
+
+
+
+adobe.pdfservices.operation.internal.util.validation_util module
+
+
+class adobe.pdfservices.operation.internal.util.validation_util. ValidationUtil
+Bases: object
+
+
+classmethod validate_asset_with_page_options ( combine_pdf_job_input : CombinePDFJobInput )
+
+
+
+
+classmethod validate_csc_credential ( csc_credential : CSCCredentials )
+
+
+
+
+classmethod validate_document_merge_params ( document_merge_params : DocumentMergeParams )
+
+
+
+
+classmethod validate_execution_context ( context : ExecutionContext )
+
+
+
+
+classmethod validate_field_location ( field_location : FieldLocation )
+
+
+
+
+classmethod validate_field_options ( field_options : FieldOptions )
+
+
+
+
+classmethod validate_insert_asset_inputs ( base_asset: ~adobe.pdfservices.operation.io.asset.Asset , assets_to_insert: {<class 'int'> , typing.List[adobe.pdfservices.operation.internal.params.combine_pdf_job_input.CombinePDFJobInput]} )
+
+
+
+
+classmethod validate_page_options ( combine_pdf_job_input : CombinePDFJobInput )
+
+
+
+
+classmethod validate_page_ranges ( page_ranges : PageRanges )
+
+
+
+
+classmethod validate_page_ranges_overlap ( page_ranges : PageRanges )
+
+
+
+
+classmethod validate_password ( password : str , is_user_password : bool , encryption_algorithm : EncryptionAlgorithm )
+
+
+
+
+classmethod validate_password_to_remove_protection ( password : str )
+
+
+
+
+classmethod validate_pdf_electronic_seal_params ( pdf_electronic_seal_params : PDFElectronicSealParams )
+
+
+
+
+classmethod validate_protect_pdf_params ( protect_pdf_params : ProtectPDFParams )
+
+
+
+
+classmethod validate_replace_files_inputs ( base_asset: ~adobe.pdfservices.operation.io.asset.Asset , assets_to_replace: {<class 'int'> , <class 'adobe.pdfservices.operation.internal.params.combine_pdf_job_input.CombinePDFJobInput'>} )
+
+
+
+
+classmethod validate_rotate_page_actions ( page_actions : PageActions )
+
+
+
+
+classmethod validate_split_pdf_operation_params ( page_ranges : PageRanges , page_count : int , file_count : int )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.io.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.io.html
new file mode 100644
index 0000000..92f52b6
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.io.html
@@ -0,0 +1,1556 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.io package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.io package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.io package
+
+
+adobe.pdfservices.operation.io.asset module
+
+
+class adobe.pdfservices.operation.io.asset. Asset
+Bases: ABC
+Represents the basic contract for the assets to be used with
+PDFServicesJob
+
+
+
+
+adobe.pdfservices.operation.io.cloud_asset module
+
+
+class adobe.pdfservices.operation.io.cloud_asset. CloudAsset ( asset_id , download_uri = None )
+Bases: Asset
+This class represents an asset stored in Adobe internal storage.
+Constructs an instance of CloudAsset .
+
+Parameters:
+
+
+
+
+
+get_asset_id ( )
+
+Returns:
+the assetId of the asset.
+
+Return type:
+str
+
+
+
+
+
+
+get_download_uri ( )
+
+Returns:
+the downloadURI of the asset.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.io.external_asset module
+
+
+class adobe.pdfservices.operation.io.external_asset. ExternalAsset ( uri : str , * , external_storage_type : ExternalStorageType = None )
+Bases: Asset
+This class represents an asset stored in an external storage.
+Constructs an instance of ExternalAsset .
+
+Parameters:
+
+uri (str ) – URI of the external asset, can not be None.
+external_storage_type (ExternalStorageType ) – external storage type. (Optional, use key-value)
+
+
+
+
+
+get_external_storage_type ( )
+
+Returns:
+the externalStorageType of the external asset.
+
+Return type:
+ExternalStorageType
+
+
+
+
+
+
+get_uri ( )
+
+Returns:
+the URI of the external asset.
+
+Return type:
+str
+
+
+
+
+
+
+json_hint = {'external_storage_type': 'storage', 'uri': 'uri'}
+For JSON Representation of this class, used internally by SDK.
+
+
+
+
+to_json ( )
+
+Returns:
+representation of ExternalAsset as a JSON string, used internally by the SDK.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.io.external_storage_type module
+
+
+class adobe.pdfservices.operation.io.external_storage_type. ExternalStorageType ( value )
+Bases: Enum
+Represents external storage types.
+
+
+BLOB = 'BLOB'
+Represents Blob storage.
+
+
+
+
+DROPBOX = 'DROPBOX'
+Represents Dropbox storage.
+
+
+
+
+S3 = 'S3'
+Represents S3 storage.
+
+
+
+
+SHAREPOINT = 'SHAREPOINT'
+Represents Sharepoint storage.
+
+
+
+
+classmethod get ( storage_type : str )
+Returns ExternalStorageType instance for its string representation.
+
+Parameters:
+storage_type (str ) – Storage type code
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.io.stream_asset module
+
+
+class adobe.pdfservices.operation.io.stream_asset. StreamAsset ( input_stream , mime_type )
+Bases: object
+This class encapsulates input stream and the media type of
+Asset .
+Constructs an instance of StreamAsset .
+
+Parameters:
+
+
+
+
+
+get_input_stream ( )
+
+Returns:
+the input stream of the asset.
+
+
+
+
+
+
+get_mime_type ( )
+
+Returns:
+the mime type of the asset.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.html
new file mode 100644
index 0000000..51846af
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.html
@@ -0,0 +1,1786 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs package
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data.html
new file mode 100644
index 0000000..d913bda
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data.html
@@ -0,0 +1,1407 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.jobs.export\_pdf\_form\_data package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.export\_pdf\_form\_data package
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.jobs.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.jobs.html
new file mode 100644
index 0000000..6e02f17
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.jobs.html
@@ -0,0 +1,2363 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.jobs package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs package
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.autotag_pdf_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.autotag_pdf_job. AutotagPDFJob ( input_asset : Asset , * , autotag_pdf_params : AutotagPDFParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that creates PDF documents with enhanced readability from existing PDF documents.
+An optional tagging report can also be generated which contains the information about the tags that the tagged
+output PDF document contains.
+Accessibility tags, used by assistive technology such as screen reader are required to make PDF files compliant.
+However, the generated PDF is not guaranteed to comply with accessibility standards such as WCAG and PDF/UA as
+there could be a need to perform further downstream remediation to meet those standards.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+autotag_pdf_job = AutotagPDFJob ( input_asset )
+location = pdf_services . submit ( autotag_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , AutotagPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_tagged_pdf ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new instance of AutotagPDFJob .
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+autotag_pdf_params (AutotagPDFParams ) – AutotagPDFParams to set.(Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of AutotagPDFJob
+
+Return type:
+AutotagPDFJob
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.combine_pdf_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.combine_pdf_job. CombinePDFJob ( combine_pdf_params : CombinePDFParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that combines multiple PDF files into a single PDF file. Allows specifying which pages of the source
+files to combine.
+Sample usage.
+file = open ( 'SOURCE_PATH_1' , 'rb' )
+input_stream_1 = file . read ()
+file . close ()
+file = open ( 'SOURCE_PATH_2' , 'rb' )
+input_stream_2 = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+stream_assets = [ StreamAsset ( input_stream_1 , MediaType . PDF ),
+ StreamAsset ( input_stream_2 , MediaType . PDF )]
+assets = pdf_services . upload_assets ( stream_assets )
+combine_pdf_params = (( CombinePDFParams ()
+ . add_asset ( assets [ 0 ]))
+ . add_asset ( assets [ 1 ]))
+combine_pdf_job = CombinePDFJob ( combine_pdf_params = combine_pdf_params )
+location = pdf_services . submit ( combine_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , CombinePDFResult )
+result_asset : CombinePDFResult = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new CombinePDFJob instance.
+
+Parameters:
+
+combine_pdf_params (CombinePDFParams ) – CombinePDFParams to set; can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of CombinePDFJob
+
+Return type:
+CombinePDFJob
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.compress_pdf_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.compress_pdf_job. CompressPDFJob ( input_asset : Asset , * , compress_pdf_params : CompressPDFParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that reduces the size of a PDF file. Allows specifying
+CompressionLevel
+for compressing pdf
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+compress_pdf_job = CompressPDFJob ( input_asset = input_asset )
+location = pdf_services . submit ( compress_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , CompressPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new CompressPDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+compress_pdf_params (CompressPDFParams ) – CompressPDFParams to set.(Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of CompressPDFJob
+
+Return type:
+CompressPDFJob
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.create_pdf_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.create_pdf_job. CreatePDFJob ( input_asset : Asset , * , create_pdf_params : CreatePDFParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that converts a non-PDF file to a PDF file. Some source formats may have associated conversion parameters.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . DOCX )
+create_pdf_job = CreatePDFJob ( input_asset )
+location = pdf_services . submit ( create_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , CreatePDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new instance of CreatePDFJob .
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+create_pdf_params (CreatePDFParams ) – CreatePDFParams to set.(Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of CreatePDFJob.
+
+Return type:
+CreatePDFJob
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.delete_pages_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.delete_pages_job. DeletePagesJob ( input_asset : Asset , delete_pages_params : DeletePagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job to delete pages in a PDF file.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+page_ranges_for_deletion = PageRanges ()
+page_ranges . add_single_page ( 1 )
+delete_pages_params = DeletePagesParams ( page_ranges = page_ranges_for_deletion )
+delete_pages_job = DeletePagesJob ( input_asset = input_asset ,
+ delete_pages_params = delete_pages_params )
+location = pdf_services . submit ( delete_pages_job )
+pdf_services_response = pdf_services . get_job_result ( location , CompressPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new DeletePagesJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+delete_pages_params (DeletePagesParams ) – DeletePagesParams to set.(Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of DeletePagesJob
+
+Return type:
+DeletePagesJob
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.document_merge_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.document_merge_job. DocumentMergeJob ( input_asset : Asset , document_merge_params : DocumentMergeParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that enables the clients to produce high fidelity PDF and Word documents with dynamic data inputs.
+This operation merges the JSON data with the Word template to create dynamic documents for contracts and
+agreements, invoices, proposals, reports, forms, branded marketing documents and more.
+To know more about document generation and document templates,
+Click Here .
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . DOCX )
+json_data_for_merge = { "customerName" : "Kane Miller" , "customerVisits" : 100 }
+document_merge_params = DocumentMergeParams ( json_data_for_merge = json_data_for_merge ,
+ output_format = OutputFormat . DOCX )
+document_merge_job = DocumentMergeJob ( input_asset = input_asset ,
+ document_merge_params = document_merge_params )
+location = pdf_services . submit ( document_merge_job )
+pdf_services_response = pdf_services . get_job_result ( location , DocumentMergePDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new DocumentMergeJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+document_merge_params (DocumentMergeParams ) – DocumentMergeParams to set. can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of DocumentMergeJob
+
+Return type:
+DocumentMergeJob
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.eseal_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.eseal_job. PDFElectronicSealJob ( input_asset : Asset , electronic_seal_params : PDFElectronicSealParams , * , seal_image_asset : Asset | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that allows clients to apply an electronic seal onto various PDF documents such as agreements, invoices, and more.
+To know more about PDF Electronic Seal, Click Here .
+Sample usage.
+pdf_file = open ( 'SOURCE_PATH' , 'rb' )
+file_input_stream = pdf_file . read ()
+pdf_file . close ()
+
+seal_image_file = open ( 'IMAGE_SOURCE_PATH' , 'rb' )
+seal_image_input_stream = seal_image_file . read ()
+seal_image_file . close ()
+
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+asset = pdf_services . upload ( input_stream = file_input_stream , mime_type = PDFServicesMediaType . PDF )
+seal_image_asset = pdf_services . upload ( input_stream = seal_image_input_stream , mime_type = PDFServicesMediaType . PNG )
+document_level_permission = DocumentLevelPermission . FORM_FILLING
+seal_field_name = "Signature1"
+seal_page_number = 1
+seal_visible = True
+field_location = FieldLocation ( 150 , 250 , 350 , 200 )
+field_options = FieldOptions (
+ field_name = seal_field_name ,
+ field_location = field_location ,
+ page_number = seal_page_number ,
+ visible = seal_visible
+)
+provider_name = "<PROVIDER_NAME>"
+access_token = "<ACCESS_TOKEN>"
+credential_id = "<CREDENTIAL_ID>"
+pin = "<PIN>"
+csc_auth_context = CSCAuthContext (
+ access_token = access_token ,
+ token_type = "Bearer" ,
+)
+certificate_credentials = CSCCredentials (
+ provider_name = provider_name ,
+ credential_id = credential_id ,
+ pin = pin ,
+ csc_auth_context = csc_auth_context ,
+)
+electronic_seal_params = PDFElectronicSealParams (
+ seal_certificate_credentials = certificate_credentials ,
+ seal_field_options = field_options ,
+)
+electronic_seal_job = PDFElectronicSealJob ( input_asset = asset ,
+ electronic_seal_params = electronic_seal_params ,
+ seal_image_asset = seal_image_asset )
+location = pdf_services . submit ( electronic_seal_job )
+pdf_services_response = pdf_services . get_job_result ( location , ESealPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new PDFElectronicSealJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+electronic_seal_params (PDFElectronicSealParams ) – Parameters for electronic seal; can not be None.
+seal_image_asset (Asset ) – Seal image asset for the job. (Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of PDFElectronicSealJob.
+
+Return type:
+PDFElectronicSealJob
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_job. ExportPDFJob ( input_asset : Asset , export_pdf_params : ExportPDFParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job which exports a source PDF file to a supported format specified by
+ExportPDFTargetFormat
+For example, a PDF can be exported to a DOCX file as follows:
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+export_pdf_params = ExportPDFParams ( target_format = ExportPDFTargetFormat . DOCX )
+export_pdf_job = ExportPDFJob ( input_asset = input_asset , export_pdf_params = export_pdf_params )
+location = pdf_services . submit ( export_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , ExportPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new ExportPDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+export_pdf_params (ExportPDFParams ) – ExportPDFParams object containing the export parameters; can not be None.
+output_asset (Asset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+Returns:
+A new instance of ExportPDFJob.
+
+Return type:
+ExportPDFJob
+
+
+
+
Note
+
External assets can be set as output only when input is external asset as well
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_to_images_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_to_images_job. ExportPDFtoImagesJob ( input_asset : Asset , export_pdf_to_images_params : ExportPDFtoImagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job which exports a source PDF file to a supported format specified by ExportPDFToImagesTargetFormat
+The result is a list of images or a list containing a zip of images. For example, a PDF file with 15
+pages will generate 15 image files. The first file’s name ends with “_0” and the last file’s name ends with “_14”.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+export_pdf_to_images_params = ExportPDFtoImagesParams (
+ export_pdf_to_images_target_format = ExportPDFToImagesTargetFormat . JPEG ,
+ export_pdf_to_images_output_type = ExportPDFToImagesOutputType . LIST_OF_PAGE_IMAGES
+)
+export_pdf_to_images_job = ExportPDFtoImagesJob (
+ input_asset = input_asset ,
+ export_pdf_to_images_params = export_pdf_to_images_params
+)
+location = pdf_services . submit ( export_pdf_to_images_job )
+pdf_services_response = pdf_services . get_job_result ( location , ExportPDFtoImagesResult )
+result_assets = pdf_services_response . get_result () . get_assets ()
+
+
+Constructs a new ExportPDFToImagesJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+export_pdf_to_images_params (ExportPDFtoImagesParams ) – ExportPDFToImagesParams object containing the export to images parameters; can not be None.
+output_asset (Asset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.html_to_pdf_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.html_to_pdf_job. HTMLtoPDFJob ( * , input_asset : Asset | None = None , input_url : str | None = None , html_to_pdf_params : HTMLtoPDFParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that converts a HTML file to a PDF file.
+An HTML input can be provided either as a local zip archive or as a static HTML file with inline CSS.
+Alternatively, an HTML can also be specified via URL.
+
+While creating the corresponding Asset instance, the media type must be:
+“application/zip”, if the input is a local zip archive.
+“text/html”, if the input is a static HTML file with inline CSS
+
+
+In case the input is a local zip archive, it must have the following structure:
+The main HTML file must be named “index.html”.
+“index.html” must exist at the top level of zip archive, not in a folder.
+
+
+
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . ZIP )
+page_layout = PageLayout ( page_height = 11.5 , page_width = 8 )
+html_to_pdf_params = HTMLtoPDFParams ( page_layout = page_layout , include_header_footer = True )
+html_to_pdf_job = HTMLtoPDFJob ( input_asset = input_asset , html_to_pdf_params = html_to_pdf_params )
+location = pdf_services . submit ( html_to_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , HTMLtoPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new HTMLtoPDFJob .
+At least one of input_asset or input_url needs to be specified.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file. (Optional, use key-value)
+input_url (str ) – String representing the input URL. (Optional, use key-value)
+html_to_pdf_params (HTMLtoPDFParams ) – HTMLToPDFParams}. (Optional, use key-value)
+output_asset (Asset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.insert_pages_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.insert_pages_job. InsertPagesJob ( insert_pages_params : InsertPagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that can be used to insert pages of multiple PDF files into a base PDF file.
+For more complex use cases, refer the
+CombinePDFJob .
+Sample Usage:
+base_file = open ( 'SOURCE_PATH' , 'rb' )
+base_input_stream = base_file . read ()
+base_file . close ()
+file_to_insert = open ( 'SOURCE_PATH_1' , 'rb' )
+input_stream_to_insert = file_to_insert . read ()
+file_to_insert . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+base_asset = pdf_services . upload ( input_stream = base_input_stream ,
+ mime_type = MediaType . PDF )
+asset_to_insert = pdf_services . upload ( input_stream = input_stream_to_insert ,
+ mime_type = MediaType . PDF )
+page_ranges = PageRanges () . add_range ( 1 , 3 )
+insert_pages_params = InsertPagesParams ( base_asset = base_asset )
+insert_pages_params . add_pages_to_insert ( input_asset = asset_to_insert , page_ranges = page_ranges , base_page = 2 )
+insert_pages_job = InsertPagesJob ( insert_pages_params = insert_pages_params )
+location = pdf_services . submit ( insert_pages_job )
+pdf_services_response = pdf_services . get_job_result ( location , InsertPagesResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new InsertPagesPDFJob instance.
+
+Parameters:
+
+insert_pages_params (InsertPagesParams ) – Object containing the input files and the page numbers to insert at;
+can not be None.
+output_asset (Asset ) – Object representing the output asset. (Optional, use key-value)
+External assets can be set as output only when input is external asset as well
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.linearize_pdf_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.linearize_pdf_job. LinearizePDFJob ( input_asset : Asset , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that converts a PDF file into a linearized (also known as “web optimized”) PDF file. Such PDF files are
+optimized for incremental access in network environments.
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+linearize_pdf_job = LinearizePDFJob ( input_asset = input_asset )
+location = pdf_services . submit ( linearize_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , LinearizePDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new LinearizePDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+output_asset (ExternalAsset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job. OCRPDFJob ( input_asset : Asset , * , ocr_pdf_params : OCRParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that convert a PDF file into a searchable PDF file. Allows specifying OCRSupportedLocale and OCR Type.
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+ocr_pdf_job = OCRPDFJob ( input_asset = input_asset )
+location = pdf_services . submit ( ocr_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , OCRPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new OCRPDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+ocr_pdf_params (OCRParams ) – OCRParams} object containing the OCR parameters. (Optional, use key-value)
+output_asset (ExternalAsset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.pdf_properties_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.pdf_properties_job. PDFPropertiesJob ( input_asset : Asset , * , pdf_properties_params : PDFPropertiesParams | None = None )
+Bases: PDFServicesJob
+A job that is used to fetch properties from an input PDF file. The properties are returned in a dict.
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+pdf_properties_params = PDFPropertiesParams ( include_page_level_properties = True )
+pdf_properties_job = PDFPropertiesJob ( input_asset = input_asset , pdf_properties_params = pdf_properties_params )
+location = pdf_services . submit ( pdf_properties_job )
+pdf_services_response = pdf_services . get_job_result ( location , PDFPropertiesResult )
+pdf_properties_result = pdf_services_response . get_result ()
+
+
+Constructs a new PDFPropertiesJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+pdf_properties_params (PDFPropertiesParams ) – PDFPropertiesParams object containing the properties to be fetched.
+(Optional, use key-value)
+output_asset (ExternalAsset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.protect_pdf_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.protect_pdf_job. ProtectPDFJob ( input_asset : Asset , protect_pdf_params : PasswordProtectParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that is used for securing PDF document with password(s).
+The password(s) is used for encrypting the PDF document and setting the restriction on certain features
+like printing, editing and copying in the PDF document.
+The supported algorithm for encrypting the PDF document are listed here. The EncryptionAlgorithm enum can
+be used to set the encryption algorithm.
+
+
+For AES-128 encryption the password supports LATIN-I characters only.
+For AES-256 encryption the password supports Unicode character set.
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+protect_pdf_params = PasswordProtectParams (
+ user_password = 'password' ,
+ encryption_algorithm = EncryptionAlgorithm . AES_256 ,
+ content_encryption = ContentEncryption . ALL_CONTENT ,
+)
+protect_pdf_job = ProtectPDFJob ( input_asset = input_asset , protect_pdf_params = protect_pdf_params )
+location = pdf_services . submit ( protect_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , ProtectPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new ProtectPDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+protect_pdf_params (PasswordProtectParams ) – ProtectPDFParams object containing the protect PDF parameters; can not be None.
+output_asset (ExternalAsset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.remove_protection_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.remove_protection_job. RemoveProtectionJob ( input_asset : Asset , remove_protection_params : RemoveProtectionParams , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that allows to remove password security from a PDF document.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+remove_protection_params = RemoveProtectionParams ( password = "password" )
+remove_protection_job = RemoveProtectionJob ( input_asset = input_asset ,
+ remove_protection_params = remove_protection_params )
+location = pdf_services . submit ( remove_protection_job )
+pdf_services_response = pdf_services . get_job_result ( location , RemoveProtectionResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new RemoveProtectionJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job. (Mandatory, use key-value)
+remove_protection_params (RemoveProtectionParams ) – RemoveProtectionParams to set; can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of RemoveProtectionJob .
+
+Return type:
+RemoveProtectionJob
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.reorder_pages_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.reorder_pages_job. ReorderPagesJob ( reorder_pages_params : ReorderPagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that allows to rearrange pages in a PDF file according to the specified order.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+pages_to_reorder = PageRanges () . add_range ( 3 , 4 )
+ . add_single_page ( 1 )
+reorder_pages_params = ReorderPagesParams ( asset = input_asset , page_ranges = pages_to_reorder )
+reorder_pages_job = ReorderPagesJob ( reorder_pages_params = reorder_pages_params )
+location = pdf_services . submit ( reorder_pages_job )
+pdf_services_response = pdf_services . get_job_result ( location , ReorderPagesResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new ReorderPagesJob instance.
+
+Parameters:
+
+reorder_pages_params (ReorderPagesParams ) – ReorderPagesParams to set; can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of ReorderPagesJob .
+
+Return type:
+ReorderPagesJob
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.replace_pages_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.replace_pages_job. ReplacePagesJob ( replace_pages_params : ReplacePagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that allows specific pages in a PDF file to be replaced with pages from multiple PDF files.
+Sample usage.
+base_file = open ( 'SOURCE_PATH' , 'rb' )
+base_input_stream = base_file . read ()
+base_file . close ()
+file_1 = open ( 'SOURCE_PATH' , 'rb' )
+input_stream_1 = file_1 . read ()
+file_1 . close ()
+file_2 = open ( 'SOURCE_PATH' , 'rb' )
+input_stream_2 = file_2 . read ()
+file_2 . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+base_asset = pdf_services . upload ( input_stream = base_input_stream ,
+ mime_type = MediaType . PDF )
+asset_1 = pdf_services . upload ( input_stream = input_stream_1 ,
+ mime_type = MediaType . PDF )
+asset_2 = pdf_services . upload ( input_stream = input_stream_2 ,
+ mime_type = MediaType . PDF )
+page_ranges = PageRanges () . add_range ( 3 , 4 )
+ . add_single_page ( 1 )
+replace_pages_params = ReplacePagesParams ( base_asset = base_asset )
+replace_pages_params . add_pages_to_replace ( input_asset = asset_1 , page_ranges = page_ranges , base_page = 1 )
+replace_pages_params . add_pages_to_replace ( input_asset = asset_2 , base_page = 3 )
+replace_pages_job = ReplacePagesJob ( replace_pages_params = replace_pages_params )
+location = pdf_services . submit ( replace_pages_job )
+pdf_services_response = pdf_services . get_job_result ( location , ReplacePagesResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new ReplacePagesJob instance.
+
+Parameters:
+
+replace_pages_params (ReplacePagesParams ) – ReplacePagesParams to set; can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of ReplacePagesJob .
+
+Return type:
+ReplacePagesJob
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.rotate_pages_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.rotate_pages_job. RotatePagesJob ( input_asset : Asset , rotate_pages_params : RotatePagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that allows rotation of specific pages in a PDF file.
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+rotate_pages_params = RotatePagesParams ()
+rotate_pages_params . add_angle_to_rotate ( angle = Angle . ANGLE_90 )
+reorder_pages_job = RotatePagesJob ( input_asset = input_asset , rotate_pages_params = rotate_pages_params )
+location = pdf_services . submit ( reorder_pages_job )
+pdf_services_response = pdf_services . get_job_result ( location , RotatePagesResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new RotatePagesJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+rotate_pages_params (RotatePagesParams ) – RotatePagesParams} object containing the rotation angle and page ranges;
+can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.jobs.split_pdf_job module
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.split_pdf_job. SplitPDFJob ( input_asset : Asset , split_pdf_params : SplitPDFParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that splits PDF document into multiple smaller documents by simply specifying either the number of files,
+pages per file, or page ranges.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+base_input_stream = base_file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+split_pdf_params = SplitPDFParams ( page_count = 2 )
+split_pdf_job = SplitPDFJob ( input_asset , split_pdf_params )
+location = pdf_services . submit ( split_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , SplitPDFResult )
+result_assets = pdf_services_response . get_result () . get_assets ()
+
+
+Constructs a new SplitPDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+split_pdf_params (SplitPDFParams ) – SplitPDFParams to set; can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of SplitPDFJob .
+
+Return type:
+SplitPDFJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.html
new file mode 100644
index 0000000..66ccd17
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.html
@@ -0,0 +1,1401 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.autotag_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.autotag_pdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.autotag_pdf package
+
+
+adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params. AutotagPDFParams ( * , shift_headings : bool = False , generate_report : bool = False )
+Bases: PDFServicesJobParams
+Parameters for creating a tagged PDF using
+AutotagPDFJob .
+Constructs a new instance of AutotagPDFParams .
+
+Parameters:
+
+generate_report (bool ) – If true, generates an additional tagging report which contains the information about the
+tags that the tagged output PDF document contains.(Optional, use key-value)
+shift_headings (bool ) – If true, then the headings will be shifted in the output PDF document. (Optional, use key-value)
+
+
+Returns:
+A new instance of AutotagPDFParams
+
+Return type:
+AutotagPDFParams
+
+
+
+
+get_generate_report ( )
+
+Returns:
+A boolean value specifying whether an additional tagging report needs to be generated.
+
+Return type:
+bool
+
+
+
+
+
+
+get_shift_headings ( )
+
+Returns:
+A boolean value specifying whether headings need to be shifted in the tagged PDF.
+
+Return type:
+bool
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.combine_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.combine_pdf.html
new file mode 100644
index 0000000..bccf20d
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.combine_pdf.html
@@ -0,0 +1,1396 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.combine_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.combine_pdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.combine_pdf package
+
+
+adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params. CombinePDFParams
+Bases: PDFServicesJobParams
+Parameters for combining PDFs using
+CombinePDFJob .
+Constructs a new CombinePDFParams instance.
+
+Returns:
+A new instance of CombinePDFParams
+
+Return type:
+CombinePDFParams
+
+
+
+
+add_asset ( asset: ~adobe.pdfservices.operation.io.asset.Asset , * , page_ranges: ~adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges = <adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges object> )
+Adds an Asset with
+PageRanges to combine.
+
+Parameters:
+
+
+
+
+
+
+
+get_assets_to_combine ( )
+
+Returns:
+a list of
+CombinePDFJobInput
+instances.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.compress_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.compress_pdf.html
new file mode 100644
index 0000000..469bcd2
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.compress_pdf.html
@@ -0,0 +1,1426 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.compress_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.compress_pdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.compress_pdf package
+
+
+adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params. CompressPDFParams ( * , compression_level : CompressionLevel = CompressionLevel.MEDIUM )
+Bases: PDFServicesJobParams
+Parameters for reducing file size of a pdf using
+CompressPDFJob
+Creates an instance of CompressPDFParams
+
+Parameters:
+compression_level (CompressionLevel ) – see CompressionLevel . (Optional, use key-value)
+
+
+
+
+get_compression_level ( )
+Returns the compression level to be used for Compress PDF, specified by
+CompressionLevel
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level. CompressionLevel ( value )
+Bases: Enum
+Supported compression levels for
+CompressPDFJob
+Constructs Compression Level from its string representation
+
+Parameters:
+compression_level – String representation
+
+
+
+
+HIGH = 'HIGH'
+Reduces the file size of pdf by reducing resolution of the coloured and grayscale images above 100 dpi to 72
+dpi (dots per inch).
+This option uses JPEG medium quality compression.
+Output pdf will not contain hidden layers, document structure, metadata, javascript, user properties and print
+settings.
+
+
+
+
+LOW = 'LOW'
+Reduces the file size of pdf by reducing resolution of the coloured and grayscale images above 250 dpi to 200
+dpi (dots per inch).
+This option uses JP2K high quality compression.
+
+
+
+
+MEDIUM = 'MEDIUM'
+Reduces the file size of pdf by reducing resolution of the coloured and grayscale images above 200 dpi to 144
+dpi (dots per inch).
+This option uses JP2K medium quality compression.
+
+
+
+
+get_compression_level ( )
+Returns the string representation of this CompressionLevel
+
+Returns:
+String representation of this CompressionLevel
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.html
new file mode 100644
index 0000000..0b79e2f
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.html
@@ -0,0 +1,1629 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel package
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params. CreatePDFFromExcelParams ( * , document_language : DocumentLanguage = DocumentLanguage.EN_US , create_tagged_pdf : bool = False )
+Bases: CreatePDFParams
+Constructs a new instance of CreatePDFFromExcelParams .
+
+Parameters:
+
+document_language (DocumentLanguage ) – Sets office preferred editing language to be used for conversion; can not be None.
+create_tagged_pdf (bool ) – Whether to create a tagged PDF. The default value is false. (Optional, use key-value)
+
+
+
+
+
+get_create_tagged_pdf ( )
+Used internally by this SDK, not intended to be called by clients.
+
+
+
+
+get_document_language ( )
+
+Returns:
+Language of the input document.
+
+Return type:
+DocumentLanguage
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language. DocumentLanguage ( value )
+Bases: Enum
+Supported locales for Excel to PDF.
+
+
+BG_BG = 'bg-BG'
+Represents “Bulgarian (Bulgaria)” locale
+
+
+
+
+CA_CA = 'ca-CA'
+Represents “Catalan (Canada)” locale
+
+
+
+
+CS_CZ = 'cs-CZ'
+Represents “Czech (Czech Republic)” locale
+
+
+
+
+DA_DK = 'da-DK'
+Represents “Danish (Denmark)” locale
+
+
+
+
+DE_CH = 'de-CH'
+Represents “German (Switzerland)” locale
+
+
+
+
+DE_DE = 'de-DE'
+Represents “German (Germany)” locale
+
+
+
+
+EL_GR = 'el-GR'
+Represents “Greek (Greece)” locale
+
+
+
+
+EN_GB = 'en-GB'
+Represents “English (United Kingdom)” locale
+
+
+
+
+EN_US = 'en-US'
+Represents “English (United States)” locale
+
+
+
+
+ES_ES = 'es-ES'
+Represents “Spanish (Spain)” locale
+
+
+
+
+ET_EE = 'et-EE'
+Represents “Estonian (Estonia)” locale
+
+
+
+
+FI_FI = 'fi-FI'
+Represents “Finnish (Finland)” locale
+
+
+
+
+FR_FR = 'fr-FR'
+Represents “French (France)” locale
+
+
+
+
+HR_HR = 'hr-HR'
+Represents “Croatian (Croatia)” locale
+
+
+
+
+HU_HU = 'hu-HU'
+Represents “Hungarian (Hungary)” locale
+
+
+
+
+IT_IT = 'it-IT'
+Represents “Italian (Italy)” locale
+
+
+
+
+IW_IL = 'iw-IL'
+Represents “Hebrew (Israel)” locale
+
+
+
+
+JA_JP = 'ja-JP'
+Represents “Japanese (Japan)” locale.
+Please note that this locale is only supported for US(default) region.
+
+
+
+
+KO_KR = 'ko-KR'
+Represents “Korean (Korea)” locale
+
+
+
+
+LT_LT = 'lt-LT'
+Represents “Lithuanian (Lithuania)” locale
+
+
+
+
+LV_LV = 'lv-LV'
+Represents “Latvian (Latvia)” locale
+
+
+
+
+MK_MK = 'mk-MK'
+Represents “Macedonian (Macedonia)” locale
+
+
+
+
+MT_MT = 'mt-MT'
+Represents “Maltese (Malta)” locale
+
+
+
+
+NB_NO = 'nb-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+NL_NL = 'nl-NL'
+Represents “Dutch (Netherlands)” locale
+
+
+
+
+NO_NO = 'no-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+PL_PL = 'pl-PL'
+Represents “Polish (Poland)” locale
+
+
+
+
+PT_BR = 'pt-BR'
+Represents “Portuguese (Brazil)” locale
+
+
+
+
+RO_RO = 'ro-RO'
+Represents “Romanian (Romania)” locale
+
+
+
+
+RU_RU = 'ru-RU'
+Represents “Russian (Russia)” locale
+
+
+
+
+SK_SK = 'sk-SK'
+Represents “Slovak (Slovakia)” locale
+
+
+
+
+SL_SI = 'sl-SI'
+Represents “Slovenian (Slovenia)” locale
+
+
+
+
+SR_SR = 'sr-SR'
+Represents “Serbian (Serbia)” locale
+
+
+
+
+SV_SE = 'sv-SE'
+Represents “Swedish (Sweden)” locale
+
+
+
+
+TR_TR = 'tr-TR'
+Represents “Turkish (Turkey)” locale
+
+
+
+
+UK_UA = 'uk-UA'
+Represents “Ukrainian (Ukraine)” locale
+
+
+
+
+ZH_CN = 'zh-CN'
+Represents “Chinese (China)” locale
+
+
+
+
+ZH_HK = 'zh-HK'
+Represents “Chinese (Hong Kong)” locale
+
+
+
+
+get_document_language ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.html
new file mode 100644
index 0000000..aedcc4e
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.html
@@ -0,0 +1,1551 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.create_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf package
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams. CreatePDFParams
+Bases: PDFServicesJobParams , ABC
+Marker base class for CreatePDFJob
+params. The factory methods within this class can be used to create instances of params classes corresponding to
+the source media type.
+
+
+abstract get_create_tagged_pdf ( )
+
+
+
+
+abstract get_document_language ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.html
new file mode 100644
index 0000000..4eb80e5
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.html
@@ -0,0 +1,1629 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt package
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params. CreatePDFFromPPTParams ( * , document_language : DocumentLanguage = DocumentLanguage.EN_US , create_tagged_pdf : bool = False )
+Bases: CreatePDFParams
+Constructs a new instance of CreatePDFFromPPTParams .
+
+Parameters:
+
+document_language (DocumentLanguage ) – Sets office preferred editing language to be used for conversion; can not be None.
+create_tagged_pdf (bool ) – Whether to create a tagged PDF. The default value is false. (Optional, use key-value)
+
+
+
+
+
+get_create_tagged_pdf ( )
+Used internally by this SDK, not intended to be called by clients.
+
+
+
+
+get_document_language ( )
+
+Returns:
+Language of the input document.
+
+Return type:
+DocumentLanguage
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language. DocumentLanguage ( value )
+Bases: Enum
+Supported locales for PPT to PDF.
+
+
+BG_BG = 'bg-BG'
+Represents “Bulgarian (Bulgaria)” locale
+
+
+
+
+CA_CA = 'ca-CA'
+Represents “Catalan (Canada)” locale
+
+
+
+
+CS_CZ = 'cs-CZ'
+Represents “Czech (Czech Republic)” locale
+
+
+
+
+DA_DK = 'da-DK'
+Represents “Danish (Denmark)” locale
+
+
+
+
+DE_CH = 'de-CH'
+Represents “German (Switzerland)” locale
+
+
+
+
+DE_DE = 'de-DE'
+Represents “German (Germany)” locale
+
+
+
+
+EL_GR = 'el-GR'
+Represents “Greek (Greece)” locale
+
+
+
+
+EN_GB = 'en-GB'
+Represents “English (United Kingdom)” locale
+
+
+
+
+EN_US = 'en-US'
+Represents “English (United States)” locale
+
+
+
+
+ES_ES = 'es-ES'
+Represents “Spanish (Spain)” locale
+
+
+
+
+ET_EE = 'et-EE'
+Represents “Estonian (Estonia)” locale
+
+
+
+
+FI_FI = 'fi-FI'
+Represents “Finnish (Finland)” locale
+
+
+
+
+FR_FR = 'fr-FR'
+Represents “French (France)” locale
+
+
+
+
+HR_HR = 'hr-HR'
+Represents “Croatian (Croatia)” locale
+
+
+
+
+HU_HU = 'hu-HU'
+Represents “Hungarian (Hungary)” locale
+
+
+
+
+IT_IT = 'it-IT'
+Represents “Italian (Italy)” locale
+
+
+
+
+IW_IL = 'iw-IL'
+Represents “Hebrew (Israel)” locale
+
+
+
+
+JA_JP = 'ja-JP'
+Represents “Japanese (Japan)” locale.
+Please note that this locale is only supported for US(default) region.
+
+
+
+
+KO_KR = 'ko-KR'
+Represents “Korean (Korea)” locale
+
+
+
+
+LT_LT = 'lt-LT'
+Represents “Lithuanian (Lithuania)” locale
+
+
+
+
+LV_LV = 'lv-LV'
+Represents “Latvian (Latvia)” locale
+
+
+
+
+MK_MK = 'mk-MK'
+Represents “Macedonian (Macedonia)” locale
+
+
+
+
+MT_MT = 'mt-MT'
+Represents “Maltese (Malta)” locale
+
+
+
+
+NB_NO = 'nb-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+NL_NL = 'nl-NL'
+Represents “Dutch (Netherlands)” locale
+
+
+
+
+NO_NO = 'no-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+PL_PL = 'pl-PL'
+Represents “Polish (Poland)” locale
+
+
+
+
+PT_BR = 'pt-BR'
+Represents “Portuguese (Brazil)” locale
+
+
+
+
+RO_RO = 'ro-RO'
+Represents “Romanian (Romania)” locale
+
+
+
+
+RU_RU = 'ru-RU'
+Represents “Russian (Russia)” locale
+
+
+
+
+SK_SK = 'sk-SK'
+Represents “Slovak (Slovakia)” locale
+
+
+
+
+SL_SI = 'sl-SI'
+Represents “Slovenian (Slovenia)” locale
+
+
+
+
+SR_SR = 'sr-SR'
+Represents “Serbian (Serbia)” locale
+
+
+
+
+SV_SE = 'sv-SE'
+Represents “Swedish (Sweden)” locale
+
+
+
+
+TR_TR = 'tr-TR'
+Represents “Turkish (Turkey)” locale
+
+
+
+
+UK_UA = 'uk-UA'
+Represents “Ukrainian (Ukraine)” locale
+
+
+
+
+ZH_CN = 'zh-CN'
+Represents “Chinese (China)” locale
+
+
+
+
+ZH_HK = 'zh-HK'
+Represents “Chinese (Hong Kong)” locale
+
+
+
+
+get_document_language ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.html
new file mode 100644
index 0000000..b87c4cd
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.html
@@ -0,0 +1,1629 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.create_pdf.word package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.word package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf.word package
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params. CreatePDFFromWordParams ( * , document_language : DocumentLanguage = DocumentLanguage.EN_US , create_tagged_pdf : bool = False )
+Bases: CreatePDFParams
+Constructs a new instance of CreatePDFFromWordParams .
+
+Parameters:
+
+document_language (DocumentLanguage ) – Sets office preferred editing language to be used for conversion; can not be None.
+create_tagged_pdf (bool ) – Whether to create a tagged PDF. The default value is false. (Optional, use key-value)
+
+
+
+
+
+get_create_tagged_pdf ( )
+Used internally by this SDK, not intended to be called by clients.
+
+
+
+
+get_document_language ( )
+
+Returns:
+Language of the input document.
+
+Return type:
+DocumentLanguage
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language. DocumentLanguage ( value )
+Bases: Enum
+Supported locales for Word to PDF.
+
+
+BG_BG = 'bg-BG'
+Represents “Bulgarian (Bulgaria)” locale
+
+
+
+
+CA_CA = 'ca-CA'
+Represents “Catalan (Canada)” locale
+
+
+
+
+CS_CZ = 'cs-CZ'
+Represents “Czech (Czech Republic)” locale
+
+
+
+
+DA_DK = 'da-DK'
+Represents “Danish (Denmark)” locale
+
+
+
+
+DE_CH = 'de-CH'
+Represents “German (Switzerland)” locale
+
+
+
+
+DE_DE = 'de-DE'
+Represents “German (Germany)” locale
+
+
+
+
+EL_GR = 'el-GR'
+Represents “Greek (Greece)” locale
+
+
+
+
+EN_GB = 'en-GB'
+Represents “English (United Kingdom)” locale
+
+
+
+
+EN_US = 'en-US'
+Represents “English (United States)” locale
+
+
+
+
+ES_ES = 'es-ES'
+Represents “Spanish (Spain)” locale
+
+
+
+
+ET_EE = 'et-EE'
+Represents “Estonian (Estonia)” locale
+
+
+
+
+FI_FI = 'fi-FI'
+Represents “Finnish (Finland)” locale
+
+
+
+
+FR_FR = 'fr-FR'
+Represents “French (France)” locale
+
+
+
+
+HR_HR = 'hr-HR'
+Represents “Croatian (Croatia)” locale
+
+
+
+
+HU_HU = 'hu-HU'
+Represents “Hungarian (Hungary)” locale
+
+
+
+
+IT_IT = 'it-IT'
+Represents “Italian (Italy)” locale
+
+
+
+
+IW_IL = 'iw-IL'
+Represents “Hebrew (Israel)” locale
+
+
+
+
+JA_JP = 'ja-JP'
+Represents “Japanese (Japan)” locale.
+Please note that this locale is only supported for US(default) region.
+
+
+
+
+KO_KR = 'ko-KR'
+Represents “Korean (Korea)” locale
+
+
+
+
+LT_LT = 'lt-LT'
+Represents “Lithuanian (Lithuania)” locale
+
+
+
+
+LV_LV = 'lv-LV'
+Represents “Latvian (Latvia)” locale
+
+
+
+
+MK_MK = 'mk-MK'
+Represents “Macedonian (Macedonia)” locale
+
+
+
+
+MT_MT = 'mt-MT'
+Represents “Maltese (Malta)” locale
+
+
+
+
+NB_NO = 'nb-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+NL_NL = 'nl-NL'
+Represents “Dutch (Netherlands)” locale
+
+
+
+
+NO_NO = 'no-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+PL_PL = 'pl-PL'
+Represents “Polish (Poland)” locale
+
+
+
+
+PT_BR = 'pt-BR'
+Represents “Portuguese (Brazil)” locale
+
+
+
+
+RO_RO = 'ro-RO'
+Represents “Romanian (Romania)” locale
+
+
+
+
+RU_RU = 'ru-RU'
+Represents “Russian (Russia)” locale
+
+
+
+
+SK_SK = 'sk-SK'
+Represents “Slovak (Slovakia)” locale
+
+
+
+
+SL_SI = 'sl-SI'
+Represents “Slovenian (Slovenia)” locale
+
+
+
+
+SR_SR = 'sr-SR'
+Represents “Serbian (Serbia)” locale
+
+
+
+
+SV_SE = 'sv-SE'
+Represents “Swedish (Sweden)” locale
+
+
+
+
+TR_TR = 'tr-TR'
+Represents “Turkish (Turkey)” locale
+
+
+
+
+UK_UA = 'uk-UA'
+Represents “Ukrainian (Ukraine)” locale
+
+
+
+
+ZH_CN = 'zh-CN'
+Represents “Chinese (China)” locale
+
+
+
+
+ZH_HK = 'zh-HK'
+Represents “Chinese (Hong Kong)” locale
+
+
+
+
+get_document_language ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.delete_pages.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.delete_pages.html
new file mode 100644
index 0000000..6192439
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.delete_pages.html
@@ -0,0 +1,1378 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.delete_pages package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.delete_pages package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.delete_pages package
+
+
+adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params. DeletePagesParams ( page_ranges : PageRanges )
+Bases: PDFServicesJobParams
+Parameters for deleting pages from a pdf using
+DeletePagesJob
+Creates an instance of DeletePagesParams with given PageRanges.
+
+Parameters:
+page_ranges (PageRanges ) – the PageRanges to be used for deleting pages; can not be None.
+
+
+
+
+get_page_ranges ( )
+
+Returns:
+the PageRanges to be used for deleting pages.
+
+Return type:
+PageRanges
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.documentmerge.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.documentmerge.html
new file mode 100644
index 0000000..58eaf7b
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.documentmerge.html
@@ -0,0 +1,1484 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.documentmerge package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.documentmerge package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.documentmerge package
+
+
+adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params. DocumentMergeParams ( json_data_for_merge : Any , * , output_format : OutputFormat = OutputFormat.PDF , fragments : Fragments = None )
+Bases: PDFServicesJobParams
+Parameters for document generation using
+DocumentMergeJob
+Constructs a new DocumentMergeParams instance
+
+Parameters:
+
+json_data_for_merge (Any ) – json to be used in the document merge job; can not be None.
+output_format (OutputFormat ) – output format for the document merge result; (Optional, use key-value)
+fragments (Fragments ) – fragments for document merge job; (Optional, use key-value)
+
+
+Returns:
+DocumentMergeParams
+
+
+
+
+get_fragments ( )
+
+Returns:
+fragments for document merge job
+
+
+
+
+
+
+get_json_data_for_merge ( )
+
+Returns:
+JSON data for the document merge process
+
+
+
+
+
+
+get_output_format ( )
+
+Returns:
+output format for the document merge result
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments. Fragments
+Bases: object
+Class for providing support for Fragments. To know more about fragments
+use-case in document generation and document templates, Click Here .
+Constructs a new Fragments instance
+
+
+add_fragment ( fragment )
+To add fragment dictionary into the fragments list.
+
+Parameters:
+fragment – fragment dictionary to be added into the fragments list.
+
+
+
+
+
+
+add_fragments ( fragments : List )
+To add List of fragment dictionaries into the fragments list.
+
+Parameters:
+fragments – fragment dictionary list to be added into the fragments list.
+
+
+
+
+
+
+get_fragments_list ( )
+
+Returns:
+list of fragments.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.eseal.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.eseal.html
new file mode 100644
index 0000000..3cd93f4
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.eseal.html
@@ -0,0 +1,2022 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.eseal package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal package
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options. RFC3161TSAOptions ( url : str , * , tsa_basic_auth_credentials : TSABasicAuthCredentials | None = None )
+Bases: TSAOptions
+Parameters specifying RFC3161 compliant time stamp authority options required for
+PDFElectronicSealParams .
+Constructs a new RFC3161TSAOptions instance from url.
+
+Parameters:
+
+url (str ) – url to be used for timestamping, can not be None.
+tsa_basic_auth_credentials (TSABasicAuthCredentials ) – Credentials to be used for timestamping. (Optional, use key-value)
+
+
+
+
+
+get_tsa_basic_auth_credentials ( )
+Returns the intended TSA authorization credentials to be used.
+
+Returns:
+A TSABasicAuthCredentials instance
+
+Return type:
+TSABasicAuthCredentials
+
+
+
+
+
+
+get_url ( )
+Returns the timestamp url to be used.
+
+Returns:
+The timestamp url
+
+Return type:
+str
+
+
+
+
+
+
+to_dict ( )
+Returns a dictionary representation of the RFC3161TSAOptions instance.
+
+Returns:
+A dictionary representing the RFC3161TSAOptions instance
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item. AppearanceItem ( value )
+Bases: Enum
+Supported elements to represent electronic seal required for
+AppearanceOptions .
+
+
+DATE = 'DATE'
+Represents the date of applying the electronic seal.
+
+
+
+
+DISTINGUISHED_NAME = 'DISTINGUISHED_NAME'
+Represents the distinguished name information of the certificate.
+
+
+
+
+LABELS = 'LABELS'
+Represents labels for seal information.
+
+
+
+
+NAME = 'NAME'
+Represents the name of the certificate owner.
+
+
+
+
+SEAL_IMAGE = 'SEAL_IMAGE'
+Represents the background image to be used for sealing.
+
+
+
+
+get_appearance_item ( ) → str
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options. AppearanceOptions
+Bases: object
+Parameters specifying set of elements (i.e. appearance items) to represent electronic seal required for
+PDFElectronicSealParams .
+
+
+add_item ( appearance_option : AppearanceItem )
+
+Parameters:
+appearance_option (AppearanceItem ) – AppearanceItem to be added to AppearanceOptions, can not be None.
+
+
+
+
+
+
+get_appearance_options ( )
+
+Returns:
+List of Appearance Items
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context. CSCAuthContext ( access_token : str , token_type : str = 'Bearer' )
+Bases: object
+Parameters for representing CSC authorization context.
+Constructs a new instance of CSCAuthContext
+
+Parameters:
+
+access_token (str ) – The service access token used to authorize access to the CSC provider hosted APIs.
+Cannot be None.
+token_type (str ) – The type of service access token used to authorize access to the CSC provider hosted APIs.
+Default value is “Bearer”.
+
+
+
+
+
+get_access_token ( )
+
+Returns:
+The service access token.
+
+Return type:
+str
+
+
+
+
+
+
+get_token_type ( )
+
+Returns:
+The type of service access token used.
+
+Return type:
+str
+
+
+
+
+
+
+to_dict ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials. CSCCredentials ( provider_name : str , credential_id : str , pin : str , csc_auth_context : CSCAuthContext )
+Bases: object
+Parameters for representing the CSC Provider based credentials as a subtype
+Creates an instance of CSCCredentials .
+
+Parameters:
+
+provider_name (str ) – The name of the Trust Service Provider to be used for applying electronic seal.
+Can not be None.
+credential_id (str ) – The digital ID stored with the TSP provider to be used for applying electronic seal.
+Can not be None.
+pin (str ) – The pin associated with the credential ID. Can not be None.
+csc_auth_context (CSCAuthContext ) – The service authorization data required to communicate with the TSP. Can not be None.
+
+
+
+
+
+get_credential_id ( )
+
+Returns:
+The digital ID stored with the TSP provider.
+
+Return type:
+str
+
+
+
+
+
+
+get_csc_auth_context ( )
+
+Returns:
+The service authorization data.
+
+Return type:
+CSCAuthContext
+
+
+
+
+
+
+get_pin ( )
+
+Returns:
+The pin associated with the credential ID.
+
+Return type:
+str
+
+
+
+
+
+
+get_provider_name ( )
+
+Returns:
+The name of the Trust Service Provider.
+
+Return type:
+str
+
+
+
+
+
+
+to_dict ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission. DocumentLevelPermission ( value )
+Bases: Enum
+A mapping of Document Level Permission used in
+PDFElectronicSealParams .
+
+
+FORM_FILLING = 'FORM_FILLING'
+Represents FORM_FILLING document level permission.
+Allowed changes in output document are filling in forms, instantiating page templates, and performing approval
+signatures.
+
+
+
+
+FORM_FILLING_AND_ANNOTATIONS = 'FORM_FILLING_AND_ANNOTATIONS'
+Represents FORM_FILLING_AND_ANNOTATIONS document level permission.
+In addition to changes allowed in FORM_FILLING, annotation creation, deletion, and modification are also allowed.
+
+
+
+
+NO_CHANGES_ALLOWED = 'NO_CHANGES_ALLOWED'
+Represents NO_CHANGES_ALLOWED document level permission.
+No changes to the output document are permitted.
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params. PDFElectronicSealParams ( seal_certificate_credentials : CSCCredentials , seal_field_options : FieldOptions , * , seal_signature_format : SignatureFormat = SignatureFormat.PKCS7 , document_level_permissions : DocumentLevelPermission = DocumentLevelPermission.FORM_FILLING , seal_appearance_options : AppearanceOptions | None = None , tsa_options : TSAOptions | None = None )
+Bases: object
+Parameters for electronically seal PDFs using
+PDFElectronicSealJob .
+Constructs a new PDFElectronicSealParams instance.
+
+Parameters:
+
+seal_certificate_credentials (CSCCredentials ) – CertificateCredentials to be used for applying electronic seal; can not be None.
+seal_field_options (FieldOptions ) – FieldOptions to be used for applying electronic seal; can not be None.
+seal_signature_format (SignatureFormat ) – SignatureFormat to be used for applying electronic seal. (Optional, use key-value)
+document_level_permissions (DocumentLevelPermission ) – Document level permission for changes allowed after sealing. (Optional, use key-value)
+seal_appearance_options (AppearanceOptions ) – AppearanceOptions for the seal. (Optional, use key-value)
+tsa_options (TSAOptions ) – Time stamp authority options. (Optional, use key-value)
+
+
+Returns:
+A new instance of PDFElectronicSealParams
+
+Return type:
+PDFElectronicSealParams
+
+
+
+
+get_seal_appearance_options ( )
+
+Returns:
+AppearanceOptions for the seal.
+
+Return type:
+AppearanceOptions
+
+
+
+
+
+
+get_seal_certificate_credentials ( )
+
+Returns:
+CertificateCredentials to be used for applying electronic seal
+
+Return type:
+CSCCredentials
+
+
+
+
+
+
+get_seal_field_options ( )
+
+Returns:
+FieldOptions to be used for applying electronic seal.
+
+Return type:
+FieldOptions
+
+
+
+
+
+
+get_signature_format ( )
+
+Returns:
+SignatureFormat to be used for applying electronic seal.
+
+Return type:
+SignatureFormat
+
+
+
+
+
+
+to_dict ( )
+For SDK’s internal use
+
+Returns:
+ElectronicSealParams as a dictionary.
+
+Return type:
+dict
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.field_location module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.field_location. FieldLocation ( left : int , top : int , right : int , bottom : int )
+Bases: object
+Parameters specifying options related to seal field location coordinates required for
+FieldOptions
+
+Parameters:
+
+left (int ) – the left coordinate of field location
+top (int ) – the top coordinate of field location
+right (int ) – the right coordinate of field location
+bottom (int ) – the bottom coordinate of field location
+
+
+
+
+
+get_bottom ( )
+
+Returns:
+the bottom coordinate of field location
+
+Return type:
+int
+
+
+
+
+
+
+get_left ( )
+
+Returns:
+the left coordinate of field location
+
+Return type:
+int
+
+
+
+
+
+
+get_right ( )
+
+Returns:
+the right coordinate of field location
+
+Return type:
+int
+
+
+
+
+
+
+get_top ( )
+
+Returns:
+the top coordinate of field location
+
+Return type:
+int
+
+
+
+
+
+
+to_dict ( )
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.field_options module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.field_options. FieldOptions ( field_name : str , * , field_location : FieldLocation | None = None , page_number : int | None = None , visible : bool | None = True )
+Bases: object
+Parameters specifying options related to the seal field required for
+PDFElectronicSealParams .
+Constructs a new instance of FieldOptions .
+
+Parameters:
+
+field_name (str ) – The name of the field to be used for applying the electronic seal. If signature field with
+this field name already exist, that field will be used. If it does not exist, a signature field with this
+field name will be created. Can not be None.
+field_location (FieldLocation ) – A FieldLocation instance specifying coordinates for the electronic seal. The location
+is only required for visible signatures if the signature field does not already exist in the PDF document.
+If location is provided along with the existing signature field then it is ignored. (Optional, use key-value)
+page_number (int ) – The page number to which the signature field should be attached. Page numbers are 1-based.
+The page number is only required for visible signatures if the signature field does not already exist in
+the PDF document. If page number is provided along with the existing signature field then the page number
+should be same on which signature field is present in the document, else an error is thrown.
+(Optional, use key-value)
+visible (bool ) – The intended visibility flag for the electronic seal. Default value is true.
+(Optional, use key-value)
+
+
+
+
+
+get_field_location ( )
+
+Returns:
+Field Location
+
+Return type:
+FieldLocation
+
+
+
+
+
+
+get_field_name ( )
+
+Returns:
+Field Name
+
+Return type:
+str
+
+
+
+
+
+
+get_page_number ( )
+
+Returns:
+Page Number
+
+Return type:
+int
+
+
+
+
+
+
+get_visible ( )
+
+Returns:
+Visibility flag for the electronic seal
+
+Return type:
+bool
+
+
+
+
+
+
+to_dict ( )
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials. TSABasicAuthCredentials ( username : str , password : str )
+Bases: object
+Parameters specifying options related to the time stamp authority credentials required for
+RFC3161TSAOptions
+Constructs a TSABasicAuthCredentials instance.
+
+Parameters:
+
+
+
+
+
+get_password ( )
+Returns the intended password to be used for timestamping.
+
+Returns:
+The password
+
+Return type:
+str
+
+
+
+
+
+
+get_username ( )
+Returns the intended username to be used for timestamping.
+
+Returns:
+The username
+
+Return type:
+str
+
+
+
+
+
+
+to_dict ( )
+Returns a dictionary representation of the TSABasicAuthCredentials instance.
+
+Returns:
+A dictionary representing the TSABasicAuthCredentials instance
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options. TSAOptions
+Bases: ABC
+This abstract class represents the basic contract for the timestamp authority options to be used with
+PDFElectronicSealParams .
+
+
+abstract to_dict ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.export_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.export_pdf.html
new file mode 100644
index 0000000..52089a1
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.export_pdf.html
@@ -0,0 +1,1724 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.export_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.export_pdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.export_pdf package
+
+
+adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale. ExportOCRLocale ( value )
+Bases: Enum
+Enum values representing different locales
+Constructs a locale from a language code
+
+Parameters:
+locale – language code
+
+
+
+
+BG_BG = 'bg-BG'
+Represents “Bulgarian (Bulgaria)” locale
+
+
+
+
+CA_CA = 'ca-CA'
+Represents “Catalan (Canada)” locale
+
+
+
+
+CS_CZ = 'cs-CZ'
+Represents “Czech (Czech Republic)” locale
+
+
+
+
+DA_DK = 'da-DK'
+Represents “Danish (Denmark)” locale
+
+
+
+
+DE_CH = 'de-CH'
+Represents “German (Switzerland)” locale
+
+
+
+
+DE_DE = 'de-DE'
+Represents “German (Germany)” locale
+
+
+
+
+EL_GR = 'el-GR'
+Represents “Greek (Greece)” locale
+
+
+
+
+EN_GB = 'en-GB'
+Represents “English (United Kingdom)” locale
+
+
+
+
+EN_US = 'en-US'
+Represents “English (United States)” locale.
+
+
+
+
+ES_ES = 'es-ES'
+Represents “Spanish (Spain)” locale
+
+
+
+
+ET_EE = 'et-EE'
+Represents “Estonian (Estonia)” locale
+
+
+
+
+EU_ES = 'eu-ES'
+Represents “Basque (Spain)” locale
+
+
+
+
+FI_FI = 'fi-FI'
+Represents “Finnish (Finland)” locale
+
+
+
+
+FR_FR = 'fr-FR'
+Represents “French (France)” locale
+
+
+
+
+GL_ES = 'gl-ES'
+Represents “Galician (Spain)” locale
+
+
+
+
+HR_HR = 'hr-HR'
+Represents “Croatian (Croatia)” locale
+
+
+
+
+HU_HU = 'hu-HU'
+Represents “Hungarian (Hungary)” locale
+
+
+
+
+IT_IT = 'it-IT'
+Represents “Italian (Italy)” locale
+
+
+
+
+IW_IL = 'iw-IL'
+Represents “Hebrew (Israel)” locale
+
+
+
+
+JA_JP = 'ja-JP'
+Represents “Japanese (Japan)” locale
+
+
+
+
+KO_KR = 'ko-KR'
+Represents “Korean (Korea)” locale
+
+
+
+
+LT_LT = 'lt-LT'
+Represents “Lithuanian (Lithuania)” locale
+
+
+
+
+LV_LV = 'lv-LV'
+Represents “Latvian (Latvia)” locale
+
+
+
+
+MK_MK = 'mk-MK'
+Represents “Macedonian (Macedonia)” locale
+
+
+
+
+MT_MT = 'mt-MT'
+Represents “Maltese (Malta)” locale
+
+
+
+
+NB_NO = 'nb-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+NL_NL = 'nl-NL'
+Represents “Dutch (Netherlands)” locale
+
+
+
+
+NN_NO = 'nn-NO'
+Represents “Norwegian Nynorsk (Norway)” locale
+
+
+
+
+PL_PL = 'pl-PL'
+Represents “Polish (Poland)” locale
+
+
+
+
+PT_BR = 'pt-BR'
+Represents “Portuguese (Brazil)” locale
+
+
+
+
+PT_PT = 'pt-PT'
+Represents “European Portuguese” locale
+
+
+
+
+RO_RO = 'ro-RO'
+Represents “Romanian (Romania)” locale
+
+
+
+
+RU_RU = 'ru-RU'
+Represents “Russian (Russia)” locale
+
+
+
+
+SK_SK = 'sk-SK'
+Represents “Slovak (Slovakia)” locale
+
+
+
+
+SL_SI = 'sl-SI'
+Represents “Slovenian (Slovenia)” locale
+
+
+
+
+SR_SR = 'sr-SR'
+Represents “Serbian (Serbia)” locale
+
+
+
+
+SV_SE = 'sv-SE'
+Represents “Swedish (Sweden)” locale
+
+
+
+
+TR_TR = 'tr-TR'
+Represents “Turkish (Turkey)” locale
+
+
+
+
+UK_UA = 'uk-UA'
+Represents “Ukrainian (Ukraine)” locale
+
+
+
+
+ZH_CN = 'zh-CN'
+Represents “Chinese (China)” locale
+
+
+
+
+ZH_HANT = 'zh-Hant'
+Represents “Chinese (traditional)” locale
+
+
+
+
+get_export_ocr_locale ( )
+
+Returns:
+Language code of the ExportOCRLocale
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params. ExportPDFParams ( target_format : ExportPDFTargetFormat , * , ocr_lang : ExportOCRLocale = ExportOCRLocale.EN_US )
+Bases: PDFServicesJobParams
+Parameters for exporting a source PDF file to a supported format using
+ExportPDFJob
+Constructs a new ExportPDFParams instance.
+
+Parameters:
+
+target_format (ExportPDFTargetFormat ) – Target format to which the source PDF file will be exported; can not be None
+ocr_lang (ExportOCRLocale ) – Sets OCR Locale level to be used for Export PDF. (Optional, use key-value)
+
+
+
+
+
+get_ocr_lang ( )
+
+Returns:
+Returns the OCR Locale to be used for Export PDF.
+
+Return type:
+ExportOCRLocale
+
+
+
+
+
+
+get_target_format ( )
+
+Returns:
+Returns the target format to which the source PDF file will be exported.
+
+Return type:
+ExportPDFTargetFormat
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.extract_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.extract_pdf.html
new file mode 100644
index 0000000..e690efe
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.extract_pdf.html
@@ -0,0 +1,1506 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.extract_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf package
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.html
new file mode 100644
index 0000000..01bc2a1
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.html
@@ -0,0 +1,2098 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params package
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.page_ranges module
+
+
+Bases: object
+Page ranges of a file, inclusive of start and end page index, where page index starts from 1.
+Constructs a new PageRanges instance with no pages added.
+
+
+Adds a page range representing all pages.
+
+
+
+
+Adds a page range from start page index to the last page. Page index starts from 1.
+:param start: start page index
+:type start: int
+
+
+
+
+Adds a page range. Page indexes start from 1.
+:param start: start page index, inclusive
+:type start: int
+:param end: end page index, inclusive
+:type start: int
+
+
+
+
+Adds a single page. Page index starts from 1.
+:param page: single page index
+:type page: int
+
+
+
+
+Used internally by this SDK, not intended to be called by clients.
+
+
+
+
+Used internally by this SDK, not intended to be called by clients.
+
+
+
+
+
+
+
+
+Used internally by this SDK, not intended to be called by clients.
+
+
+
+
+Used internally by this SDK, not intended to be called by clients.
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params. PDFServicesJobParams
+Bases: ABC
+Represents the basic contract for the params to be used in
+PDFServicesJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html
new file mode 100644
index 0000000..2bbe1a3
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html
@@ -0,0 +1,1481 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.html_to_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.html_to_pdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.html_to_pdf package
+
+
+adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params. HTMLtoPDFParams ( * , json: str = '{}' , include_header_footer: bool = False , page_layout: ~adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout.PageLayout = <adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout.PageLayout object> )
+Bases: PDFServicesJobParams
+Parameters for converting HTML to PDF using
+HTMLtoPDFJob
+Constructs a new HTMLtoPDFParams instance.
+
+Parameters:
+
+json (str ) –
Sets the data to be used by the javascript in the source html file to manipulate the HTML DOM
+before it gets converted to PDF.
+This mechanism is intended to be used to supply data that might otherwise be retrieved using ajax requests.
+To make use of this mechanism, the source html file must include a script element such as:
+<script src='./json.js' type='text/javascript'></script>
+where json.js refers to the JSON data,</pre>
+And also Requires javascript in the source html file to make use of this JSON data to manipulate the HTML
+DOM. (Optional, use key-value)
+
+include_header_footer (bool ) –
includeHeaderFooter parameter. If true, default header and footer will be included
+in resulting PDF.
+
+
+(Optional, use key-value)
+
+page_layout (PageLayout ) – Intended page layout of the resulting PDF file. (Optional, use key-value)
+
+
+
+
+
+
+Returns:
+Returns true if default header and footer will be included in the resulting PDF file.
+- The default header consists of the date and the document title.
+- The default footer consists of the file name and page number.
+
+Return type:
+bool
+
+
+
+
+
+
+get_json ( )
+
+Returns:
+
Returns JSON data that will be used to manipulate HTML DOM before it is converted into PDF file.
+This mechanism is intended to be used to supply data that might otherwise be retrieved using ajax requests.
+To make use of this mechanism, the source html file must include a script element such as:
+<script src='./json.js' type='text/javascript'></script>
+where json.js refers to the JSON data,</pre>
+And also Requires javascript in the source html file to make use of this JSON data to manipulate the HTML
+DOM.
+
+
+Return type:
+str
+
+
+
+
+
+
+get_page_layout ( )
+
+Returns:
+Intended page layout of the resulting PDF file.
+
+Return type:
+bool
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout. PageLayout ( page_height : float = 11.0 , page_width : float = 8.5 )
+Bases: object
+Represents a page layout with dimensions in inches.
+Constructor to initialize a default page layout.
+The default layout sets the height as 11 inches and width as 8.5 inches.
+
+Parameters:
+
+page_height (float ) – Height of the page in inches, can not be None
+page_width (float ) – Width of the page in inches
+
+
+
+
+
+DEFAULT_PAGE_HEIGHT = 11.0
+Default value of the page height (in inches)
+
+
+
+
+DEFAULT_PAGE_WIDTH = 8.5
+Default value of the page width (in inches)
+
+
+
+
+json_hint = {'page_height': 'pageHeight', 'page_width': 'pageWidth'}
+
+
+
+
+to_json ( )
+
+Returns:
+JSON representation of this class, used internally by sdk.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.html
new file mode 100644
index 0000000..791208f
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.html
@@ -0,0 +1,1392 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data package
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.insert_pages.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.insert_pages.html
new file mode 100644
index 0000000..eb4cbbb
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.insert_pages.html
@@ -0,0 +1,1409 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.insert_pages package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.insert_pages package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.insert_pages package
+
+
+adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params. InsertPagesParams ( base_asset : Asset )
+Bases: PDFServicesJobParams
+Parameters for inserting pages in a PDF using
+InsertPagesJob
+Constructs a new InsertPagesParams instance.
+
+Parameters:
+base_asset (Asset ) – Base asset into which the pages are to be inserted.
+
+
+
+
+add_pages_to_insert ( input_asset: ~adobe.pdfservices.operation.io.asset.Asset , base_page: int , * , page_ranges: ~adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges = <adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges object> )
+Adds the specified pages of the input PDF file to be inserted at the specified page of the base PDF file
+This method can be invoked multiple times with the same or different input PDF files.
+All the pages of the input PDF file will be inserted at the specified page of the base PDF file if page_ranges
+is not specified.
+
+Parameters:
+
+input_asset (Asset ) – A PDF file for insertion; can not be None.
+base_page (int ) – Page of the base PDF file; can not be None.
+page_ranges (PageRanges ) – Page ranges of the input PDF file. (Optional, use key-value)
+
+
+
+
+
+
+
+get_assets_to_insert ( )
+
+Returns:
+Returns the mapping of base Asset’s page number and Asset to be inserted along with PageRanges .
+
+Return type:
+dict
+
+
+
+
+
+
+get_base_asset ( )
+
+Returns:
+base PDF Asset to which pages will be inserted.
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.html
new file mode 100644
index 0000000..e22a6f4
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.html
@@ -0,0 +1,1686 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.ocr_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.ocr_pdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.ocr_pdf package
+
+
+adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params. OCRParams ( * , ocr_locale : OCRSupportedLocale = OCRSupportedLocale.EN_US , ocr_type : OCRSupportedType = OCRSupportedType.SEARCHABLE_IMAGE )
+Bases: PDFServicesJobParams
+Parameters for converting PDF to a searchable PDF using
+OCRPDFJob<adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job.OCRPDFJob
+Constructs a new OCRParams instance.
+
+Parameters:
+
+
+
+
+
+get_ocr_locale ( )
+
+Returns:
+OCRSupportedLocale to be used for OCR.
+
+Return type:
+OCRSupportedLocale
+
+
+
+
+
+
+get_ocr_type ( )
+
+Returns:
+OCRSupportedType to be used for OCR.
+
+Return type:
+OCRSupportedType
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale. OCRSupportedLocale ( value )
+Bases: Enum
+Supported locales for OCRJob
+Construct a locale from a language code.
+
+Parameters:
+locale – language code
+
+
+
+
+BG_BG = 'bg-BG'
+Represents “Bulgarian (Bulgaria)” locale
+
+
+
+
+CA_CA = 'ca-CA'
+Represents “Catalan (Canada)” locale
+
+
+
+
+CS_CZ = 'cs-CZ'
+Represents “Czech (Czech Republic)” locale
+
+
+
+
+DA_DK = 'da-DK'
+Represents “Danish (Denmark)” locale
+
+
+
+
+DE_CH = 'de-CH'
+Represents “German (Switzerland)” locale
+
+
+
+
+DE_DE = 'de-DE'
+Represents “German (Germany)” locale
+
+
+
+
+EL_GR = 'el-GR'
+Represents “Greek (Greece)” locale
+
+
+
+
+EN_GB = 'en-GB'
+Represents “English (United Kingdom)” locale
+
+
+
+
+EN_US = 'en-US'
+Represents “English (United States)” locale
+
+
+
+
+ES_ES = 'es-ES'
+Represents “Spanish (Spain)” locale
+
+
+
+
+ET_EE = 'et-EE'
+Represents “Estonian (Estonia)” locale
+
+
+
+
+FI_FI = 'fi-FI'
+Represents “Finnish (Finland)” locale
+
+
+
+
+FR_FR = 'fr-FR'
+Represents “French (France)” locale
+
+
+
+
+HR_HR = 'hr-HR'
+Represents “Croatian (Croatia)” locale
+
+
+
+
+HU_HU = 'hu-HU'
+Represents “Hungarian (Hungary)” locale
+
+
+
+
+IT_IT = 'it-IT'
+Represents “Italian (Italy)” locale
+
+
+
+
+IW_IL = 'iw-IL'
+Represents “Hebrew (Israel)” locale
+
+
+
+
+JA_JP = 'ja-JP'
+Represents “Japanese (Japan)” locale
+
+
+
+
+KO_KR = 'ko-KR'
+Represents “Korean (Korea)” locale
+
+
+
+
+LT_LT = 'lt-LT'
+Represents “Lithuanian (Lithuania)” locale
+
+
+
+
+LV_LV = 'lv-LV'
+Represents “Latvian (Latvia)” locale
+
+
+
+
+MK_MK = 'mk-MK'
+Represents “Macedonian (Macedonia)” locale
+
+
+
+
+MT_MT = 'mt-MT'
+Represents “Maltese (Malta)” locale
+
+
+
+
+NB_NO = 'nb-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+NL_NL = 'nl-NL'
+Represents “Dutch (Netherlands)” locale
+
+
+
+
+NO_NO = 'no-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+PL_PL = 'pl-PL'
+Represents “Polish (Poland)” locale
+
+
+
+
+PT_BR = 'pt-BR'
+Represents “Portuguese (Brazil)” locale
+
+
+
+
+RO_RO = 'ro-RO'
+Represents “Romanian (Romania)” locale
+
+
+
+
+RU_RU = 'ru-RU'
+Represents “Russian (Russia)” locale
+
+
+
+
+SK_SK = 'sk-SK'
+Represents “Slovak (Slovakia)” locale
+
+
+
+
+SL_SI = 'sl-SI'
+Represents “Slovenian (Slovenia)” locale
+
+
+
+
+SR_SR = 'sr-SR'
+Represents “Serbian (Serbia)” locale
+
+
+
+
+SV_SE = 'sv-SE'
+Represents “Swedish (Sweden)” locale
+
+
+
+
+TR_TR = 'tr-TR'
+Represents “Turkish (Turkey)” locale
+
+
+
+
+UK_UA = 'uk-UA'
+Represents “Ukrainian (Ukraine)” locale
+
+
+
+
+ZH_CN = 'zh-CN'
+Represents “Chinese (China)” locale
+
+
+
+
+ZH_HK = 'zh-HK'
+Represents “Chinese (Hong Kong)” locale
+
+
+
+
+get_locale ( )
+Returns the language code of this OCRSupportedLocale.
+
+Returns:
+language code of the locale
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type. OCRSupportedType ( value )
+Bases: Enum
+Supported OCR types for OCRJob
+Constructs OCR Type from its string representation.
+
+Parameters:
+ocr_type – String representation
+
+
+
+
+SEARCHABLE_IMAGE = 'searchable_image'
+
+
+
+
+SEARCHABLE_IMAGE_EXACT = 'searchable_image_exact'
+
+
+
+
+get_type ( )
+Returns the string representation of this OCRSupportedType.
+
+Returns:
+String representation of this OCRSupportedType
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.pdf_properties.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.pdf_properties.html
new file mode 100644
index 0000000..387da82
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.pdf_properties.html
@@ -0,0 +1,1379 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.pdf_properties package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_properties package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.pdf_properties package
+
+
+adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params. PDFPropertiesParams ( * , include_page_level_properties : bool = False )
+Bases: PDFServicesJobParams
+Parameters for getting properties of a PDF using
+PDFPropertiesJob
+Constructs a new PDFPropertiesParams .
+
+Parameters:
+include_page_level_properties (bool ) – If true, the page level properties of the input PDF will be included in
+the resulting JSON file or JSON Object. (Optional, use key-value)
+
+
+
+
+get_include_page_level_properties ( )
+
+Returns:
+Page level properties
+
+Return type:
+bool
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.html
new file mode 100644
index 0000000..cd86c18
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.html
@@ -0,0 +1,1458 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.pdf_to_image package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_to_image package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.pdf_to_image package
+
+
+adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type. ExportPDFToImagesOutputType ( value )
+Bases: Enum
+List of supported outputTypes for ExportPDFToImagesJob .
+
+
+LIST_OF_PAGE_IMAGES = 'listOfPageImages'
+Represents List Output type.
+
+
+
+
+ZIP_OF_PAGE_IMAGES = 'zipOfPageImages'
+Represents Zip Output type.
+
+
+
+
+get_output_type ( )
+
+Returns:
+output type.
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params. ExportPDFtoImagesParams ( export_pdf_to_images_target_format : ExportPDFToImagesTargetFormat , export_pdf_to_images_output_type : ExportPDFToImagesOutputType )
+Bases: PDFServicesJobParams
+Parameters for exporting a source PDF file to images using
+ExportPDFToImagesJob .
+Constructs a new ExportPDFtoImagesParams instance.
+
+Parameters:
+
+export_pdf_to_images_target_format (ExportPDFToImagesTargetFormat ) – ExportPDFToImagesTargetFormat to which the source PDF file will be exported, can not be None.
+export_pdf_to_images_output_type (ExportPDFToImagesOutputType ) – ExportPDFToImagesOutputType to be used for Export PDF to Images, can not be None.
+
+
+
+
+
+get_export_pdf_to_images_output_type ( )
+
+Returns:
+ExportPDFToImagesOutputType to be used for Export PDF to Images.
+
+Return type:
+ExportPDFToImagesOutputType
+
+
+
+
+
+
+get_export_pdf_to_images_target_format ( )
+
+Returns:
+ExportPDFToImagesTargetFormat to which the source PDF file will be exported.
+
+Return type:
+ExportPDFToImagesTargetFormat
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.protect_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.protect_pdf.html
new file mode 100644
index 0000000..93c9e75
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.protect_pdf.html
@@ -0,0 +1,1596 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.protect_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.protect_pdf package
+
+
+adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption. ContentEncryption ( value )
+Bases: Enum
+Supported types of content to encrypt for
+ProtectPDFJob
+
+
+ALL_CONTENT = 'ALL_CONTENT'
+Encrypts all the content of the PDF file
+
+
+
+
+ALL_CONTENT_EXCEPT_METADATA = 'ALL_CONTENT_EXCEPT_METADATA'
+Encrypts all the content except the metadata of the PDF file
+
+
+
+
+ONLY_EMBEDDED_FILES = 'ONLY_EMBEDDED_FILES'
+Encrypts only embedded files
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm. EncryptionAlgorithm ( value )
+Bases: Enum
+Supported encryption algorithms for
+ProtectPDFJob
+
+
+AES_128 = 'AES_128'
+Represents AES-128 encryption algorithm
+
+
+
+
+AES_256 = 'AES_256'
+Represents AES-256 encryption algorithm
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params. PasswordProtectParams ( encryption_algorithm : EncryptionAlgorithm , * , content_encryption : ContentEncryption = ContentEncryption.ALL_CONTENT , permissions : Permissions | None = None , user_password : str | None = None , owner_password : str | None = None )
+Bases: ProtectPDFParams
+Parameters for securing PDF file with passwords and document permissions using
+ProtectPDFJob
+Constructs a new PasswordProtectParams instance.
+
+Parameters:
+
+encryption_algorithm (EncryptionAlgorithm ) – Sets the intended encryption algorithm required for encrypting the PDF file. For
+AES-128 encryption, the password supports LATIN-I characters only. For AES-256 encryption, passwords supports
+Unicode character set.
+content_encryption (ContentEncryption ) – Type of content to encrypt in the PDF file. (Optional, use key-value)
+permissions (Permissions ) – Sets the intended permissions for the encrypted PDF file. This includes permissions to allow
+printing, editing and content copying in the PDF document. Permissions can only be used in case the owner
+password is set. (Optional, use key-value)
+user_password (str ) – User password required for opening the encrypted PDF file. Allowed maximum length
+for the user password is 128 bytes. (Optional, use key-value)
+owner_password (str ) – Owner password required to control access permissions in the encrypted PDF file. This
+password can also be used to open/view the encrypted PDF file. Allowed maximum length for the owner
+password is 128 bytes. (Optional, use key-value)
+
+
+
+
+
+get_content_encryption ( )
+
+Returns:
+ContentEncryption for the resulting encrypted PDF file as a string.
+
+Return type:
+ContentEncryption
+
+
+
+
+
+
+get_encryption_algorithm ( )
+
+Returns:
+EncryptionAlgorithm of the resulting encrypted PDF file.
+
+Return type:
+EncryptionAlgorithm
+
+
+
+
+
+
+get_owner_password ( )
+
+Returns:
+the intended owner password of the resulting encrypted PDF file.
+
+Return type:
+str
+
+
+
+
+
+
+get_permissions ( )
+
+Returns:
+Permissions for the resulting encrypted PDF file.
+
+Return type:
+Permissions
+
+
+
+
+
+
+get_user_password ( )
+
+Returns:
+the intended user password of the resulting encrypted PDF file.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission. Permission ( value )
+Bases: Enum
+Document Permissions for
+ProtectPDFJob
+
+
+COPY_CONTENT = 'COPY_CONTENT'
+Enables copying of content from the PDF document
+
+
+
+
+EDIT_ANNOTATIONS = 'EDIT_ANNOTATIONS'
+Enables additions of comments, digital signatures and filling in of forms in a PDF document
+
+
+
+
+EDIT_CONTENT = 'EDIT_CONTENT'
+Enables all the editing permissions in the PDF document except commenting and page extraction
+
+
+
+
+EDIT_DOCUMENT_ASSEMBLY = 'EDIT_DOCUMENT_ASSEMBLY'
+Enables insertion, deletion and rotation of pages in a PDF document
+
+
+
+
+EDIT_FILL_AND_SIGN_FORM_FIELDS = 'EDIT_FILL_AND_SIGN_FORM_FIELDS'
+Enables filling in of forms, digital signature and creation of template pages in a PDF document
+
+
+
+
+PRINT_HIGH_QUALITY = 'PRINT_HIGH_QUALITY'
+Enables high quality printing of the PDF document
+
+
+
+
+PRINT_LOW_QUALITY = 'PRINT_LOW_QUALITY'
+Enables low quality printing of the PDF document
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions. Permissions
+Bases: object
+Document Permissions for
+ProtectPDFJob
+Constructs a new Permissions instance.
+
+
+add_permission ( permission : Permission )
+Adds a document Permission
+in the permissions set.
+
+Parameters:
+permission (Permission ) – A document permission; can not be None.
+
+
+
+
+
+
+get_values ( )
+
+Returns:
+the intended set of document permissions values.
+
+Return type:
+list
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params. ProtectPDFParams
+Bases: PDFServicesJobParams , ABC
+Marker base class for ProtectPDFJob
+params.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.remove_protection.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.remove_protection.html
new file mode 100644
index 0000000..492be8d
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.remove_protection.html
@@ -0,0 +1,1386 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.remove_protection package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.remove_protection package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.remove_protection package
+
+
+adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params. RemoveProtectionParams ( password : str )
+Bases: PDFServicesJobParams
+Parameters for removing protection from pdf using
+RemoveProtectionJob
+
+Constructs a new RemoveProtectionParams instance.
+
+
+Parameters:
+password (str ) – the password to be used for removing protection from pdf.
+
+Returns:
+A new instance of RemoveProtectionParams
+
+Return type:
+RemoveProtectionParams
+
+
+
+
+get_password ( )
+
+Returns:
+Returns the password to be used for removing protection from pdf.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.reorder_pages.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.reorder_pages.html
new file mode 100644
index 0000000..a601dfe
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.reorder_pages.html
@@ -0,0 +1,1400 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.reorder_pages package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.reorder_pages package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.reorder_pages package
+
+
+adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params. ReorderPagesParams ( asset : Asset , page_ranges : PageRanges )
+Bases: PDFServicesJobParams
+Parameters for reordering a pdf using
+ReorderPagesJob
+Constructs a new ReorderPagesParams instance.
+
+Parameters:
+
+asset (Asset ) – Asset to be reordered, can not be None.
+page_ranges (PageRanges ) – The page ranges to be used for reordering pages, can not be None.
+
+
+Returns:
+A new instance of ReorderPagesParams
+
+Return type:
+ReorderPagesParams
+
+
+
+
+get_asset ( )
+
+Returns:
+Asset to be reordered.
+
+Return type:
+Asset
+
+
+
+
+
+
+get_page_ranges ( )
+
+Returns:
+PageRanges to be used for reordering pages.
+
+Return type:
+PageRanges
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.replace_pages.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.replace_pages.html
new file mode 100644
index 0000000..1f03d82
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.replace_pages.html
@@ -0,0 +1,1409 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.replace_pages package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.replace_pages package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.replace_pages package
+
+
+adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params. ReplacePagesParams ( base_asset : Asset )
+Bases: PDFServicesJobParams
+Parameters for replacing pages of a pdf using
+ReplacePagesJob
+Constructs a new ReplacePagesParams instance.
+
+Parameters:
+base_asset (Asset ) – The base asset to be used for replacing pages, can not be None.
+
+Returns:
+A new instance of ReplacePagesParams
+
+Return type:
+ReplacePagesParams
+
+
+
+
+add_pages_to_replace ( input_asset: ~adobe.pdfservices.operation.io.asset.Asset , base_page: int , * , page_ranges: ~adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges = <adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges object> )
+
+Parameters:
+
+input_asset (Asset ) – a PDF file for insertion
+page_ranges (PageRanges ) – page ranges of the input PDF file
+base_page (int ) – page of the base PDF file
+
+
+
+
+
+
+
+get_assets_to_replace ( )
+
+Returns:
+Returns the mapping of base Asset’s page number and Asset to be replaced along
+with PageRanges.
+
+
+
+
+
+
+get_base_asset ( )
+
+Returns:
+Returns the base PDF Asset to which pages will be replaced.
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.rotate_pages.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.rotate_pages.html
new file mode 100644
index 0000000..deada12
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.rotate_pages.html
@@ -0,0 +1,1425 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.rotate_pages package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.rotate_pages package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.rotate_pages package
+
+
+adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle. Angle ( value )
+Bases: Enum
+Represents angles in degrees.
+
+
+ANGLE_180 = 180
+Represents 180 degrees clockwise rotation
+
+
+
+
+ANGLE_270 = 270
+Represents 270 degrees clockwise rotation
+
+
+
+
+ANGLE_90 = 90
+Represents 90 degrees clockwise rotation
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params. RotatePagesParams
+Bases: PDFServicesJobParams
+Parameters to rotate pages of a pdf using
+RotatePagesJob<adobe.pdfservices.operation.pdfjobs.jobs.rotate_pages_job.>RotatePagesJob
+
+
+add_angle_to_rotate ( angle : Angle )
+Sets the Angle to be used for rotating pages.
+
+Parameters:
+angle (Angle ) – Angle; can not be None.
+
+
+
+
+
+
+add_angle_to_rotate_for_page_ranges ( angle : Angle , page_ranges : PageRanges )
+Sets the Angle to be used for rotating pages specified in PageRanges.
+
+Parameters:
+
+
+
+
+
+
+
+get_page_actions ( )
+
+Returns:
+PageActions to be used for rotating pages.
+
+Return type:
+PageActions
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.split_pdf.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.split_pdf.html
new file mode 100644
index 0000000..d7d5713
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.params.split_pdf.html
@@ -0,0 +1,1425 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.params.split_pdf package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.split_pdf package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.params.split_pdf package
+
+
+adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params module
+
+
+class adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params. SplitPDFParams ( * , page_ranges : PageRanges | None = None , page_count : int | None = None , file_count : int | None = None )
+Bases: PDFServicesJobParams
+Parameters for splitting a pdf using
+SplitPDFJob
+Constructs a new SplitPDFParams instance.
+
+Parameters:
+
+page_ranges (PageRanges ) – see PageRanges .
+(Optional, use key-value)
+page_count (int ) – The page count to be used for splitting pages. (Optional, use key-value)
+file_count (int ) – The file count to be used for splitting pages. (Optional, use key-value)
+
+
+Returns:
+A new instance of SplitPDFParams
+
+Return type:
+SplitPDFParams
+
+
+
+
+get_file_count ( )
+
+Returns:
+Returns the file count to be used for splitting pages.
+
+Return type:
+int
+
+
+
+
+
+
+get_page_count ( )
+
+Returns:
+Returns the page count to be used for splitting pages.
+
+Return type:
+int
+
+
+
+
+
+
+get_page_ranges ( )
+
+Returns:
+PageRanges to be used for splitting pages.
+
+Return type:
+PageRanges
+
+
+
+
+
+
+json_hint = {'file_count': 'fileCount', 'page_count': 'pageCount', 'page_ranges': 'pageRanges'}
+
+
+
+
+to_json ( )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.result.html b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.result.html
new file mode 100644
index 0000000..0257944
--- /dev/null
+++ b/docs/apidocs/4.2.0/adobe.pdfservices.operation.pdfjobs.result.html
@@ -0,0 +1,2074 @@
+
+
+
+
+
+
+
+
+
adobe.pdfservices.operation.pdfjobs.result package — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result package
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result package
+
+
+adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result. AutotagPDFResult ( tagged_pdf : Asset , report : Asset , resource : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+AutotagPDFJob .
+Constructs a new AutotagPDFResult instance with the tagged PDF asset and report asset.
+
+Parameters:
+
+tagged_pdf (Asset ) – tagged PDF asset
+report (Asset ) – report asset
+resource (Asset ) – resource asset
+
+
+
+
+
+get_report ( )
+
+Returns:
+Returns report asset, if an internal asset was used as input PDF.
+
+Return type:
+Asset
+
+
+
+
+
+
+get_resource ( )
+
+Returns:
+The zipped asset associated with the
+AutotagPDFJob result,
+if an external asset was used as input PDF.
+
+Return type:
+Asset
+
+
+
+
+
+
+get_tagged_pdf ( )
+
+Returns:
+Returns tagged PDF asset, if an internal asset was used as input PDF.
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result. CombinePDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+CombinePDFJob .
+Constructs a new CombinePDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result. CompressPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+CompressPDFJob
+Constructs a new CompressPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.create_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.create_pdf_result. CreatePDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+CreatePDFJob .
+Constructs a new CreatePDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.delete_pages_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.delete_pages_result. DeletePagesResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+DeletePagesJob
+Constructs a new DeletePagesResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.document_merge_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.document_merge_result. DocumentMergePDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+DocumentMergeJob
+Constructs a new DocumentMergePDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result. ESealPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+PDFElectronicSealJob .
+Constructs a new ESealPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.export_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.export_pdf_result. ExportPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+ExportPDFJob
+Constructs a new ExportPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result. ExportPDFtoImagesResult ( assets : [ ] )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+ExportPDFToImagesJob .
+Constructs a new ExportPDFToImagesResult instance
+
+Parameters:
+assets (list ) – List of result assets
+
+
+
+
+get_assets ( )
+
+Returns:
+the list of result assets
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.html_to_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.html_to_pdf_result. HTMLtoPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+HTMLtoPDFJob
+Constructs a new HTMLtoPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.insert_pages_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.insert_pages_result. InsertPagesResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+InsertPagesJob
+Constructs a new InsertPagesResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.linearize_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.linearize_pdf_result. LinearizePDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+LinearizePDFJob
+Constructs a new LinearizePDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.ocr_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.ocr_pdf_result. OCRPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+OCRPDFJob<adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job.OCRPDFJob .
+Constructs a new OCRPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result. PDFPropertiesResult ( pdf_properties_dict : str )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+PDFPropertiesJob .
+Constructs a new PDFPropertiesResult instance with PDF Properties JSON string.
+
+Parameters:
+pdf_properties_dict (str ) – PDF Properties JSON String
+
+
+
+
+get_pdf_properties_dict ( )
+
+Returns:
+Returns PDF Properties JSON string.
+
+Return type:
+string
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.pdf_services_job_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.pdf_services_job_result. PDFServicesJobResult
+Bases: ABC
+This is an abstract class that represents the PDFServicesJob
+PDFServicesJob result.
+It will encapsulate the result of
+PDFServicesJob
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result. ProtectPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+ProtectPDFJob .
+Constructs a new ProtectPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.remove_protection_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.remove_protection_result. RemoveProtectionResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+RemoveProtectionJob
+Constructs a new RemoveProtectionResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result. ReorderPagesResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+ReorderPagesJob .
+Constructs a new ReorderPagesResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.replace_page_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.replace_page_result. ReplacePagesResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+ReplacePagesJob
+Constructs a new ReplacePagesResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.rotate_pages_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.rotate_pages_result. RotatePagesResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+RotatePagesJob .
+Constructs a new RotatePagesResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+adobe.pdfservices.operation.pdfjobs.result.split_pdf_result module
+
+
+class adobe.pdfservices.operation.pdfjobs.result.split_pdf_result. SplitPDFResult ( assets : [ ] , asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+SplitPDFJob .
+Constructs a new SplitPDFResult instance
+
+Parameters:
+
+
+
+
+
+get_asset ( )
+
+Returns:
+The zipped asset associated with the
+SplitPDFJob result, if an
+external asset was used as input PDF.
+
+Return type:
+Asset
+
+
+
+
+
+
+get_assets ( )
+
+Returns:
+Returns the list of result assets, if an internal asset was used as input PDF.
+
+Return type:
+list
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/genindex.html b/docs/apidocs/4.2.0/genindex.html
new file mode 100644
index 0000000..44dd088
--- /dev/null
+++ b/docs/apidocs/4.2.0/genindex.html
@@ -0,0 +1,6391 @@
+
+
+
+
+
+
+
+
Index — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+
Index
+
+
+
A
+ |
B
+ |
C
+ |
D
+ |
E
+ |
F
+ |
G
+ |
H
+ |
I
+ |
J
+ |
K
+ |
L
+ |
M
+ |
N
+ |
O
+ |
P
+ |
Q
+ |
R
+ |
S
+ |
T
+ |
U
+ |
V
+ |
W
+ |
X
+ |
Z
+
+
+
A
+
+
+ ACCEPT_HEADER_NAME (adobe.pdfservices.operation.internal.http.request_header_const.DefaultHeaders attribute)
+
+ add_action() (adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions.PageActions method)
+
+ add_all() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges method) , [1]
+
+ add_all_from() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges method) , [1]
+
+ add_angle_to_rotate() (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.RotatePagesParams method) , [1]
+
+ add_angle_to_rotate_for_page_ranges() (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.RotatePagesParams method) , [1]
+
+ add_asset() (adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params.CombinePDFParams method) , [1]
+
+ add_command() (adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands.PageActionCommands method)
+
+ add_fragment() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.Fragments method) , [1]
+
+ add_fragments() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.Fragments method) , [1]
+
+ add_item() (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options.AppearanceOptions method) , [1]
+
+ add_pages_to_insert() (adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.InsertPagesParams method) , [1]
+
+ add_pages_to_replace() (adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params.ReplacePagesParams method) , [1]
+
+ add_permission() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions.Permissions method) , [1]
+
+ add_range() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges method) , [1]
+
+ add_single_page() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges method) , [1]
+
+
+ adobe
+
+
+
+ adobe.pdfservices
+
+
+
+ adobe.pdfservices.operation
+
+
+
+ adobe.pdfservices.operation.auth
+
+
+
+ adobe.pdfservices.operation.auth.credentials
+
+
+
+ adobe.pdfservices.operation.auth.service_principal_credentials
+
+
+
+ adobe.pdfservices.operation.config
+
+
+
+ adobe.pdfservices.operation.config.client_config
+
+
+
+ adobe.pdfservices.operation.config.notifier
+
+
+
+ adobe.pdfservices.operation.config.notifier.callback_notifier_data
+
+
+
+ adobe.pdfservices.operation.config.notifier.notifier_config
+
+
+
+ adobe.pdfservices.operation.config.notifier.notifier_data
+
+
+
+ adobe.pdfservices.operation.config.notifier.notifier_type
+
+
+
+ adobe.pdfservices.operation.config.proxy
+
+
+
+ adobe.pdfservices.operation.config.proxy.proxy_authentication_credentials
+
+
+
+ adobe.pdfservices.operation.config.proxy.proxy_scheme
+
+
+
+ adobe.pdfservices.operation.config.proxy.proxy_server_config
+
+
+
+ adobe.pdfservices.operation.config.proxy.username_password_credentials
+
+
+
+ adobe.pdfservices.operation.exception
+
+
+
+ adobe.pdfservices.operation.exception.exceptions
+
+
+
+ adobe.pdfservices.operation.exception.exceptions.SdkException
+
+
+
+ adobe.pdfservices.operation.exception.exceptions.ServiceApiException
+
+
+
+ adobe.pdfservices.operation.exception.exceptions.ServiceUsageException
+
+
+
+ adobe.pdfservices.operation.internal
+
+
+
+ adobe.pdfservices.operation.internal.api
+
+
+
+ adobe.pdfservices.operation.internal.api.dto
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.asset_upload_uri_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.autotagpdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.combinepdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.compresspdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.createpdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.document_generation
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.esealpdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.exportpdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.extract_pdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.htmltopdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.linearizepdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.ocrpdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.delete_page_action
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_command
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.rotate_page_action
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_properties
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.pdf_services_api_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdftoimage
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.protect_pdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.remove_protection
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_extenal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.splitpdf
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_external_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_internal_asset_request
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_params_payload
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.response
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.response.job_status
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response
+
+
+
+ adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.pdf_services_api_response
+
+
+
+ adobe.pdfservices.operation.internal.api.pdf_services_api
+
+
+
+ adobe.pdfservices.operation.internal.api.storage_api
+
+
+
+ adobe.pdfservices.operation.internal.auth
+
+
+
+ adobe.pdfservices.operation.internal.auth.auth_factory
+
+
+
+ adobe.pdfservices.operation.internal.auth.authenticator
+
+
+
+ adobe.pdfservices.operation.internal.auth.service_principal_authenticator
+
+
+
+ adobe.pdfservices.operation.internal.auth.service_token_authenticator
+
+
+
+ adobe.pdfservices.operation.internal.auth.service_token_credentials
+
+
+
+ adobe.pdfservices.operation.internal.auth.session_token
+
+
+
+ adobe.pdfservices.operation.internal.constants
+
+
+
+ adobe.pdfservices.operation.internal.constants.custom_error_messages
+
+
+
+ adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map
+
+
+
+ adobe.pdfservices.operation.internal.constants.pdf_services_uri
+
+
+
+ adobe.pdfservices.operation.internal.constants.request_key
+
+
+
+ adobe.pdfservices.operation.internal.constants.service_constants
+
+
+
+ adobe.pdfservices.operation.internal.exceptions
+
+
+
+ adobe.pdfservices.operation.internal.execution_context
+
+
+
+ adobe.pdfservices.operation.internal.http
+
+
+
+ adobe.pdfservices.operation.internal.http.http_client
+
+
+
+ adobe.pdfservices.operation.internal.http.http_method
+
+
+
+ adobe.pdfservices.operation.internal.http.http_request
+
+
+
+ adobe.pdfservices.operation.internal.http.request_header_const
+
+
+
+ adobe.pdfservices.operation.internal.http.response_util
+
+
+
+ adobe.pdfservices.operation.internal.params
+
+
+
+ adobe.pdfservices.operation.internal.params.combine_pdf_job_input
+
+
+
+ adobe.pdfservices.operation.internal.params.page_range
+
+
+
+ adobe.pdfservices.operation.internal.pdf_services_helper
+
+
+
+ adobe.pdfservices.operation.internal.util
+
+
+
+ adobe.pdfservices.operation.internal.util.asset_upload_util
+
+
+
+ adobe.pdfservices.operation.internal.util.enforce_types
+
+
+
+ adobe.pdfservices.operation.internal.util.file_utils
+
+
+
+ adobe.pdfservices.operation.internal.util.json_hint_encoder
+
+
+
+ adobe.pdfservices.operation.internal.util.object_util
+
+
+
+ adobe.pdfservices.operation.internal.util.path_util
+
+
+
+ adobe.pdfservices.operation.internal.util.string_util
+
+
+
+ adobe.pdfservices.operation.internal.util.validation_util
+
+
+
+ adobe.pdfservices.operation.io
+
+
+
+ adobe.pdfservices.operation.io.asset
+
+
+
+ adobe.pdfservices.operation.io.cloud_asset
+
+
+
+ adobe.pdfservices.operation.io.external_asset
+
+
+
+ adobe.pdfservices.operation.io.external_storage_type
+
+
+
+
+
+ adobe.pdfservices.operation.io.stream_asset
+
+
+
+ adobe.pdfservices.operation.pdf_services
+
+
+
+ adobe.pdfservices.operation.pdf_services_job
+
+
+
+ adobe.pdfservices.operation.pdf_services_job_status
+
+
+
+ adobe.pdfservices.operation.pdf_services_job_status_response
+
+
+
+ adobe.pdfservices.operation.pdf_services_media_type
+
+
+
+ adobe.pdfservices.operation.pdf_services_response
+
+
+
+ adobe.pdfservices.operation.pdfjobs
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.autotag_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.combine_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.compress_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.create_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.delete_pages_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.document_merge_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.eseal_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_to_images_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.extract_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.html_to_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.insert_pages_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.linearize_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.pdf_properties_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.protect_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.remove_protection_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.reorder_pages_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.replace_pages_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.rotate_pages_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.jobs.split_pdf_job
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.autotag_pdf
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.combine_pdf
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.compress_pdf
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.word
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.delete_pages
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.documentmerge
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.field_location
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.field_options
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.export_pdf
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.html_to_pdf
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.insert_pages
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.ocr_pdf
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.page_ranges
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_properties
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_to_image
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.remove_protection
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.reorder_pages
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.replace_pages
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.rotate_pages
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.split_pdf
+
+
+
+ adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.create_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.delete_pages_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.document_merge_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.export_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.extract_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.html_to_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.insert_pages_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.linearize_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.ocr_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.pdf_services_job_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.remove_protection_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.replace_page_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.rotate_pages_result
+
+
+
+ adobe.pdfservices.operation.pdfjobs.result.split_pdf_result
+
+
+
+ adobe.pdfservices.operation.region
+
+
+ AES_128 (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm.EncryptionAlgorithm attribute) , [1]
+
+ AES_256 (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm.EncryptionAlgorithm attribute) , [1]
+
+ AI (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType attribute) , [1]
+
+ ALL_CONTENT (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption.ContentEncryption attribute) , [1]
+
+ ALL_CONTENT_EXCEPT_METADATA (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption.ContentEncryption attribute) , [1]
+
+ Angle (class in adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle) , [1]
+
+ ANGLE_180 (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.Angle attribute) , [1]
+
+ ANGLE_270 (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.Angle attribute) , [1]
+
+ ANGLE_90 (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.Angle attribute) , [1]
+
+ AppearanceItem (class in adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item) , [1]
+
+ AppearanceOptions (class in adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options) , [1]
+
+ as_class() (adobe.pdfservices.operation.internal.util.json_hint_encoder.JSONHintDecoder static method)
+
+ Asset (class in adobe.pdfservices.operation.io.asset) , [1]
+
+ assets (adobe.pdfservices.operation.internal.api.pdf_services_api.PDFServicesAPI attribute)
+
+
+ AssetUploadURIRequest (class in adobe.pdfservices.operation.internal.api.dto.request.asset_upload_uri_request)
+
+ AssetUploadUtil (class in adobe.pdfservices.operation.internal.util.asset_upload_util)
+
+ authenticator (adobe.pdfservices.operation.internal.execution_context.ExecutionContext property)
+
+ Authenticator (class in adobe.pdfservices.operation.internal.auth.authenticator)
+
+ AuthenticatorFactory (class in adobe.pdfservices.operation.internal.auth.auth_factory)
+
+ AUTHN (adobe.pdfservices.operation.internal.constants.request_key.RequestKey attribute)
+
+ AUTHORIZATION_HEADER_NAME (adobe.pdfservices.operation.internal.http.request_header_const.DefaultHeaders attribute)
+
+ AUTO_TAG (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ AUTOTAG_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ AutotagPDFExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_external_asset_request)
+
+ AutotagPDFInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_internal_asset_request)
+
+ AutotagPDFJob (class in adobe.pdfservices.operation.pdfjobs.jobs.autotag_pdf_job) , [1]
+
+ AutotagPDFParams (class in adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params) , [1]
+
+ AutotagPDFParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_params_payload)
+
+ AutotagPDFResult (class in adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result) , [1]
+
+
+
+
+
B
+
+
+
C
+
+
+ CA_CA (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage attribute) , [1]
+
+
+ CALLBACK (adobe.pdfservices.operation.config.notifier.notifier_type.NotifierType attribute) , [1]
+
+ CallbackNotifierData (class in adobe.pdfservices.operation.config.notifier.callback_notifier_data) , [1]
+
+ client_config (adobe.pdfservices.operation.internal.execution_context.ExecutionContext property)
+
+ ClientConfig (class in adobe.pdfservices.operation.config.client_config) , [1]
+
+ CloudAsset (class in adobe.pdfservices.operation.io.cloud_asset) , [1]
+
+ COMBINE_PDF (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ COMBINE_PDF_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ CombinePDFExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_external_asset_request)
+
+ CombinePDFInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_internal_asset_request)
+
+ CombinePDFJob (class in adobe.pdfservices.operation.pdfjobs.jobs.combine_pdf_job) , [1]
+
+ CombinePDFJobInput (class in adobe.pdfservices.operation.internal.params.combine_pdf_job_input)
+
+ CombinePDFParams (class in adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params) , [1]
+
+ CombinePDFResult (class in adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result) , [1]
+
+ COMPRESS_PDF (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ COMPRESS_PDF_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ CompressionLevel (class in adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level) , [1]
+
+ CompressPDFExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_external_asset_request)
+
+ CompressPDFInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_internal_asset_request)
+
+ CompressPDFJob (class in adobe.pdfservices.operation.pdfjobs.jobs.compress_pdf_job) , [1]
+
+ CompressPDFParams (class in adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params) , [1]
+
+ CompressPDFParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_params_payload)
+
+ CompressPDFResult (class in adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result) , [1]
+
+
+
+ CONTENT_TYPE_HEADER_NAME (adobe.pdfservices.operation.internal.http.request_header_const.DefaultHeaders attribute)
+
+ ContentEncryption (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption) , [1]
+
+ COPY_CONTENT (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission attribute) , [1]
+
+ create_from() (adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_command.PageActionCommand static method)
+
+ CREATE_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ CREATE_PDF (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ CreatePDFExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_external_asset_request)
+
+ CreatePDFFromExcelParams (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params) , [1]
+
+ CreatePDFFromPPTParams (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params) , [1]
+
+ CreatePDFFromWordParams (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params) , [1]
+
+ CreatePDFInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_internal_asset_request)
+
+ CreatePDFJob (class in adobe.pdfservices.operation.pdfjobs.jobs.create_pdf_job) , [1]
+
+ CreatePDFParams (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams) , [1]
+
+ CreatePDFParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_params_payload)
+
+ CreatePDFResult (class in adobe.pdfservices.operation.pdfjobs.result.create_pdf_result) , [1]
+
+ credentials (adobe.pdfservices.operation.internal.execution_context.ExecutionContext property)
+
+ Credentials (class in adobe.pdfservices.operation.auth.credentials) , [1]
+
+ CS_CZ (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage attribute) , [1]
+
+
+ CSCAuthContext (class in adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context) , [1]
+
+ CSCCredentials (class in adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials) , [1]
+
+ CSV (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType attribute) , [1]
+
+
+ CUSTOM_ERROR_MESSAGES_STATUS_CODE_MAPPING (adobe.pdfservices.operation.internal.http.response_util.ResponseUtil attribute)
+
+ CustomErrorMessages (class in adobe.pdfservices.operation.internal.constants.custom_error_messages)
+
+
+
+
+
D
+
+
+
+ DELETE_PAGES (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ DELETE_PAGES_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ DeletePageAction (class in adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.delete_page_action)
+
+ DeletePagesJob (class in adobe.pdfservices.operation.pdfjobs.jobs.delete_pages_job) , [1]
+
+ DeletePagesParams (class in adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params) , [1]
+
+ DeletePagesResult (class in adobe.pdfservices.operation.pdfjobs.result.delete_pages_result) , [1]
+
+ DISTINGUISHED_NAME (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.AppearanceItem attribute) , [1]
+
+ DOC (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType attribute) , [1]
+
+
+ DOCUMENT_MERGE_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ DocumentGenerationParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_params_payload)
+
+ DocumentLanguage (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language) , [1]
+
+
+ DocumentLevelPermission (class in adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission) , [1]
+
+ DocumentMergeExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_external_asset_request)
+
+ DocumentMergeInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_internal_asset_request)
+
+ DocumentMergeJob (class in adobe.pdfservices.operation.pdfjobs.jobs.document_merge_job) , [1]
+
+ DocumentMergeParams (class in adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params) , [1]
+
+ DocumentMergePDFResult (class in adobe.pdfservices.operation.pdfjobs.result.document_merge_result) , [1]
+
+ DOCX (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType attribute) , [1]
+
+
+ DONE (adobe.pdfservices.operation.internal.api.dto.response.job_status.JobStatus attribute)
+
+
+ DOWNLOAD (adobe.pdfservices.operation.internal.constants.request_key.RequestKey attribute)
+
+ DROPBOX (adobe.pdfservices.operation.io.external_storage_type.ExternalStorageType attribute) , [1]
+
+
+
+
+
E
+
+
+ E_SEAL (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ EDIT_ANNOTATIONS (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission attribute) , [1]
+
+ EDIT_CONTENT (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission attribute) , [1]
+
+ EDIT_DOCUMENT_ASSEMBLY (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission attribute) , [1]
+
+ EDIT_FILL_AND_SIGN_FORM_FIELDS (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission attribute) , [1]
+
+ EL_GR (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage attribute) , [1]
+
+
+ EN_GB (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage attribute) , [1]
+
+
+ EN_US (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage attribute) , [1]
+
+
+ EncryptionAlgorithm (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm) , [1]
+
+ enforce_types() (in module adobe.pdfservices.operation.internal.util.enforce_types)
+
+ error_code (adobe.pdfservices.operation.exception.exceptions.ServiceApiException property)
+
+
+ ES_ES (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage attribute) , [1]
+
+
+ ESEAL_PDF_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ ESealPDFExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_external_asset_request)
+
+ ESealPDFInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_internal_asset_request)
+
+ ESealPDFResult (class in adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result) , [1]
+
+ ET_EE (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage attribute) , [1]
+
+
+
+
+ EU (adobe.pdfservices.operation.region.Region attribute) , [1]
+
+ EU_ES (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale attribute) , [1]
+
+ EU_URI (adobe.pdfservices.operation.internal.constants.pdf_services_uri.PDFServicesURI attribute)
+
+ ExecutionContext (class in adobe.pdfservices.operation.internal.execution_context)
+
+ expired_at (adobe.pdfservices.operation.internal.auth.session_token.SessionToken attribute)
+
+ EXPORT_PDF (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ EXPORT_PDF_FORM_DATA (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ EXPORT_PDF_FORM_DATA_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ EXPORT_PDF_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ EXPORT_PDF_TO_IMAGES (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ ExportOCRLocale (class in adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale) , [1]
+
+ ExportPDFExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_external_asset_request)
+
+ ExportPDFFormDataJob (class in adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data_job) , [1]
+
+ ExportPDFFormDataResult (class in adobe.pdfservices.operation.pdfjobs.result.export_pdf_form_data_result)
+
+ ExportPDFInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_internal_asset_request)
+
+ ExportPDFJob (class in adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_job) , [1]
+
+ ExportPDFParams (class in adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params) , [1]
+
+ ExportPDFParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_params_payload)
+
+ ExportPDFResult (class in adobe.pdfservices.operation.pdfjobs.result.export_pdf_result) , [1]
+
+ ExportPDFTargetFormat (class in adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format) , [1]
+
+ ExportPDFtoImagesJob (class in adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_to_images_job) , [1]
+
+ ExportPDFToImagesOutputType (class in adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type) , [1]
+
+ ExportPDFtoImagesParams (class in adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params) , [1]
+
+ ExportPDFtoImagesResult (class in adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result) , [1]
+
+ ExportPDFToImagesTargetFormat (class in adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format) , [1]
+
+ extension (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType property) , [1]
+
+ ExternalAsset (class in adobe.pdfservices.operation.io.external_asset) , [1]
+
+ ExternalStorageType (class in adobe.pdfservices.operation.io.external_storage_type) , [1]
+
+ EXTRACT_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ EXTRACT_PDF (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ ExtractElementType (class in adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type) , [1]
+
+ ExtractPDFExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_external_asset_request)
+
+ ExtractPDFInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_internal_asset_request)
+
+ ExtractPDFJob (class in adobe.pdfservices.operation.pdfjobs.jobs.extract_pdf_job) , [1]
+
+ ExtractPDFParams (class in adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params) , [1]
+
+ ExtractPDFParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_params_payload)
+
+ ExtractPDFResult (class in adobe.pdfservices.operation.pdfjobs.result.extract_pdf_result) , [1]
+
+ ExtractRenditionsElementType (class in adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type) , [1]
+
+
+
+
+
F
+
+
+
G
+
+
+ GENERIC_CAN_NOT_BE_NONE (adobe.pdfservices.operation.internal.constants.custom_error_messages.CustomErrorMessages attribute)
+
+ GENERIC_CAN_NOT_BE_NONE_OR_EMPTY (adobe.pdfservices.operation.internal.constants.custom_error_messages.CustomErrorMessages attribute)
+
+ GET (adobe.pdfservices.operation.internal.http.http_method.HttpMethod attribute)
+
+ get() (adobe.pdfservices.operation.config.proxy.proxy_scheme.ProxyScheme class method) , [1]
+
+
+ get_access_token() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context.CSCAuthContext method) , [1]
+
+ get_actions() (adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions.PageActions method)
+
+ get_add_char_info() (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams method) , [1]
+
+ get_api_key() (adobe.pdfservices.operation.internal.auth.authenticator.Authenticator method)
+
+
+ get_appear_on_foreground() (adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance.WatermarkAppearance method)
+
+ get_appearance_item() (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.AppearanceItem method)
+
+ get_appearance_options() (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options.AppearanceOptions method) , [1]
+
+ get_asset() (adobe.pdfservices.operation.internal.params.combine_pdf_job_input.CombinePDFJobInput method)
+
+
+ (adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params.ReorderPagesParams method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result.CombinePDFResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result.CompressPDFResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.create_pdf_result.CreatePDFResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.delete_pages_result.DeletePagesResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.document_merge_result.DocumentMergePDFResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result.ESealPDFResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.export_pdf_form_data_result.ExportPDFFormDataResult method)
+
+ (adobe.pdfservices.operation.pdfjobs.result.export_pdf_result.ExportPDFResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.html_to_pdf_result.HTMLtoPDFResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.import_pdf_form_data_result.ImportPDFFormDataResult method)
+
+ (adobe.pdfservices.operation.pdfjobs.result.insert_pages_result.InsertPagesResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.linearize_pdf_result.LinearizePDFResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.ocr_pdf_result.OCRPDFResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.pdf_accessibility_checker_result.PDFAccessibilityCheckerResult method)
+
+ (adobe.pdfservices.operation.pdfjobs.result.pdf_watermark_result.PDFWatermarkResult method)
+
+ (adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result.ProtectPDFResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.remove_protection_result.RemoveProtectionResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result.ReorderPagesResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.replace_page_result.ReplacePagesResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.rotate_pages_result.RotatePagesResult method) , [1]
+
+ (adobe.pdfservices.operation.pdfjobs.result.split_pdf_result.SplitPDFResult method) , [1]
+
+
+ get_asset_id() (adobe.pdfservices.operation.io.cloud_asset.CloudAsset method) , [1]
+
+ get_assets() (adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result.ExportPDFtoImagesResult method) , [1]
+
+
+ get_assets_to_combine() (adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params.CombinePDFParams method) , [1]
+
+ get_assets_to_insert() (adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.InsertPagesParams method) , [1]
+
+ get_assets_to_replace() (adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params.ReplacePagesParams method) , [1]
+
+ get_authenticator() (adobe.pdfservices.operation.internal.auth.auth_factory.AuthenticatorFactory static method)
+
+ get_base_asset() (adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.InsertPagesParams method) , [1]
+
+
+ get_bottom() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.FieldLocation method) , [1]
+
+ get_client_id() (adobe.pdfservices.operation.auth.service_principal_credentials.ServicePrincipalCredentials method) , [1]
+
+
+ get_client_secret() (adobe.pdfservices.operation.auth.service_principal_credentials.ServicePrincipalCredentials method) , [1]
+
+ get_code() (adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response.JobErrorResponse method)
+
+ get_commands() (adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands.PageActionCommands method)
+
+ get_compression_level() (adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params.CompressPDFParams method) , [1]
+
+
+ get_connect_timeout() (adobe.pdfservices.operation.config.client_config.ClientConfig method) , [1]
+
+ get_content() (adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper class method)
+
+
+ get_content_encryption() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams method) , [1]
+
+ get_content_json() (adobe.pdfservices.operation.pdfjobs.result.extract_pdf_result.ExtractPDFResult method) , [1]
+
+ get_create_tagged_pdf() (adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams.CreatePDFParams method)
+
+
+ get_credential_id() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.CSCCredentials method) , [1]
+
+ get_credentials() (adobe.pdfservices.operation.config.proxy.proxy_server_config.ProxyServerConfig method) , [1]
+
+ get_csc_auth_context() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.CSCCredentials method) , [1]
+
+ get_default_uri() (adobe.pdfservices.operation.internal.constants.pdf_services_uri.PDFServicesURI static method)
+
+ get_document_language() (adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams.CreatePDFParams method)
+
+
+ get_download_uri() (adobe.pdfservices.operation.internal.api.storage_api.StorageApi static method)
+
+
+ get_elements_to_extract() (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams method) , [1]
+
+ get_elements_to_extract_renditions() (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams method) , [1]
+
+ get_encryption_algorithm() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams method) , [1]
+
+ get_end() (adobe.pdfservices.operation.internal.params.page_range.PageRange method)
+
+ get_endpoint() (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap method)
+
+ get_error_response() (adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.pdf_services_api_response.PDFServicesAPIResponse method)
+
+ get_export_ocr_locale() (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale method) , [1]
+
+ get_export_pdf_to_images_output_type() (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params.ExportPDFtoImagesParams method) , [1]
+
+ get_export_pdf_to_images_target_format() (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params.ExportPDFtoImagesParams method) , [1]
+
+ get_external_storage_type() (adobe.pdfservices.operation.io.external_asset.ExternalAsset method) , [1]
+
+ get_field_location() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.FieldOptions method) , [1]
+
+ get_field_name() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.FieldOptions method) , [1]
+
+ get_file_count() (adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params.SplitPDFParams method) , [1]
+
+ get_file_ext() (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.ExportPDFTargetFormat method) , [1]
+
+
+ get_file_path() (in module adobe.pdfservices.operation.internal.util.path_util)
+
+ get_format() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format.OutputFormat method) , [1]
+
+ get_fragments() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.DocumentMergeParams method) , [1]
+
+ get_fragments_list() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.Fragments method) , [1]
+
+
+
+ get_from_extension() (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType static method) , [1]
+
+ get_generate_report() (adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params.AutotagPDFParams method) , [1]
+
+ get_header_info() (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap method)
+
+ get_host() (adobe.pdfservices.operation.config.proxy.proxy_server_config.ProxyServerConfig method) , [1]
+
+ get_include_header_footer() (adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.HTMLtoPDFParams method) , [1]
+
+ get_include_page_level_properties() (adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params.PDFPropertiesParams method) , [1]
+
+ get_input_stream() (adobe.pdfservices.operation.io.stream_asset.StreamAsset method) , [1]
+
+ get_job_result() (adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper class method)
+
+
+ get_job_status() (adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper class method)
+
+
+ get_json() (adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.HTMLtoPDFParams method) , [1]
+
+ get_json_data_for_merge() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.DocumentMergeParams method) , [1]
+
+ get_json_form_fields_data() (adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params.ImportPDFFormDataParams method) , [1]
+
+ get_json_form_fields_data_string() (adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params.ImportPDFFormDataParams method) , [1]
+
+ get_left() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.FieldLocation method) , [1]
+
+ get_length() (adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions.PageActions method)
+
+ get_locale() (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale method) , [1]
+
+ get_message() (adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response.JobErrorResponse method)
+
+ get_mime_type() (adobe.pdfservices.operation.io.stream_asset.StreamAsset method) , [1]
+
+ get_ocr_lang() (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params.ExportPDFParams method) , [1]
+
+ get_ocr_locale() (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params.OCRParams method) , [1]
+
+ get_ocr_type() (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params.OCRParams method) , [1]
+
+ get_opacity() (adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance.WatermarkAppearance method)
+
+ get_output_format() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.DocumentMergeParams method) , [1]
+
+ get_output_type() (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type.ExportPDFToImagesOutputType method) , [1]
+
+ get_owner_password() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams method) , [1]
+
+ get_page_actions() (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.RotatePagesParams method) , [1]
+
+ get_page_count() (adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params.SplitPDFParams method) , [1]
+
+ get_page_end() (adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params.PDFAccessibilityCheckerParams method)
+
+ get_page_layout() (adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.HTMLtoPDFParams method) , [1]
+
+ get_page_number() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.FieldOptions method) , [1]
+
+ get_page_ranges() (adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action.PageAction method)
+
+
+ get_page_start() (adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params.PDFAccessibilityCheckerParams method)
+
+ get_password() (adobe.pdfservices.operation.config.proxy.username_password_credentials.UsernamePasswordCredentials method) , [1]
+
+
+ get_pdf_properties_dict() (adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result.PDFPropertiesResult method) , [1]
+
+ get_pdf_services_uri() (adobe.pdfservices.operation.config.client_config.ClientConfig method)
+
+ get_permissions() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams method) , [1]
+
+ get_pin() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.CSCCredentials method) , [1]
+
+ get_port() (adobe.pdfservices.operation.config.proxy.proxy_server_config.ProxyServerConfig method) , [1]
+
+ get_port_based_on_scheme() (adobe.pdfservices.operation.config.proxy.proxy_server_config.ProxyServerConfig class method)
+
+ get_provider_name() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.CSCCredentials method) , [1]
+
+ get_proxy_scheme() (adobe.pdfservices.operation.config.proxy.proxy_server_config.ProxyServerConfig method) , [1]
+
+ get_proxy_server_config() (adobe.pdfservices.operation.config.client_config.ClientConfig method) , [1]
+
+ get_ranges() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges method) , [1]
+
+ get_read_timeout() (adobe.pdfservices.operation.config.client_config.ClientConfig method) , [1]
+
+ get_report() (adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result.AutotagPDFResult method) , [1]
+
+
+ get_request_tracking_id_from_response() (adobe.pdfservices.operation.internal.http.response_util.ResponseUtil static method)
+
+ get_resource() (adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result.AutotagPDFResult method) , [1]
+
+
+ get_response() (adobe.pdfservices.operation.internal.api.pdf_services_api.PDFServicesAPI static method)
+
+ get_result() (adobe.pdfservices.operation.pdf_services_response.PDFServicesResponse method) , [1]
+
+ get_retry_interval() (adobe.pdfservices.operation.pdf_services_job_status_response.PDFServicesJobStatusResponse method) , [1]
+
+ get_right() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.FieldLocation method) , [1]
+
+ get_rotation_angle() (adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.rotate_page_action.RotatePageAction method)
+
+ get_seal_appearance_options() (adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.PDFElectronicSealParams method) , [1]
+
+ get_seal_certificate_credentials() (adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.PDFElectronicSealParams method) , [1]
+
+ get_seal_field_options() (adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.PDFElectronicSealParams method) , [1]
+
+ get_shift_headings() (adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params.AutotagPDFParams method) , [1]
+
+ get_signature_format() (adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.PDFElectronicSealParams method) , [1]
+
+
+ get_start() (adobe.pdfservices.operation.internal.params.page_range.PageRange method)
+
+ get_status() (adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response.JobErrorResponse method)
+
+
+ get_styling_info() (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams method) , [1]
+
+ get_table_structure_type() (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams method) , [1]
+
+ get_tagged_pdf() (adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result.AutotagPDFResult method) , [1]
+
+ get_target_format() (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params.ExportPDFParams method) , [1]
+
+ get_token() (adobe.pdfservices.operation.internal.auth.service_token_credentials.ServiceTokenCredentials method)
+
+ get_token_type() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context.CSCAuthContext method) , [1]
+
+ get_top() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.FieldLocation method) , [1]
+
+ get_tsa_basic_auth_credentials() (adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options.RFC3161TSAOptions method) , [1]
+
+ get_type() (adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.delete_page_action.DeletePageAction method)
+
+
+ get_upload_uri() (adobe.pdfservices.operation.internal.api.storage_api.StorageApi static method)
+
+ get_uri() (adobe.pdfservices.operation.io.external_asset.ExternalAsset method) , [1]
+
+ get_uri_for_region() (adobe.pdfservices.operation.internal.constants.pdf_services_uri.PDFServicesURI static method)
+
+ get_url() (adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options.RFC3161TSAOptions method) , [1]
+
+ get_user_password() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams method) , [1]
+
+ get_username() (adobe.pdfservices.operation.config.proxy.username_password_credentials.UsernamePasswordCredentials method) , [1]
+
+
+ get_value() (adobe.pdfservices.operation.pdf_services_job_status.PDFServicesJobStatus method) , [1]
+
+ get_values() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions.Permissions method) , [1]
+
+ get_visible() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.FieldOptions method) , [1]
+
+ get_watermark_appearance() (adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params.PDFWatermarkParams method)
+
+ GIF (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType attribute) , [1]
+
+ GL_ES (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale attribute) , [1]
+
+
+
+
+
H
+
+
+
I
+
+
+
J
+
+
+
K
+
+
+
L
+
+
+
M
+
+
+ media_type (adobe.pdfservices.operation.internal.api.dto.request.asset_upload_uri_request.AssetUploadURIRequest property)
+
+ MEDIUM (adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.CompressionLevel attribute) , [1]
+
+ MERGE_DOCUMENT (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ mime_type (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType property) , [1]
+
+ MK_MK (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage attribute) , [1]
+
+
+
+ module
+
+
+ adobe
+
+ adobe.pdfservices
+
+ adobe.pdfservices.operation
+
+ adobe.pdfservices.operation.auth
+
+ adobe.pdfservices.operation.auth.credentials
+
+ adobe.pdfservices.operation.auth.service_principal_credentials
+
+ adobe.pdfservices.operation.config
+
+ adobe.pdfservices.operation.config.client_config
+
+ adobe.pdfservices.operation.config.notifier
+
+ adobe.pdfservices.operation.config.notifier.callback_notifier_data
+
+ adobe.pdfservices.operation.config.notifier.notifier_config
+
+ adobe.pdfservices.operation.config.notifier.notifier_data
+
+ adobe.pdfservices.operation.config.notifier.notifier_type
+
+ adobe.pdfservices.operation.config.proxy
+
+ adobe.pdfservices.operation.config.proxy.proxy_authentication_credentials
+
+ adobe.pdfservices.operation.config.proxy.proxy_scheme
+
+ adobe.pdfservices.operation.config.proxy.proxy_server_config
+
+ adobe.pdfservices.operation.config.proxy.username_password_credentials
+
+ adobe.pdfservices.operation.exception
+
+ adobe.pdfservices.operation.exception.exceptions
+
+ adobe.pdfservices.operation.exception.exceptions.SdkException
+
+ adobe.pdfservices.operation.exception.exceptions.ServiceApiException
+
+ adobe.pdfservices.operation.exception.exceptions.ServiceUsageException
+
+ adobe.pdfservices.operation.internal
+
+ adobe.pdfservices.operation.internal.api
+
+ adobe.pdfservices.operation.internal.api.dto
+
+ adobe.pdfservices.operation.internal.api.dto.request
+
+ adobe.pdfservices.operation.internal.api.dto.request.asset_upload_uri_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.autotagpdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.combinepdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.compresspdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.createpdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.document_generation
+
+ adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.esealpdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.exportpdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.extract_pdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.htmltopdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.linearizepdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.ocrpdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.delete_page_action
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_command
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.rotate_page_action
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_properties
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.pdf_services_api_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdftoimage
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.protect_pdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.remove_protection
+
+ adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_extenal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.request.splitpdf
+
+ adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_external_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_internal_asset_request
+
+ adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_params_payload
+
+ adobe.pdfservices.operation.internal.api.dto.response
+
+ adobe.pdfservices.operation.internal.api.dto.response.job_status
+
+ adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api
+
+ adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response
+
+ adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.pdf_services_api_response
+
+ adobe.pdfservices.operation.internal.api.pdf_services_api
+
+ adobe.pdfservices.operation.internal.api.storage_api
+
+ adobe.pdfservices.operation.internal.auth
+
+ adobe.pdfservices.operation.internal.auth.auth_factory
+
+ adobe.pdfservices.operation.internal.auth.authenticator
+
+ adobe.pdfservices.operation.internal.auth.service_principal_authenticator
+
+ adobe.pdfservices.operation.internal.auth.service_token_authenticator
+
+ adobe.pdfservices.operation.internal.auth.service_token_credentials
+
+ adobe.pdfservices.operation.internal.auth.session_token
+
+ adobe.pdfservices.operation.internal.constants
+
+ adobe.pdfservices.operation.internal.constants.custom_error_messages
+
+ adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map
+
+ adobe.pdfservices.operation.internal.constants.pdf_services_uri
+
+ adobe.pdfservices.operation.internal.constants.request_key
+
+ adobe.pdfservices.operation.internal.constants.service_constants
+
+ adobe.pdfservices.operation.internal.exceptions
+
+ adobe.pdfservices.operation.internal.execution_context
+
+ adobe.pdfservices.operation.internal.http
+
+ adobe.pdfservices.operation.internal.http.http_client
+
+ adobe.pdfservices.operation.internal.http.http_method
+
+ adobe.pdfservices.operation.internal.http.http_request
+
+ adobe.pdfservices.operation.internal.http.request_header_const
+
+ adobe.pdfservices.operation.internal.http.response_util
+
+ adobe.pdfservices.operation.internal.params
+
+ adobe.pdfservices.operation.internal.params.combine_pdf_job_input
+
+ adobe.pdfservices.operation.internal.params.page_range
+
+ adobe.pdfservices.operation.internal.pdf_services_helper
+
+ adobe.pdfservices.operation.internal.util
+
+ adobe.pdfservices.operation.internal.util.asset_upload_util
+
+ adobe.pdfservices.operation.internal.util.enforce_types
+
+ adobe.pdfservices.operation.internal.util.file_utils
+
+ adobe.pdfservices.operation.internal.util.json_hint_encoder
+
+ adobe.pdfservices.operation.internal.util.object_util
+
+ adobe.pdfservices.operation.internal.util.path_util
+
+ adobe.pdfservices.operation.internal.util.string_util
+
+ adobe.pdfservices.operation.internal.util.validation_util
+
+ adobe.pdfservices.operation.io
+
+ adobe.pdfservices.operation.io.asset
+
+ adobe.pdfservices.operation.io.cloud_asset
+
+ adobe.pdfservices.operation.io.external_asset
+
+ adobe.pdfservices.operation.io.external_storage_type
+
+ adobe.pdfservices.operation.io.stream_asset
+
+ adobe.pdfservices.operation.pdf_services
+
+ adobe.pdfservices.operation.pdf_services_job
+
+ adobe.pdfservices.operation.pdf_services_job_status
+
+ adobe.pdfservices.operation.pdf_services_job_status_response
+
+ adobe.pdfservices.operation.pdf_services_media_type
+
+ adobe.pdfservices.operation.pdf_services_response
+
+ adobe.pdfservices.operation.pdfjobs
+
+ adobe.pdfservices.operation.pdfjobs.jobs
+
+ adobe.pdfservices.operation.pdfjobs.jobs.autotag_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.combine_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.compress_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.create_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.delete_pages_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.document_merge_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.eseal_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_to_images_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.extract_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.html_to_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.insert_pages_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.linearize_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.pdf_properties_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.protect_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.remove_protection_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.reorder_pages_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.replace_pages_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.rotate_pages_job
+
+ adobe.pdfservices.operation.pdfjobs.jobs.split_pdf_job
+
+ adobe.pdfservices.operation.pdfjobs.params
+
+ adobe.pdfservices.operation.pdfjobs.params.autotag_pdf
+
+ adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.combine_pdf
+
+ adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.compress_pdf
+
+ adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.word
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.delete_pages
+
+ adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.documentmerge
+
+ adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.field_location , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.field_options , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.export_pdf
+
+ adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.html_to_pdf
+
+ adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data
+
+ adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.insert_pages
+
+ adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.ocr_pdf
+
+ adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.page_ranges
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_properties
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_to_image
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.remove_protection
+
+ adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.reorder_pages
+
+ adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.replace_pages
+
+ adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.rotate_pages
+
+ adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.params.split_pdf
+
+ adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params , [1]
+
+ adobe.pdfservices.operation.pdfjobs.result
+
+ adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.create_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.delete_pages_result
+
+ adobe.pdfservices.operation.pdfjobs.result.document_merge_result
+
+ adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.export_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result
+
+ adobe.pdfservices.operation.pdfjobs.result.extract_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.html_to_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.insert_pages_result
+
+ adobe.pdfservices.operation.pdfjobs.result.linearize_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.ocr_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result
+
+ adobe.pdfservices.operation.pdfjobs.result.pdf_services_job_result
+
+ adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result
+
+ adobe.pdfservices.operation.pdfjobs.result.remove_protection_result
+
+ adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result
+
+ adobe.pdfservices.operation.pdfjobs.result.replace_page_result
+
+ adobe.pdfservices.operation.pdfjobs.result.rotate_pages_result
+
+ adobe.pdfservices.operation.pdfjobs.result.split_pdf_result
+
+ adobe.pdfservices.operation.region
+
+
+
+
+
+
+
N
+
+
+
O
+
+
+
P
+
+
+ PADES (adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format.SignatureFormat attribute) , [1]
+
+ PageAction (class in adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action)
+
+ PageActionCommand (class in adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_command)
+
+ PageActionCommands (class in adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands)
+
+ PageActions (class in adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions)
+
+ PageLayout (class in adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout) , [1]
+
+ PageManipulationExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_external_asset_request)
+
+ PageManipulationInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_internal_asset_request)
+
+ PageManipulationParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_params_payload)
+
+ PageRange (class in adobe.pdfservices.operation.internal.params.page_range)
+
+ PageRanges (class in adobe.pdfservices.operation.pdfjobs.params.page_ranges) , [1]
+
+ PasswordProtectParams (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params) , [1]
+
+ PDF (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType attribute) , [1]
+
+
+ PDF_ACCESSIBILITY_CHECKER (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ PDF_ACCESSIBILITY_CHECKER_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ PDF_PROPERTIES (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ PDF_PROPERTIES_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ PDF_TO_IMAGES_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ PDF_WATERMARK (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ PDF_WATERMARK_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ PDFAccessibilityCheckerJob (class in adobe.pdfservices.operation.pdfjobs.jobs.pdf_accessibility_checker_job)
+
+ PDFAccessibilityCheckerParams (class in adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params)
+
+ PDFAccessibilityCheckerResult (class in adobe.pdfservices.operation.pdfjobs.result.pdf_accessibility_checker_result)
+
+ PDFElectronicSealJob (class in adobe.pdfservices.operation.pdfjobs.jobs.eseal_job) , [1]
+
+ PDFElectronicSealParams (class in adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params) , [1]
+
+ PDFPropertiesExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_external_asset_request)
+
+ PDFPropertiesInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_internal_asset_request)
+
+ PDFPropertiesJob (class in adobe.pdfservices.operation.pdfjobs.jobs.pdf_properties_job) , [1]
+
+ PDFPropertiesParams (class in adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params) , [1]
+
+ PDFPropertiesParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_params_payload)
+
+ PDFPropertiesResult (class in adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result) , [1]
+
+ PDFServices (class in adobe.pdfservices.operation.pdf_services) , [1]
+
+ PDFServicesAPI (class in adobe.pdfservices.operation.internal.api.pdf_services_api)
+
+ PDFServicesAPIRequest (class in adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.pdf_services_api_request)
+
+ PDFServicesAPIResponse (class in adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.pdf_services_api_response)
+
+ PDFServicesHelper (class in adobe.pdfservices.operation.internal.pdf_services_helper)
+
+ PDFServicesJob (class in adobe.pdfservices.operation.pdf_services_job) , [1]
+
+ PDFServicesJobParams (class in adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params) , [1]
+
+ PDFServicesJobResult (class in adobe.pdfservices.operation.pdfjobs.result.pdf_services_job_result) , [1]
+
+ PDFServicesJobStatus (class in adobe.pdfservices.operation.pdf_services_job_status) , [1]
+
+ PDFServicesJobStatusResponse (class in adobe.pdfservices.operation.pdf_services_job_status_response) , [1]
+
+ PDFServicesMediaType (class in adobe.pdfservices.operation.pdf_services_media_type) , [1]
+
+ PDFServicesResponse (class in adobe.pdfservices.operation.pdf_services_response) , [1]
+
+ PDFServicesURI (class in adobe.pdfservices.operation.internal.constants.pdf_services_uri)
+
+
+
+ PDFtoImageParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_params_payload)
+
+ PDFtoImagesExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_external_asset_request)
+
+ PDFToImagesInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_internal_asset_request)
+
+ PDFWatermarkJob (class in adobe.pdfservices.operation.pdfjobs.jobs.pdf_watermark_job)
+
+ PDFWatermarkParams (class in adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params)
+
+ PDFWatermarkResult (class in adobe.pdfservices.operation.pdfjobs.result.pdf_watermark_result)
+
+ Permission (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission) , [1]
+
+ Permissions (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions) , [1]
+
+ PKCS7 (adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format.SignatureFormat attribute) , [1]
+
+ PL_PL (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage attribute) , [1]
+
+
+ PLATFORM (adobe.pdfservices.operation.internal.constants.request_key.RequestKey attribute)
+
+ PNG (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType attribute) , [1]
+
+
+ POLLING_TIMEOUT_STATUS_CODE (adobe.pdfservices.operation.internal.api.pdf_services_api.PDFServicesAPI attribute)
+
+ POST (adobe.pdfservices.operation.internal.http.http_method.HttpMethod attribute)
+
+ PPT (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType attribute) , [1]
+
+ PPTX (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType attribute) , [1]
+
+
+ PRINT_HIGH_QUALITY (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission attribute) , [1]
+
+ PRINT_LOW_QUALITY (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission attribute) , [1]
+
+ process_request() (in module adobe.pdfservices.operation.internal.http.http_client)
+
+ PROTECT_PDF (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ PROTECT_PDF_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ ProtectPDFExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_external_asset_request)
+
+ ProtectPDFInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_internal_asset_request)
+
+ ProtectPDFJob (class in adobe.pdfservices.operation.pdfjobs.jobs.protect_pdf_job) , [1]
+
+ ProtectPDFParams (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params) , [1]
+
+ ProtectPDFParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_params_payload)
+
+ ProtectPDFResult (class in adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result) , [1]
+
+ proxy_config_map() (adobe.pdfservices.operation.config.proxy.proxy_server_config.ProxyServerConfig method)
+
+ ProxyAuthenticationCredentials (class in adobe.pdfservices.operation.config.proxy.proxy_authentication_credentials) , [1]
+
+ ProxyScheme (class in adobe.pdfservices.operation.config.proxy.proxy_scheme) , [1]
+
+ ProxyServerConfig (class in adobe.pdfservices.operation.config.proxy.proxy_server_config) , [1]
+
+ PSD (adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType attribute) , [1]
+
+ PT_BR (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage attribute) , [1]
+
+
+ PT_PT (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale attribute) , [1]
+
+ PUT (adobe.pdfservices.operation.internal.http.http_method.HttpMethod attribute)
+
+
+
+
+
Q
+
+
+
R
+
+
+ read_conf_file_content() (in module adobe.pdfservices.operation.internal.util.file_utils)
+
+ refresh_download_uri() (adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper class method)
+
+
+ refresh_token() (adobe.pdfservices.operation.internal.auth.authenticator.Authenticator method)
+
+
+ Region (class in adobe.pdfservices.operation.region) , [1]
+
+ REGION_URI_MAP (adobe.pdfservices.operation.internal.constants.pdf_services_uri.PDFServicesURI attribute)
+
+ REMOVE_PROTECTION (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ REMOVE_PROTECTION_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ RemoveProtectionExternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_extenal_asset_request)
+
+ RemoveProtectionInternalAssetRequest (class in adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_internal_asset_request)
+
+ RemoveProtectionJob (class in adobe.pdfservices.operation.pdfjobs.jobs.remove_protection_job) , [1]
+
+ RemoveProtectionParams (class in adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params) , [1]
+
+ RemoveProtectionParamsPayload (class in adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_params_payload)
+
+ RemoveProtectionResult (class in adobe.pdfservices.operation.pdfjobs.result.remove_protection_result) , [1]
+
+ REORDER_PAGES (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ REORDER_PAGES_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ ReorderPagesJob (class in adobe.pdfservices.operation.pdfjobs.jobs.reorder_pages_job) , [1]
+
+ ReorderPagesParams (class in adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params) , [1]
+
+ ReorderPagesResult (class in adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result) , [1]
+
+ REPLACE_PAGES (adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap attribute)
+
+ REPLACE_PAGES_OPERATION_NAME (adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants attribute)
+
+ ReplacePagesJob (class in adobe.pdfservices.operation.pdfjobs.jobs.replace_pages_job) , [1]
+
+ ReplacePagesParams (class in adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params) , [1]
+
+ ReplacePagesResult (class in adobe.pdfservices.operation.pdfjobs.result.replace_page_result) , [1]
+
+
+
+
+
+
S
+
+
+
T
+
+
+
U
+
+
+
V
+
+
+
W
+
+
+
X
+
+
+
Z
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/index.html b/docs/apidocs/4.2.0/index.html
new file mode 100644
index 0000000..437c361
--- /dev/null
+++ b/docs/apidocs/4.2.0/index.html
@@ -0,0 +1,1371 @@
+
+
+
+
+
+
+
+
+
Welcome to pdfservices-sdk’s documentation! — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ Welcome to pdfservices-sdk’s documentation!
+
+
+
+
+
+
+
+
+
+Welcome to pdfservices-sdk’s documentation!
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/modules.html b/docs/apidocs/4.2.0/modules.html
new file mode 100644
index 0000000..dcc9fe2
--- /dev/null
+++ b/docs/apidocs/4.2.0/modules.html
@@ -0,0 +1,1358 @@
+
+
+
+
+
+
+
+
+
src — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/objects.inv b/docs/apidocs/4.2.0/objects.inv
new file mode 100644
index 0000000..fcf1803
Binary files /dev/null and b/docs/apidocs/4.2.0/objects.inv differ
diff --git a/docs/apidocs/4.2.0/py-modindex.html b/docs/apidocs/4.2.0/py-modindex.html
new file mode 100644
index 0000000..b8aee68
--- /dev/null
+++ b/docs/apidocs/4.2.0/py-modindex.html
@@ -0,0 +1,2789 @@
+
+
+
+
+
+
+
+
Python Module Index — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+ Python Module Index
+
+
+
+
+
+
+
+
+
+
Python Module Index
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/auth.html b/docs/apidocs/4.2.0/reference/auth.html
new file mode 100644
index 0000000..5edd383
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/auth.html
@@ -0,0 +1,1404 @@
+
+
+
+
+
+
+
+
+
Authentication — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+Authentication
+
+
+
+Credentials
+
+
+class adobe.pdfservices.operation.auth.credentials. Credentials
+Bases: ABC
+This abstract class represents the basic contract for the credentials to be used with
+ServicePrincipalCredentials .
+
+
+
+
+ServicePrincipalCredentials
+
+
+class adobe.pdfservices.operation.auth.service_principal_credentials. ServicePrincipalCredentials ( client_id : str , client_secret : str )
+Bases: Credentials
+Service Principal credentials allow your application to call PDF Services API. For getting the credentials,
+Click Here .
+Constructs an instance of ServicePrincipalCredentials .
+
+Parameters:
+
+
+
+
+
+get_client_id ( )
+
+Returns:
+Client Id
+
+Return type:
+str
+
+
+
+
+
+
+get_client_secret ( )
+
+Returns:
+Client Secret
+
+Return type:
+str
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/config.html b/docs/apidocs/4.2.0/reference/config.html
new file mode 100644
index 0000000..8e526e5
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/config.html
@@ -0,0 +1,1482 @@
+
+
+
+
+
+
+
+
+
Config — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+Config
+
+
+ClientConfig
+
+
+class adobe.pdfservices.operation.config.client_config. ClientConfig ( * , connect_timeout : int = 4000 , read_timeout : int = 10000 , region : Region = Region.US , proxy_server_config : ProxyServerConfig = None )
+Bases: object
+Encapsulates the API request configurations.
+Constructs an instance of ClientConfig .
+
+Parameters:
+
+connect_timeout (int ) – determines the timeout in milliseconds until a connection is established in the API
+calls. Default value is 4000 milliseconds.
+read_timeout (int ) – Defines the read timeout in milliseconds, The number of milliseconds the client will wait for the server to send a response after the connection is established. Default value is 10000 milliseconds
+region (Region ) – Default value is US.
+proxy_server_config (ProxyServerConfig ) – Sets the configuration for proxy server.
+
+
+
+
+
+from_file ( client_config_file_path : str )
+Sets the connect timeout and read timeout using the JSON client config file path. All the keys in the JSON structure are optional.
+
+Parameters:
+client_config_file_path (str ) – JSON client config file path
+
+Returns:
+This Builder instance to add any additional parameters.
+
+Return type:
+ClientConfig.Builder
+
+
+JSON structure:
+{
+ "connectTimeout" : "4000" ,
+ "readTimeout" : "20000" ,
+ "proxyServerConfig" : {
+ "host" : "127.0.0.1" ,
+ "port" : "8080" ,
+ "scheme" : "https" ,
+ "usernamePasswordCredentials" : {
+ "username" : "username" ,
+ "password" : "password"
+ }
+ },
+ "region" : "EU"
+}
+
+
+
+
+
+
+get_connect_timeout ( )
+
+Returns:
+Connect timeout.
+
+Return type:
+int
+
+
+
+
+
+
+get_proxy_server_config ( )
+
+Returns:
+Proxy server config used.
+
+Return type:
+ProxyServerConfig
+
+
+
+
+
+
+get_read_timeout ( )
+
+Returns:
+Read timeout.
+
+Return type:
+int
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/config/notifier.html b/docs/apidocs/4.2.0/reference/config/notifier.html
new file mode 100644
index 0000000..d55981f
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/config/notifier.html
@@ -0,0 +1,1414 @@
+
+
+
+
+
+
+
+
+
Notifier Config — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+Notifier Config
+
+
+
+CallbackNotifierData
+
+
+class adobe.pdfservices.operation.config.notifier.callback_notifier_data. CallbackNotifierData ( url : str , * , headers : Dict = None )
+Bases: NotifierData
+Represents the configuration for the notifier data.
+Constructs an instance of CallbackNotifierData .
+
+Parameters:
+
+url (str ) – Callback URL, can not be None
+headers (dict ) – Callback headers. (Optional, use key-value)
+
+
+
+
+
+
+
+NotifierConfig
+
+
+class adobe.pdfservices.operation.config.notifier.notifier_config. NotifierConfig ( notifier_type : NotifierType , notifier_data : NotifierData )
+Bases: object
+Represents the configuration for a notifier to be used to notify user about the completion of a
+PDFServicesJob .
+Constructs an instance of NotifierConfig .
+
+Parameters:
+
+
+
+
+
+
+
+NotifierData
+
+
+class adobe.pdfservices.operation.config.notifier.notifier_data. NotifierData
+Bases: ABC
+This abstract class represents the basic contract for the notifier data to be used with
+NotifierConfig
+
+
+
+
+NotifierType
+
+
+class adobe.pdfservices.operation.config.notifier.notifier_type. NotifierType ( value )
+Bases: Enum
+Notifier Type Mapping.
+
+
+CALLBACK = 'CALLBACK'
+Callback notifier type.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/config/proxy.html b/docs/apidocs/4.2.0/reference/config/proxy.html
new file mode 100644
index 0000000..49491e3
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/config/proxy.html
@@ -0,0 +1,1568 @@
+
+
+
+
+
+
+
+
+
Proxy Config — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+Proxy Config
+
+
+
+ProxyAuthenticationCredentials
+
+
+class adobe.pdfservices.operation.config.proxy.proxy_authentication_credentials. ProxyAuthenticationCredentials
+Bases: ABC
+This abstract class represents the basic contract for the credentials to be used with
+ProxyServerConfig .
+
+
+
+
+ProxyScheme
+
+
+class adobe.pdfservices.operation.config.proxy.proxy_scheme. ProxyScheme ( value )
+Bases: Enum
+Supported scheme types for
+ProxyServerConfig .
+
+
+HTTP = 'http'
+Represents HTTP scheme.
+
+
+
+
+HTTPS = 'https'
+Represents HTTPS scheme.
+
+
+
+
+classmethod get ( proxy_scheme )
+Returns the instance of ProxyScheme for the input string.
+
+Parameters:
+proxy_scheme (str ) – String value of the scheme.
+
+Returns:
+the instance of ProxyScheme for the input string.
+
+Return type:
+ProxyScheme
+
+
+
+
+
+
+
+
+ProxyServerConfig
+
+
+class adobe.pdfservices.operation.config.proxy.proxy_server_config. ProxyServerConfig ( host : str , * , port : int = None , scheme : ProxyScheme = ProxyScheme.HTTP , credentials : ProxyAuthenticationCredentials = None )
+Bases: object
+Encapsulates the proxy server configurations.
+Creates an instance of ProxyServerConfig .
+
+Parameters:
+
+host (str ) – Host name. (Optional, use key-value)
+port (int ) – port number of proxy server. It should be greater than 0. Scheme’s default port is used if not
+provided. (Optional, use key-value)
+scheme (ProxyScheme ) – scheme of proxy server. Possible values are HTTP and HTTPS. Default value is HTTP. (Optional,
+use key-value)
+credentials (ProxyAuthenticationCredentials ) – ProxyAuthenticationCredentials} instance. (Optional, use key-value)
+
+
+
+
+
+HTTPS_PORT = 443
+Represents default port for HTTPS scheme.
+
+
+
+
+HTTP_PORT = 80
+Represents default port for HTTP scheme.
+
+
+
+
+from_json ( json_data : dict )
+Creates a proxy server instance from a json file.
+{
+"proxyServerConfig" : {
+ "host" : "127.0.0.1" ,
+ "port" : "8080" ,
+ "scheme" : "https" ,
+ "usernamePasswordCredentials" : {
+ "username" : "username" ,
+ "password" : "password"
+ }
+ },
+}
+
+
+
+Parameters:
+json_data (dict ) – A dictionary containing proxy server config in the specified format.
+
+
+
+
+
+
+get_credentials ( )
+
+Returns:
+the credentials for authenticating with a proxy server.
+
+Return type:
+ProxyAuthenticationCredentials
+
+
+
+
+
+
+get_host ( )
+
+Returns:
+the host name of proxy server.
+
+Return type:
+str
+
+
+
+
+
+
+get_port ( )
+
+Returns:
+the port number of proxy server.
+
+Return type:
+int
+
+
+
+
+
+
+get_proxy_scheme ( )
+
+Returns:
+the scheme of proxy server.
+
+Return type:
+ProxyScheme
+
+
+
+
+
+
+
+
+UsernamePasswordCredentials
+
+
+class adobe.pdfservices.operation.config.proxy.username_password_credentials. UsernamePasswordCredentials ( username : str , password : str )
+Bases: ProxyAuthenticationCredentials
+Simple
+ProxyAuthenticationCredentials
+implementation based on a username and password.
+Constructs an instance of UsernamePasswordCredentials .
+
+Parameters:
+
+
+
+
+
+from_json ( json_data : dict )
+Constructs a UsernamePasswordCredentials instance from a dictionary in the specified format.
+
+Parameters:
+json_data (dict ) – JSON data in the form of a dictionary.
+
+
+
+
+
+
+get_password ( ) → str
+
+Returns:
+the password.
+
+Return type:
+str
+
+
+
+
+
+
+get_username ( ) → str
+
+Returns:
+the username.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/exception.html b/docs/apidocs/4.2.0/reference/exception.html
new file mode 100644
index 0000000..fc9d78e
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/exception.html
@@ -0,0 +1,1381 @@
+
+
+
+
+
+
+
+
+
Exceptions — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+Exceptions
+
+
+
+ServiceUsageException
+ServiceUsageError is thrown when either service usage limit has been reached or credentials quota has been
+exhausted.
+
+
+adobe.pdfservices.operation.exception.exceptions.ServiceUsageException. with_traceback ( )
+Exception.with_traceback(tb) –
+set self.__traceback__ to tb and return self.
+
+
+
+
+ServiceApiException
+ServiceApiException is thrown when an underlying service API call results in an error.
+
+
+adobe.pdfservices.operation.exception.exceptions.ServiceApiException. with_traceback ( )
+Exception.with_traceback(tb) –
+set self.__traceback__ to tb and return self.
+
+
+
+
+SdkException
+SdkException is typically thrown for client-side or network errors.
+
+
+adobe.pdfservices.operation.exception.exceptions.SdkException. with_traceback ( )
+Exception.with_traceback(tb) –
+set self.__traceback__ to tb and return self.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/index.html b/docs/apidocs/4.2.0/reference/index.html
new file mode 100644
index 0000000..f779802
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/index.html
@@ -0,0 +1,2133 @@
+
+
+
+
+
+
+
+
+
API Reference — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+API Reference
+
+
+PDFServices
+
+
+class adobe.pdfservices.operation.pdf_services. PDFServices ( credentials : Credentials , * , client_config : ClientConfig | None = None )
+Bases: object
+This class is the entry point for all the PDF Service utilities.
+These utilities can be used to perform various functions such as submitting
+PDFServicesJob ,
+getting status of a PDFServicesJob ,
+getting result of a PDFServicesJob ,
+uploading Asset ,
+getting content of an Asset ,
+deleting an Asset and refreshing an
+Asset .
+Constructs a new PDFServices instance with the given Credentials and ClientConfig.
+
+Parameters:
+
+credentials (Credentials ) – Credentials to be used for authentication; can not be None.
+client_config (ClientConfig ) – Client configuration for PDFServices. (Optional, use key-value)
+
+
+
+
+
+delete_asset ( asset : Asset )
+Deletes asset from PDF Services storage.
+
+Parameters:
+asset (Asset ) – Asset to be deleted; can not be None.
+
+Raises:
+
+
+
+
+
+
+
+get_content ( asset : Asset ) → StreamAsset
+
+Parameters:
+asset (Asset ) – Asset to the content; can not be None.
+
+Raises:
+
+
+Returns:
+Returns the content of the asset.
+
+Return type:
+StreamAsset
+
+
+
+
+
+
+get_job_result ( polling_url : str , result_type : ABCMeta ) → PDFServicesResponse
+Returns PDFServicesResponse for the submitted
+PDFServicesJob result.
+
+Parameters:
+
+polling_url (str ) – URL to be polled to get the job result; can not be None.
+result_type (PDFServicesJobResult.__class__ ) – result class for
+PDFServicesJob , it will be an
+implementation of PDFServicesJobResult; can not be None.
+
+
+Raises:
+
+
+Returns:
+PDFServicesResponse for the submitted job.
+
+Return type:
+PDFServicesResponse
+
+
+
+
+
+
+get_job_status ( polling_url : str ) → PDFServicesJobStatusResponse
+
+Parameters:
+polling_url (str ) – URL to be polled to get the job status; can not be None.
+
+Raises:
+
+ServiceApiException – If an error is encountered while submitting the job.
+SdkException – Is thrown for client-side or network errors.
+ServiceUsageException – If service usage limits have been reached or credentials quota has been
+exhausted.
+
+
+Returns:
+Returns PDFServicesJobStatusResponse for the submitted
+PDFServicesJob .
+
+Return type:
+PDFServicesJobStatusResponse
+
+
+
+
+
+
+refresh_download_uri ( asset : Asset ) → Asset
+
+Parameters:
+asset (Asset ) – asset to be refreshed; can not be None.
+
+Raises:
+
+
+Returns:
+a new Asset with a new valid download URI.
+
+Return type:
+Asset
+
+
+
+
+
+
+submit ( pdf_services_job : PDFServicesJob , * , notify_config_list : List | None = None ) → str
+Creates the PDFServicesJob
+and returns the polling URL.
+
+Parameters:
+
+pdf_services_job (PDFServicesJob ) – PDFServicesJob} to be submitted; can not be None.
+notify_config_list (list ) – List of
+NotifierConfig
+to be used for notification. (Optional, use key-value)
+
+
+Raises:
+
+ServiceApiException – If an error is encountered while submitting the job.
+SdkException – Is thrown for client-side or network errors.
+ServiceUsageException – If service usage limits have been reached or credentials quota has been
+exhausted.
+
+
+Returns:
+the polling URL.
+
+Return type:
+str
+
+
+
+
+
+
+upload ( input_stream : Any , mime_type : str ) → Asset
+Upload content from input stream and returns an Asset
+to be used in PDF Services SDK.
+Method will not close the input stream, responsibility of closing the input stream lies with the client.
+
+Parameters:
+
+
+Raises:
+
+ServiceApiException – If an error is encountered while submitting the job.
+SdkException – Is thrown for client-side or network errors.
+ServiceUsageException – If service usage limits have been reached or credentials quota has been
+exhausted.
+
+
+Returns:
+asset containing the uploaded content
+
+Return type:
+Asset
+
+
+
+
+
+
+upload_assets ( upload_asset_list : List ) → [ ]
+Upload content from list of StreamAsset and
+returns a list of Asset to be used in PDF Services
+SDK.
+Method will not close the input stream of the Stream Asset, responsibility of closing the input stream lies
+with the client.
+
+Parameters:
+upload_asset_list (list ) – StreamAsset
+list that is to be uploaded; can not be None.
+
+Raises:
+
+
+Returns:
+returns a list of Asset to be used in PDF Services
+SDK.
+
+Return type:
+list
+
+
+
+
+
+
+
+
+PDFServicesJob
+
+
+class adobe.pdfservices.operation.pdf_services_job. PDFServicesJob
+Bases: ABC
+This abstract class represents the basic contract for all the PDF Services Jobs.
+It imposes no restrictions or particular details on the job execution process and leaves the
+specifics of setting up the jobs to their individual implementations.
+
+
+
+
+PDFServicesJobStatus
+
+
+class adobe.pdfservices.operation.pdf_services_job_status. PDFServicesJobStatus ( value )
+Bases: Enum
+Status types for PDFServicesJob .
+Constructs PDF Services job status using its string representation.
+
+Parameters:
+value (str ) – string representation of PDF services job status.
+
+
+
+
+DONE = 'done'
+Represents completed status
+
+
+
+
+FAILED = 'failed'
+Represents failed status
+
+
+
+
+IN_PROGRESS = 'in progress'
+Represents in progress status
+
+
+
+
+get_value ( )
+
+Returns:
+string representation of PDFServicesJobStatus .
+
+Return type:
+str
+
+
+
+
+
+
+
+
+PDFServicesJobStatusResponse
+
+
+class adobe.pdfservices.operation.pdf_services_job_status_response. PDFServicesJobStatusResponse ( status : str , headers : {} )
+Bases: object
+Response object encapsulating PDFServicesJob
+status and retry interval.
+Constructs PDFServicesJob status response
+with its status, headers.
+
+Parameters:
+
+
+
+
+
+get_retry_interval ( ) → int
+
+Returns:
+retry interval for status polling of the
+PDFServicesJob in seconds.
+
+Return type:
+int
+
+
+
+
+
+
+get_status ( )
+
+Returns:
+string representation of
+PDFServicesJobStatus
+for the PDFServicesJob .
+
+Return type:
+str
+
+
+
+
+
+
+
+
+
+PDFServicesResponse
+
+
+class adobe.pdfservices.operation.pdf_services_response. PDFServicesResponse ( status: str , headers: {<class 'str'>: <class 'str'>} , result )
+Bases: PDFServicesJobStatusResponse
+Response object for PDFServicesJob .
+Constructs PDFServicesJob response with
+its status, headers and result.
+
+Parameters:
+
+
+
+
+
+get_result ( )
+
+Returns:
+Returns instance of result of
+PDFServicesJob .
+
+
+
+
+
+
+
+
+Region
+
+
+class adobe.pdfservices.operation.region. Region ( value )
+Bases: str , Enum
+Supported regions to be used with ClientConfig .
+
+
+EU = 'eu'
+Represents
+“Europe”
+region
+
+
+
+
+US = 'us'
+Represents
+“US”
+region
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/io.html b/docs/apidocs/4.2.0/reference/io.html
new file mode 100644
index 0000000..f21673f
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/io.html
@@ -0,0 +1,1536 @@
+
+
+
+
+
+
+
+
+
IO — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+IO
+
+
+
+Asset
+
+
+class adobe.pdfservices.operation.io.asset. Asset
+Bases: ABC
+Represents the basic contract for the assets to be used with
+PDFServicesJob
+
+
+
+
+CloudAsset
+
+
+class adobe.pdfservices.operation.io.cloud_asset. CloudAsset ( asset_id , download_uri = None )
+Bases: Asset
+This class represents an asset stored in Adobe internal storage.
+Constructs an instance of CloudAsset .
+
+Parameters:
+
+
+
+
+
+get_asset_id ( )
+
+Returns:
+the assetId of the asset.
+
+Return type:
+str
+
+
+
+
+
+
+get_download_uri ( )
+
+Returns:
+the downloadURI of the asset.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+ExternalAsset
+
+
+class adobe.pdfservices.operation.io.external_asset. ExternalAsset ( uri : str , * , external_storage_type : ExternalStorageType = None )
+Bases: Asset
+This class represents an asset stored in an external storage.
+Constructs an instance of ExternalAsset .
+
+Parameters:
+
+uri (str ) – URI of the external asset, can not be None.
+external_storage_type (ExternalStorageType ) – external storage type. (Optional, use key-value)
+
+
+
+
+
+get_external_storage_type ( )
+
+Returns:
+the externalStorageType of the external asset.
+
+Return type:
+ExternalStorageType
+
+
+
+
+
+
+get_uri ( )
+
+Returns:
+the URI of the external asset.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+ExternalStorageType
+
+
+class adobe.pdfservices.operation.io.external_storage_type. ExternalStorageType ( value )
+Bases: Enum
+Represents external storage types.
+
+
+BLOB = 'BLOB'
+Represents Blob storage.
+
+
+
+
+DROPBOX = 'DROPBOX'
+Represents Dropbox storage.
+
+
+
+
+S3 = 'S3'
+Represents S3 storage.
+
+
+
+
+SHAREPOINT = 'SHAREPOINT'
+Represents Sharepoint storage.
+
+
+
+
+classmethod get ( storage_type : str )
+Returns ExternalStorageType instance for its string representation.
+
+Parameters:
+storage_type (str ) – Storage type code
+
+
+
+
+
+
+
+
+StreamAsset
+
+
+class adobe.pdfservices.operation.io.stream_asset. StreamAsset ( input_stream , mime_type )
+Bases: object
+This class encapsulates input stream and the media type of
+Asset .
+Constructs an instance of StreamAsset .
+
+Parameters:
+
+
+
+
+
+get_input_stream ( )
+
+Returns:
+the input stream of the asset.
+
+
+
+
+
+
+get_mime_type ( )
+
+Returns:
+the mime type of the asset.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/pdfjobs.html b/docs/apidocs/4.2.0/reference/pdfjobs.html
new file mode 100644
index 0000000..47e485c
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/pdfjobs.html
@@ -0,0 +1,1811 @@
+
+
+
+
+
+
+
+
+
PDF Jobs — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/pdfjobs/jobs.html b/docs/apidocs/4.2.0/reference/pdfjobs/jobs.html
new file mode 100644
index 0000000..93d1adf
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/pdfjobs/jobs.html
@@ -0,0 +1,2650 @@
+
+
+
+
+
+
+
+
+
Jobs — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+Jobs
+
+
+
+AutotagPDFJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.autotag_pdf_job. AutotagPDFJob ( input_asset : Asset , * , autotag_pdf_params : AutotagPDFParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that creates PDF documents with enhanced readability from existing PDF documents.
+An optional tagging report can also be generated which contains the information about the tags that the tagged
+output PDF document contains.
+Accessibility tags, used by assistive technology such as screen reader are required to make PDF files compliant.
+However, the generated PDF is not guaranteed to comply with accessibility standards such as WCAG and PDF/UA as
+there could be a need to perform further downstream remediation to meet those standards.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+autotag_pdf_job = AutotagPDFJob ( input_asset )
+location = pdf_services . submit ( autotag_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , AutotagPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_tagged_pdf ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new instance of AutotagPDFJob .
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+autotag_pdf_params (AutotagPDFParams ) – AutotagPDFParams to set.(Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of AutotagPDFJob
+
+Return type:
+AutotagPDFJob
+
+
+
+
+
+
+CombinePDFJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.combine_pdf_job. CombinePDFJob ( combine_pdf_params : CombinePDFParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that combines multiple PDF files into a single PDF file. Allows specifying which pages of the source
+files to combine.
+Sample usage.
+file = open ( 'SOURCE_PATH_1' , 'rb' )
+input_stream_1 = file . read ()
+file . close ()
+file = open ( 'SOURCE_PATH_2' , 'rb' )
+input_stream_2 = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+stream_assets = [ StreamAsset ( input_stream_1 , MediaType . PDF ),
+ StreamAsset ( input_stream_2 , MediaType . PDF )]
+assets = pdf_services . upload_assets ( stream_assets )
+combine_pdf_params = (( CombinePDFParams ()
+ . add_asset ( assets [ 0 ]))
+ . add_asset ( assets [ 1 ]))
+combine_pdf_job = CombinePDFJob ( combine_pdf_params = combine_pdf_params )
+location = pdf_services . submit ( combine_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , CombinePDFResult )
+result_asset : CombinePDFResult = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new CombinePDFJob instance.
+
+Parameters:
+
+combine_pdf_params (CombinePDFParams ) – CombinePDFParams to set; can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of CombinePDFJob
+
+Return type:
+CombinePDFJob
+
+
+
+
+
+
+CompressPDFJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.compress_pdf_job. CompressPDFJob ( input_asset : Asset , * , compress_pdf_params : CompressPDFParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that reduces the size of a PDF file. Allows specifying
+CompressionLevel
+for compressing pdf
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+compress_pdf_job = CompressPDFJob ( input_asset = input_asset )
+location = pdf_services . submit ( compress_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , CompressPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new CompressPDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+compress_pdf_params (CompressPDFParams ) – CompressPDFParams to set.(Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of CompressPDFJob
+
+Return type:
+CompressPDFJob
+
+
+
+
+
+
+CreatePDFJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.create_pdf_job. CreatePDFJob ( input_asset : Asset , * , create_pdf_params : CreatePDFParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that converts a non-PDF file to a PDF file. Some source formats may have associated conversion parameters.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . DOCX )
+create_pdf_job = CreatePDFJob ( input_asset )
+location = pdf_services . submit ( create_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , CreatePDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new instance of CreatePDFJob .
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+create_pdf_params (CreatePDFParams ) – CreatePDFParams to set.(Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of CreatePDFJob.
+
+Return type:
+CreatePDFJob
+
+
+
+
+
+
+DeletePagesJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.delete_pages_job. DeletePagesJob ( input_asset : Asset , delete_pages_params : DeletePagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job to delete pages in a PDF file.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+page_ranges_for_deletion = PageRanges ()
+page_ranges . add_single_page ( 1 )
+delete_pages_params = DeletePagesParams ( page_ranges = page_ranges_for_deletion )
+delete_pages_job = DeletePagesJob ( input_asset = input_asset ,
+ delete_pages_params = delete_pages_params )
+location = pdf_services . submit ( delete_pages_job )
+pdf_services_response = pdf_services . get_job_result ( location , CompressPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new DeletePagesJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+delete_pages_params (DeletePagesParams ) – DeletePagesParams to set.(Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of DeletePagesJob
+
+Return type:
+DeletePagesJob
+
+
+
+
+
+
+DocumentMergeJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.document_merge_job. DocumentMergeJob ( input_asset : Asset , document_merge_params : DocumentMergeParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that enables the clients to produce high fidelity PDF and Word documents with dynamic data inputs.
+This operation merges the JSON data with the Word template to create dynamic documents for contracts and
+agreements, invoices, proposals, reports, forms, branded marketing documents and more.
+To know more about document generation and document templates,
+Click Here .
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . DOCX )
+json_data_for_merge = { "customerName" : "Kane Miller" , "customerVisits" : 100 }
+document_merge_params = DocumentMergeParams ( json_data_for_merge = json_data_for_merge ,
+ output_format = OutputFormat . DOCX )
+document_merge_job = DocumentMergeJob ( input_asset = input_asset ,
+ document_merge_params = document_merge_params )
+location = pdf_services . submit ( document_merge_job )
+pdf_services_response = pdf_services . get_job_result ( location , DocumentMergePDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new DocumentMergeJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+document_merge_params (DocumentMergeParams ) – DocumentMergeParams to set. can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of DocumentMergeJob
+
+Return type:
+DocumentMergeJob
+
+
+
+
+
+
+PDFElectronicSealJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.eseal_job. PDFElectronicSealJob ( input_asset : Asset , electronic_seal_params : PDFElectronicSealParams , * , seal_image_asset : Asset | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that allows clients to apply an electronic seal onto various PDF documents such as agreements, invoices, and more.
+To know more about PDF Electronic Seal, Click Here .
+Sample usage.
+pdf_file = open ( 'SOURCE_PATH' , 'rb' )
+file_input_stream = pdf_file . read ()
+pdf_file . close ()
+
+seal_image_file = open ( 'IMAGE_SOURCE_PATH' , 'rb' )
+seal_image_input_stream = seal_image_file . read ()
+seal_image_file . close ()
+
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+asset = pdf_services . upload ( input_stream = file_input_stream , mime_type = PDFServicesMediaType . PDF )
+seal_image_asset = pdf_services . upload ( input_stream = seal_image_input_stream , mime_type = PDFServicesMediaType . PNG )
+document_level_permission = DocumentLevelPermission . FORM_FILLING
+seal_field_name = "Signature1"
+seal_page_number = 1
+seal_visible = True
+field_location = FieldLocation ( 150 , 250 , 350 , 200 )
+field_options = FieldOptions (
+ field_name = seal_field_name ,
+ field_location = field_location ,
+ page_number = seal_page_number ,
+ visible = seal_visible
+)
+provider_name = "<PROVIDER_NAME>"
+access_token = "<ACCESS_TOKEN>"
+credential_id = "<CREDENTIAL_ID>"
+pin = "<PIN>"
+csc_auth_context = CSCAuthContext (
+ access_token = access_token ,
+ token_type = "Bearer" ,
+)
+certificate_credentials = CSCCredentials (
+ provider_name = provider_name ,
+ credential_id = credential_id ,
+ pin = pin ,
+ csc_auth_context = csc_auth_context ,
+)
+electronic_seal_params = PDFElectronicSealParams (
+ seal_certificate_credentials = certificate_credentials ,
+ seal_field_options = field_options ,
+)
+electronic_seal_job = PDFElectronicSealJob ( input_asset = asset ,
+ electronic_seal_params = electronic_seal_params ,
+ seal_image_asset = seal_image_asset )
+location = pdf_services . submit ( electronic_seal_job )
+pdf_services_response = pdf_services . get_job_result ( location , ESealPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new PDFElectronicSealJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+electronic_seal_params (PDFElectronicSealParams ) – Parameters for electronic seal; can not be None.
+seal_image_asset (Asset ) – Seal image asset for the job. (Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of PDFElectronicSealJob.
+
+Return type:
+PDFElectronicSealJob
+
+
+
+
+
+
+ExportPDFJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_job. ExportPDFJob ( input_asset : Asset , export_pdf_params : ExportPDFParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job which exports a source PDF file to a supported format specified by
+ExportPDFTargetFormat
+For example, a PDF can be exported to a DOCX file as follows:
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+export_pdf_params = ExportPDFParams ( target_format = ExportPDFTargetFormat . DOCX )
+export_pdf_job = ExportPDFJob ( input_asset = input_asset , export_pdf_params = export_pdf_params )
+location = pdf_services . submit ( export_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , ExportPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new ExportPDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+export_pdf_params (ExportPDFParams ) – ExportPDFParams object containing the export parameters; can not be None.
+output_asset (Asset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+Returns:
+A new instance of ExportPDFJob.
+
+Return type:
+ExportPDFJob
+
+
+
+
Note
+
External assets can be set as output only when input is external asset as well
+
+
+
+
+
+ExportPDFtoImagesJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_to_images_job. ExportPDFtoImagesJob ( input_asset : Asset , export_pdf_to_images_params : ExportPDFtoImagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job which exports a source PDF file to a supported format specified by ExportPDFToImagesTargetFormat
+The result is a list of images or a list containing a zip of images. For example, a PDF file with 15
+pages will generate 15 image files. The first file’s name ends with “_0” and the last file’s name ends with “_14”.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+export_pdf_to_images_params = ExportPDFtoImagesParams (
+ export_pdf_to_images_target_format = ExportPDFToImagesTargetFormat . JPEG ,
+ export_pdf_to_images_output_type = ExportPDFToImagesOutputType . LIST_OF_PAGE_IMAGES
+)
+export_pdf_to_images_job = ExportPDFtoImagesJob (
+ input_asset = input_asset ,
+ export_pdf_to_images_params = export_pdf_to_images_params
+)
+location = pdf_services . submit ( export_pdf_to_images_job )
+pdf_services_response = pdf_services . get_job_result ( location , ExportPDFtoImagesResult )
+result_assets = pdf_services_response . get_result () . get_assets ()
+
+
+Constructs a new ExportPDFToImagesJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+export_pdf_to_images_params (ExportPDFtoImagesParams ) – ExportPDFToImagesParams object containing the export to images parameters; can not be None.
+output_asset (Asset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+
+HTMLtoPDFJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.html_to_pdf_job. HTMLtoPDFJob ( * , input_asset : Asset | None = None , input_url : str | None = None , html_to_pdf_params : HTMLtoPDFParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that converts a HTML file to a PDF file.
+An HTML input can be provided either as a local zip archive or as a static HTML file with inline CSS.
+Alternatively, an HTML can also be specified via URL.
+
+While creating the corresponding Asset instance, the media type must be:
+“application/zip”, if the input is a local zip archive.
+“text/html”, if the input is a static HTML file with inline CSS
+
+
+In case the input is a local zip archive, it must have the following structure:
+The main HTML file must be named “index.html”.
+“index.html” must exist at the top level of zip archive, not in a folder.
+
+
+
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . ZIP )
+page_layout = PageLayout ( page_height = 11.5 , page_width = 8 )
+html_to_pdf_params = HTMLtoPDFParams ( page_layout = page_layout , include_header_footer = True )
+html_to_pdf_job = HTMLtoPDFJob ( input_asset = input_asset , html_to_pdf_params = html_to_pdf_params )
+location = pdf_services . submit ( html_to_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , HTMLtoPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new HTMLtoPDFJob .
+At least one of input_asset or input_url needs to be specified.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file. (Optional, use key-value)
+input_url (str ) – String representing the input URL. (Optional, use key-value)
+html_to_pdf_params (HTMLtoPDFParams ) – HTMLToPDFParams}. (Optional, use key-value)
+output_asset (Asset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+InsertPagesJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.insert_pages_job. InsertPagesJob ( insert_pages_params : InsertPagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that can be used to insert pages of multiple PDF files into a base PDF file.
+For more complex use cases, refer the
+CombinePDFJob .
+Sample Usage:
+base_file = open ( 'SOURCE_PATH' , 'rb' )
+base_input_stream = base_file . read ()
+base_file . close ()
+file_to_insert = open ( 'SOURCE_PATH_1' , 'rb' )
+input_stream_to_insert = file_to_insert . read ()
+file_to_insert . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+base_asset = pdf_services . upload ( input_stream = base_input_stream ,
+ mime_type = MediaType . PDF )
+asset_to_insert = pdf_services . upload ( input_stream = input_stream_to_insert ,
+ mime_type = MediaType . PDF )
+page_ranges = PageRanges () . add_range ( 1 , 3 )
+insert_pages_params = InsertPagesParams ( base_asset = base_asset )
+insert_pages_params . add_pages_to_insert ( input_asset = asset_to_insert , page_ranges = page_ranges , base_page = 2 )
+insert_pages_job = InsertPagesJob ( insert_pages_params = insert_pages_params )
+location = pdf_services . submit ( insert_pages_job )
+pdf_services_response = pdf_services . get_job_result ( location , InsertPagesResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new InsertPagesPDFJob instance.
+
+Parameters:
+
+insert_pages_params (InsertPagesParams ) – Object containing the input files and the page numbers to insert at;
+can not be None.
+output_asset (Asset ) – Object representing the output asset. (Optional, use key-value)
+External assets can be set as output only when input is external asset as well
+
+
+
+
+
+
+
+LinearizePDFJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.linearize_pdf_job. LinearizePDFJob ( input_asset : Asset , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that converts a PDF file into a linearized (also known as “web optimized”) PDF file. Such PDF files are
+optimized for incremental access in network environments.
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+linearize_pdf_job = LinearizePDFJob ( input_asset = input_asset )
+location = pdf_services . submit ( linearize_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , LinearizePDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new LinearizePDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+output_asset (ExternalAsset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+OCRPDFJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job. OCRPDFJob ( input_asset : Asset , * , ocr_pdf_params : OCRParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that convert a PDF file into a searchable PDF file. Allows specifying OCRSupportedLocale and OCR Type.
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+ocr_pdf_job = OCRPDFJob ( input_asset = input_asset )
+location = pdf_services . submit ( ocr_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , OCRPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new OCRPDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+ocr_pdf_params (OCRParams ) – OCRParams} object containing the OCR parameters. (Optional, use key-value)
+output_asset (ExternalAsset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+PDFPropertiesJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.pdf_properties_job. PDFPropertiesJob ( input_asset : Asset , * , pdf_properties_params : PDFPropertiesParams | None = None )
+Bases: PDFServicesJob
+A job that is used to fetch properties from an input PDF file. The properties are returned in a dict.
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream ,
+ mime_type = MediaType . PDF )
+pdf_properties_params = PDFPropertiesParams ( include_page_level_properties = True )
+pdf_properties_job = PDFPropertiesJob ( input_asset = input_asset , pdf_properties_params = pdf_properties_params )
+location = pdf_services . submit ( pdf_properties_job )
+pdf_services_response = pdf_services . get_job_result ( location , PDFPropertiesResult )
+pdf_properties_result = pdf_services_response . get_result ()
+
+
+Constructs a new PDFPropertiesJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+pdf_properties_params (PDFPropertiesParams ) – PDFPropertiesParams object containing the properties to be fetched.
+(Optional, use key-value)
+output_asset (ExternalAsset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+ProtectPDFJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.protect_pdf_job. ProtectPDFJob ( input_asset : Asset , protect_pdf_params : PasswordProtectParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that is used for securing PDF document with password(s).
+The password(s) is used for encrypting the PDF document and setting the restriction on certain features
+like printing, editing and copying in the PDF document.
+The supported algorithm for encrypting the PDF document are listed here. The EncryptionAlgorithm enum can
+be used to set the encryption algorithm.
+
+
+For AES-128 encryption the password supports LATIN-I characters only.
+For AES-256 encryption the password supports Unicode character set.
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+protect_pdf_params = PasswordProtectParams (
+ user_password = 'password' ,
+ encryption_algorithm = EncryptionAlgorithm . AES_256 ,
+ content_encryption = ContentEncryption . ALL_CONTENT ,
+)
+protect_pdf_job = ProtectPDFJob ( input_asset = input_asset , protect_pdf_params = protect_pdf_params )
+location = pdf_services . submit ( protect_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , ProtectPDFResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new ProtectPDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – Asset object containing the input file; can not be None.
+protect_pdf_params (PasswordProtectParams ) – ProtectPDFParams object containing the protect PDF parameters; can not be None.
+output_asset (ExternalAsset ) – Asset object representing the output asset. (Optional, use key-value)
+
+
+
+
+
+
+
+RemoveProtectionJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.remove_protection_job. RemoveProtectionJob ( input_asset : Asset , remove_protection_params : RemoveProtectionParams , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that allows to remove password security from a PDF document.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+remove_protection_params = RemoveProtectionParams ( password = "password" )
+remove_protection_job = RemoveProtectionJob ( input_asset = input_asset ,
+ remove_protection_params = remove_protection_params )
+location = pdf_services . submit ( remove_protection_job )
+pdf_services_response = pdf_services . get_job_result ( location , RemoveProtectionResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new RemoveProtectionJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job. (Mandatory, use key-value)
+remove_protection_params (RemoveProtectionParams ) – RemoveProtectionParams to set; can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of RemoveProtectionJob .
+
+Return type:
+RemoveProtectionJob
+
+
+
+
+
+
+ReorderPagesJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.reorder_pages_job. ReorderPagesJob ( reorder_pages_params : ReorderPagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that allows to rearrange pages in a PDF file according to the specified order.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+pages_to_reorder = PageRanges () . add_range ( 3 , 4 )
+ . add_single_page ( 1 )
+reorder_pages_params = ReorderPagesParams ( asset = input_asset , page_ranges = pages_to_reorder )
+reorder_pages_job = ReorderPagesJob ( reorder_pages_params = reorder_pages_params )
+location = pdf_services . submit ( reorder_pages_job )
+pdf_services_response = pdf_services . get_job_result ( location , ReorderPagesResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new ReorderPagesJob instance.
+
+Parameters:
+
+reorder_pages_params (ReorderPagesParams ) – ReorderPagesParams to set; can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of ReorderPagesJob .
+
+Return type:
+ReorderPagesJob
+
+
+
+
+
+
+ReplacePagesJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.replace_pages_job. ReplacePagesJob ( replace_pages_params : ReplacePagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that allows specific pages in a PDF file to be replaced with pages from multiple PDF files.
+Sample usage.
+base_file = open ( 'SOURCE_PATH' , 'rb' )
+base_input_stream = base_file . read ()
+base_file . close ()
+file_1 = open ( 'SOURCE_PATH' , 'rb' )
+input_stream_1 = file_1 . read ()
+file_1 . close ()
+file_2 = open ( 'SOURCE_PATH' , 'rb' )
+input_stream_2 = file_2 . read ()
+file_2 . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+base_asset = pdf_services . upload ( input_stream = base_input_stream ,
+ mime_type = MediaType . PDF )
+asset_1 = pdf_services . upload ( input_stream = input_stream_1 ,
+ mime_type = MediaType . PDF )
+asset_2 = pdf_services . upload ( input_stream = input_stream_2 ,
+ mime_type = MediaType . PDF )
+page_ranges = PageRanges () . add_range ( 3 , 4 )
+ . add_single_page ( 1 )
+replace_pages_params = ReplacePagesParams ( base_asset = base_asset )
+replace_pages_params . add_pages_to_replace ( input_asset = asset_1 , page_ranges = page_ranges , base_page = 1 )
+replace_pages_params . add_pages_to_replace ( input_asset = asset_2 , base_page = 3 )
+replace_pages_job = ReplacePagesJob ( replace_pages_params = replace_pages_params )
+location = pdf_services . submit ( replace_pages_job )
+pdf_services_response = pdf_services . get_job_result ( location , ReplacePagesResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new ReplacePagesJob instance.
+
+Parameters:
+
+replace_pages_params (ReplacePagesParams ) – ReplacePagesParams to set; can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of ReplacePagesJob .
+
+Return type:
+ReplacePagesJob
+
+
+
+
+
+
+RotatePagesJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.rotate_pages_job. RotatePagesJob ( input_asset : Asset , rotate_pages_params : RotatePagesParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that allows rotation of specific pages in a PDF file.
+Sample Usage:
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+rotate_pages_params = RotatePagesParams ()
+rotate_pages_params . add_angle_to_rotate ( angle = Angle . ANGLE_90 )
+reorder_pages_job = RotatePagesJob ( input_asset = input_asset , rotate_pages_params = rotate_pages_params )
+location = pdf_services . submit ( reorder_pages_job )
+pdf_services_response = pdf_services . get_job_result ( location , RotatePagesResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+
+Constructs a new RotatePagesJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+rotate_pages_params (RotatePagesParams ) – RotatePagesParams} object containing the rotation angle and page ranges;
+can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+
+
+
+
+
+SplitPDFJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.split_pdf_job. SplitPDFJob ( input_asset : Asset , split_pdf_params : SplitPDFParams , * , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+A job that splits PDF document into multiple smaller documents by simply specifying either the number of files,
+pages per file, or page ranges.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+base_input_stream = base_file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+split_pdf_params = SplitPDFParams ( page_count = 2 )
+split_pdf_job = SplitPDFJob ( input_asset , split_pdf_params )
+location = pdf_services . submit ( split_pdf_job )
+pdf_services_response = pdf_services . get_job_result ( location , SplitPDFResult )
+result_assets = pdf_services_response . get_result () . get_assets ()
+
+
+Constructs a new SplitPDFJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+split_pdf_params (SplitPDFParams ) – SplitPDFParams to set; can not be None.
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of SplitPDFJob .
+
+Return type:
+SplitPDFJob
+
+
+
+
+
+
+PDFWatermarkJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.pdf_watermark_job. PDFWatermarkJob ( input_asset : Asset , watermark_asset : Asset , * , pdf_watermark_params : PDFWatermarkParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+PDF Watermark API will add a watermark on specified pages of PDF document using a source watermark PDF.
+The first page of source watermark PDF will be added as a watermark in input PDF document.
+Sample usage.
+pdf_file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = pdf_file . read ()
+pdf_file . close ()
+
+pdf_file = open ( 'SOURCE_PATH' , 'rb' )
+watermark_asset = pdf_file . read ()
+watermark_asset . close ()
+
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = PDFServicesMediaType . PDF )
+watermark_asset = pdf_services . upload ( input_stream = watermark_asset , mime_type = PDFServicesMediaType . PDF )
+
+watermark_appearance = WatermarkAppearance ( appear_on_foreground = True , opacity = 100 )
+
+page_ranges = PageRanges ()
+page_ranges . add_range ( 1 , 4 )
+# Create parameters for the job
+pdf_watermark_params = PDFWatermarkParams ( page_ranges = page_ranges , watermark_appearance = watermark_appearance )
+
+# Creates a new job instance
+pdf_watermark_job = PDFWatermarkJob ( input_asset = input_asset , watermark_asset = watermark_asset ,
+ pdf_watermark_params = pdf_watermark_params )
+location = pdf_services . submit ( pdf_watermark_job )
+pdf_services_response = pdf_services . get_job_result ( location , PDFWatermarkResult )
+pdf_watermark_result : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( pdf_watermark_result )
+
+
+Constructs a new PDFWatermarkJob instance.
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+watermark_asset (Asset ) – The watermark asset for the job; can not be None.
+pdf_watermark_params (PDFWatermarkParams ) – Parameters for water mark (Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of PDFWatermarkJob.
+
+Return type:
+PDFWatermarkJob
+
+
+
+
+
+
+PDFAccessibilityCheckerJob
+
+
+class adobe.pdfservices.operation.pdfjobs.jobs.pdf_accessibility_checker_job. PDFAccessibilityCheckerJob ( input_asset : Asset , * , pdf_accessibility_checker_params : PDFAccessibilityCheckerParams | None = None , output_asset : Asset | None = None )
+Bases: PDFServicesJob
+Accessibility Checker API will check PDF files to see if they meet the machine-verifiable requirements
+of PDF/UA and WCAG 2.0. It will generate a report that summarizes the findings of the accessibility checks.
+Additional human remediation may be required to ensure that the reading order of elements is correct and
+that alternative text tags properly convey the meaning of an image.
+The report contains links to documentation that assist in manually fixing problems using Adobe Acrobat Pro.
+Sample usage.
+file = open ( 'SOURCE_PATH' , 'rb' )
+input_stream = file . read ()
+file . close ()
+credentials = ServicePrincipalCredentials (
+ client_id = os . getenv ( 'PDF_SERVICES_CLIENT_ID' ),
+ client_secret = os . getenv ( 'PDF_SERVICES_CLIENT_SECRET' )
+)
+pdf_services = PDFServices ( credentials = credentials )
+input_asset = pdf_services . upload ( input_stream = input_stream , mime_type = MediaType . PDF )
+pdf_accessibility_checker_job = PDFAccessibilityCheckerJob ( input_asset )
+location = pdf_services . submit ( pdf_accessibility_checker_job )
+pdf_services_response = pdf_services . get_job_result ( location , PDFAccessibilityCheckerResult )
+result_asset : CloudAsset = pdf_services_response . get_result () . get_asset ()
+stream_asset : StreamAsset = pdf_services . get_content ( result_asset )
+
+report_asset : CloudAsset = pdf_services_response . get_result () . get_report ()
+stream_report : StreamAsset = pdf_services . get_content ( report_asset )
+
+
+Constructs a new instance of PDFAccessibilityCheckerJob .
+
+Parameters:
+
+input_asset (Asset ) – The input asset for the job; can not be None.
+pdf_accessibility_checker_params (PDFAccessibilityCheckerParams ) – PDFAccessibilityCheckerParams to set.(Optional, use key-value)
+output_asset (ExternalAsset ) – The output asset for the job. (Optional, use key-value)
+
+
+Returns:
+A new instance of PDFAccessibilityCheckerJob
+
+Return type:
+PDFAccessibilityCheckerJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/pdfjobs/params.html b/docs/apidocs/4.2.0/reference/pdfjobs/params.html
new file mode 100644
index 0000000..c2fd197
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/pdfjobs/params.html
@@ -0,0 +1,5136 @@
+
+
+
+
+
+
+
+
+
Params — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+Params
+
+
+
+AutotagPDFParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params. AutotagPDFParams ( * , shift_headings : bool = False , generate_report : bool = False )
+Bases: PDFServicesJobParams
+Parameters for creating a tagged PDF using
+AutotagPDFJob .
+Constructs a new instance of AutotagPDFParams .
+
+Parameters:
+
+generate_report (bool ) – If true, generates an additional tagging report which contains the information about the
+tags that the tagged output PDF document contains.(Optional, use key-value)
+shift_headings (bool ) – If true, then the headings will be shifted in the output PDF document. (Optional, use key-value)
+
+
+Returns:
+A new instance of AutotagPDFParams
+
+Return type:
+AutotagPDFParams
+
+
+
+
+get_generate_report ( )
+
+Returns:
+A boolean value specifying whether an additional tagging report needs to be generated.
+
+Return type:
+bool
+
+
+
+
+
+
+get_shift_headings ( )
+
+Returns:
+A boolean value specifying whether headings need to be shifted in the tagged PDF.
+
+Return type:
+bool
+
+
+
+
+
+
+
+
+CombinePDFParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params. CombinePDFParams
+Bases: PDFServicesJobParams
+Parameters for combining PDFs using
+CombinePDFJob .
+Constructs a new CombinePDFParams instance.
+
+Returns:
+A new instance of CombinePDFParams
+
+Return type:
+CombinePDFParams
+
+
+
+
+add_asset ( asset: ~adobe.pdfservices.operation.io.asset.Asset , * , page_ranges: ~adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges = <adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges object> )
+Adds an Asset with
+PageRanges to combine.
+
+Parameters:
+
+
+
+
+
+
+
+get_assets_to_combine ( )
+
+Returns:
+a list of
+CombinePDFJobInput
+instances.
+
+
+
+
+
+
+
+
+CompressPDFParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params. CompressPDFParams ( * , compression_level : CompressionLevel = CompressionLevel.MEDIUM )
+Bases: PDFServicesJobParams
+Parameters for reducing file size of a pdf using
+CompressPDFJob
+Creates an instance of CompressPDFParams
+
+Parameters:
+compression_level (CompressionLevel ) – see CompressionLevel . (Optional, use key-value)
+
+
+
+
+get_compression_level ( )
+Returns the compression level to be used for Compress PDF, specified by
+CompressionLevel
+
+
+
+
+
+
+CompressionLevel
+
+
+class adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level. CompressionLevel ( value )
+Bases: Enum
+Supported compression levels for
+CompressPDFJob
+Constructs Compression Level from its string representation
+
+Parameters:
+compression_level – String representation
+
+
+
+
+HIGH = 'HIGH'
+Reduces the file size of pdf by reducing resolution of the coloured and grayscale images above 100 dpi to 72
+dpi (dots per inch).
+This option uses JPEG medium quality compression.
+Output pdf will not contain hidden layers, document structure, metadata, javascript, user properties and print
+settings.
+
+
+
+
+LOW = 'LOW'
+Reduces the file size of pdf by reducing resolution of the coloured and grayscale images above 250 dpi to 200
+dpi (dots per inch).
+This option uses JP2K high quality compression.
+
+
+
+
+MEDIUM = 'MEDIUM'
+Reduces the file size of pdf by reducing resolution of the coloured and grayscale images above 200 dpi to 144
+dpi (dots per inch).
+This option uses JP2K medium quality compression.
+
+
+
+
+get_compression_level ( )
+Returns the string representation of this CompressionLevel
+
+Returns:
+String representation of this CompressionLevel
+
+
+
+
+
+
+
+
+CreatePDFParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams. CreatePDFParams
+Bases: PDFServicesJobParams , ABC
+Marker base class for CreatePDFJob
+params. The factory methods within this class can be used to create instances of params classes corresponding to
+the source media type.
+
+
+
+
+CreatePDFFromExcelParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params. CreatePDFFromExcelParams ( * , document_language : DocumentLanguage = DocumentLanguage.EN_US , create_tagged_pdf : bool = False )
+Bases: CreatePDFParams
+Constructs a new instance of CreatePDFFromExcelParams .
+
+Parameters:
+
+document_language (DocumentLanguage ) – Sets office preferred editing language to be used for conversion; can not be None.
+create_tagged_pdf (bool ) – Whether to create a tagged PDF. The default value is false. (Optional, use key-value)
+
+
+
+
+
+get_document_language ( )
+
+Returns:
+Language of the input document.
+
+Return type:
+DocumentLanguage
+
+
+
+
+
+
+
+
+DocumentLanguage
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language. DocumentLanguage ( value )
+Bases: Enum
+Supported locales for Excel to PDF.
+
+
+BG_BG = 'bg-BG'
+Represents “Bulgarian (Bulgaria)” locale
+
+
+
+
+CA_CA = 'ca-CA'
+Represents “Catalan (Canada)” locale
+
+
+
+
+CS_CZ = 'cs-CZ'
+Represents “Czech (Czech Republic)” locale
+
+
+
+
+DA_DK = 'da-DK'
+Represents “Danish (Denmark)” locale
+
+
+
+
+DE_CH = 'de-CH'
+Represents “German (Switzerland)” locale
+
+
+
+
+DE_DE = 'de-DE'
+Represents “German (Germany)” locale
+
+
+
+
+EL_GR = 'el-GR'
+Represents “Greek (Greece)” locale
+
+
+
+
+EN_GB = 'en-GB'
+Represents “English (United Kingdom)” locale
+
+
+
+
+EN_US = 'en-US'
+Represents “English (United States)” locale
+
+
+
+
+ES_ES = 'es-ES'
+Represents “Spanish (Spain)” locale
+
+
+
+
+ET_EE = 'et-EE'
+Represents “Estonian (Estonia)” locale
+
+
+
+
+FI_FI = 'fi-FI'
+Represents “Finnish (Finland)” locale
+
+
+
+
+FR_FR = 'fr-FR'
+Represents “French (France)” locale
+
+
+
+
+HR_HR = 'hr-HR'
+Represents “Croatian (Croatia)” locale
+
+
+
+
+HU_HU = 'hu-HU'
+Represents “Hungarian (Hungary)” locale
+
+
+
+
+IT_IT = 'it-IT'
+Represents “Italian (Italy)” locale
+
+
+
+
+IW_IL = 'iw-IL'
+Represents “Hebrew (Israel)” locale
+
+
+
+
+JA_JP = 'ja-JP'
+Represents “Japanese (Japan)” locale.
+Please note that this locale is only supported for US(default) region.
+
+
+
+
+KO_KR = 'ko-KR'
+Represents “Korean (Korea)” locale
+
+
+
+
+LT_LT = 'lt-LT'
+Represents “Lithuanian (Lithuania)” locale
+
+
+
+
+LV_LV = 'lv-LV'
+Represents “Latvian (Latvia)” locale
+
+
+
+
+MK_MK = 'mk-MK'
+Represents “Macedonian (Macedonia)” locale
+
+
+
+
+MT_MT = 'mt-MT'
+Represents “Maltese (Malta)” locale
+
+
+
+
+NB_NO = 'nb-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+NL_NL = 'nl-NL'
+Represents “Dutch (Netherlands)” locale
+
+
+
+
+NO_NO = 'no-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+PL_PL = 'pl-PL'
+Represents “Polish (Poland)” locale
+
+
+
+
+PT_BR = 'pt-BR'
+Represents “Portuguese (Brazil)” locale
+
+
+
+
+RO_RO = 'ro-RO'
+Represents “Romanian (Romania)” locale
+
+
+
+
+RU_RU = 'ru-RU'
+Represents “Russian (Russia)” locale
+
+
+
+
+SK_SK = 'sk-SK'
+Represents “Slovak (Slovakia)” locale
+
+
+
+
+SL_SI = 'sl-SI'
+Represents “Slovenian (Slovenia)” locale
+
+
+
+
+SR_SR = 'sr-SR'
+Represents “Serbian (Serbia)” locale
+
+
+
+
+SV_SE = 'sv-SE'
+Represents “Swedish (Sweden)” locale
+
+
+
+
+TR_TR = 'tr-TR'
+Represents “Turkish (Turkey)” locale
+
+
+
+
+UK_UA = 'uk-UA'
+Represents “Ukrainian (Ukraine)” locale
+
+
+
+
+ZH_CN = 'zh-CN'
+Represents “Chinese (China)” locale
+
+
+
+
+ZH_HK = 'zh-HK'
+Represents “Chinese (Hong Kong)” locale
+
+
+
+
+get_document_language ( )
+
+
+
+
+
+
+CreatePDFFromPPTParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params. CreatePDFFromPPTParams ( * , document_language : DocumentLanguage = DocumentLanguage.EN_US , create_tagged_pdf : bool = False )
+Bases: CreatePDFParams
+Constructs a new instance of CreatePDFFromPPTParams .
+
+Parameters:
+
+document_language (DocumentLanguage ) – Sets office preferred editing language to be used for conversion; can not be None.
+create_tagged_pdf (bool ) – Whether to create a tagged PDF. The default value is false. (Optional, use key-value)
+
+
+
+
+
+get_document_language ( )
+
+Returns:
+Language of the input document.
+
+Return type:
+DocumentLanguage
+
+
+
+
+
+
+
+
+DocumentLanguage
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language. DocumentLanguage ( value )
+Bases: Enum
+Supported locales for PPT to PDF.
+
+
+BG_BG = 'bg-BG'
+Represents “Bulgarian (Bulgaria)” locale
+
+
+
+
+CA_CA = 'ca-CA'
+Represents “Catalan (Canada)” locale
+
+
+
+
+CS_CZ = 'cs-CZ'
+Represents “Czech (Czech Republic)” locale
+
+
+
+
+DA_DK = 'da-DK'
+Represents “Danish (Denmark)” locale
+
+
+
+
+DE_CH = 'de-CH'
+Represents “German (Switzerland)” locale
+
+
+
+
+DE_DE = 'de-DE'
+Represents “German (Germany)” locale
+
+
+
+
+EL_GR = 'el-GR'
+Represents “Greek (Greece)” locale
+
+
+
+
+EN_GB = 'en-GB'
+Represents “English (United Kingdom)” locale
+
+
+
+
+EN_US = 'en-US'
+Represents “English (United States)” locale
+
+
+
+
+ES_ES = 'es-ES'
+Represents “Spanish (Spain)” locale
+
+
+
+
+ET_EE = 'et-EE'
+Represents “Estonian (Estonia)” locale
+
+
+
+
+FI_FI = 'fi-FI'
+Represents “Finnish (Finland)” locale
+
+
+
+
+FR_FR = 'fr-FR'
+Represents “French (France)” locale
+
+
+
+
+HR_HR = 'hr-HR'
+Represents “Croatian (Croatia)” locale
+
+
+
+
+HU_HU = 'hu-HU'
+Represents “Hungarian (Hungary)” locale
+
+
+
+
+IT_IT = 'it-IT'
+Represents “Italian (Italy)” locale
+
+
+
+
+IW_IL = 'iw-IL'
+Represents “Hebrew (Israel)” locale
+
+
+
+
+JA_JP = 'ja-JP'
+Represents “Japanese (Japan)” locale.
+Please note that this locale is only supported for US(default) region.
+
+
+
+
+KO_KR = 'ko-KR'
+Represents “Korean (Korea)” locale
+
+
+
+
+LT_LT = 'lt-LT'
+Represents “Lithuanian (Lithuania)” locale
+
+
+
+
+LV_LV = 'lv-LV'
+Represents “Latvian (Latvia)” locale
+
+
+
+
+MK_MK = 'mk-MK'
+Represents “Macedonian (Macedonia)” locale
+
+
+
+
+MT_MT = 'mt-MT'
+Represents “Maltese (Malta)” locale
+
+
+
+
+NB_NO = 'nb-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+NL_NL = 'nl-NL'
+Represents “Dutch (Netherlands)” locale
+
+
+
+
+NO_NO = 'no-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+PL_PL = 'pl-PL'
+Represents “Polish (Poland)” locale
+
+
+
+
+PT_BR = 'pt-BR'
+Represents “Portuguese (Brazil)” locale
+
+
+
+
+RO_RO = 'ro-RO'
+Represents “Romanian (Romania)” locale
+
+
+
+
+RU_RU = 'ru-RU'
+Represents “Russian (Russia)” locale
+
+
+
+
+SK_SK = 'sk-SK'
+Represents “Slovak (Slovakia)” locale
+
+
+
+
+SL_SI = 'sl-SI'
+Represents “Slovenian (Slovenia)” locale
+
+
+
+
+SR_SR = 'sr-SR'
+Represents “Serbian (Serbia)” locale
+
+
+
+
+SV_SE = 'sv-SE'
+Represents “Swedish (Sweden)” locale
+
+
+
+
+TR_TR = 'tr-TR'
+Represents “Turkish (Turkey)” locale
+
+
+
+
+UK_UA = 'uk-UA'
+Represents “Ukrainian (Ukraine)” locale
+
+
+
+
+ZH_CN = 'zh-CN'
+Represents “Chinese (China)” locale
+
+
+
+
+ZH_HK = 'zh-HK'
+Represents “Chinese (Hong Kong)” locale
+
+
+
+
+get_document_language ( )
+
+
+
+
+
+
+CreatePDFFromWordParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params. CreatePDFFromWordParams ( * , document_language : DocumentLanguage = DocumentLanguage.EN_US , create_tagged_pdf : bool = False )
+Bases: CreatePDFParams
+Constructs a new instance of CreatePDFFromWordParams .
+
+Parameters:
+
+document_language (DocumentLanguage ) – Sets office preferred editing language to be used for conversion; can not be None.
+create_tagged_pdf (bool ) – Whether to create a tagged PDF. The default value is false. (Optional, use key-value)
+
+
+
+
+
+get_document_language ( )
+
+Returns:
+Language of the input document.
+
+Return type:
+DocumentLanguage
+
+
+
+
+
+
+
+
+DocumentLanguage
+
+
+class adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language. DocumentLanguage ( value )
+Bases: Enum
+Supported locales for Word to PDF.
+
+
+BG_BG = 'bg-BG'
+Represents “Bulgarian (Bulgaria)” locale
+
+
+
+
+CA_CA = 'ca-CA'
+Represents “Catalan (Canada)” locale
+
+
+
+
+CS_CZ = 'cs-CZ'
+Represents “Czech (Czech Republic)” locale
+
+
+
+
+DA_DK = 'da-DK'
+Represents “Danish (Denmark)” locale
+
+
+
+
+DE_CH = 'de-CH'
+Represents “German (Switzerland)” locale
+
+
+
+
+DE_DE = 'de-DE'
+Represents “German (Germany)” locale
+
+
+
+
+EL_GR = 'el-GR'
+Represents “Greek (Greece)” locale
+
+
+
+
+EN_GB = 'en-GB'
+Represents “English (United Kingdom)” locale
+
+
+
+
+EN_US = 'en-US'
+Represents “English (United States)” locale
+
+
+
+
+ES_ES = 'es-ES'
+Represents “Spanish (Spain)” locale
+
+
+
+
+ET_EE = 'et-EE'
+Represents “Estonian (Estonia)” locale
+
+
+
+
+FI_FI = 'fi-FI'
+Represents “Finnish (Finland)” locale
+
+
+
+
+FR_FR = 'fr-FR'
+Represents “French (France)” locale
+
+
+
+
+HR_HR = 'hr-HR'
+Represents “Croatian (Croatia)” locale
+
+
+
+
+HU_HU = 'hu-HU'
+Represents “Hungarian (Hungary)” locale
+
+
+
+
+IT_IT = 'it-IT'
+Represents “Italian (Italy)” locale
+
+
+
+
+IW_IL = 'iw-IL'
+Represents “Hebrew (Israel)” locale
+
+
+
+
+JA_JP = 'ja-JP'
+Represents “Japanese (Japan)” locale.
+Please note that this locale is only supported for US(default) region.
+
+
+
+
+KO_KR = 'ko-KR'
+Represents “Korean (Korea)” locale
+
+
+
+
+LT_LT = 'lt-LT'
+Represents “Lithuanian (Lithuania)” locale
+
+
+
+
+LV_LV = 'lv-LV'
+Represents “Latvian (Latvia)” locale
+
+
+
+
+MK_MK = 'mk-MK'
+Represents “Macedonian (Macedonia)” locale
+
+
+
+
+MT_MT = 'mt-MT'
+Represents “Maltese (Malta)” locale
+
+
+
+
+NB_NO = 'nb-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+NL_NL = 'nl-NL'
+Represents “Dutch (Netherlands)” locale
+
+
+
+
+NO_NO = 'no-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+PL_PL = 'pl-PL'
+Represents “Polish (Poland)” locale
+
+
+
+
+PT_BR = 'pt-BR'
+Represents “Portuguese (Brazil)” locale
+
+
+
+
+RO_RO = 'ro-RO'
+Represents “Romanian (Romania)” locale
+
+
+
+
+RU_RU = 'ru-RU'
+Represents “Russian (Russia)” locale
+
+
+
+
+SK_SK = 'sk-SK'
+Represents “Slovak (Slovakia)” locale
+
+
+
+
+SL_SI = 'sl-SI'
+Represents “Slovenian (Slovenia)” locale
+
+
+
+
+SR_SR = 'sr-SR'
+Represents “Serbian (Serbia)” locale
+
+
+
+
+SV_SE = 'sv-SE'
+Represents “Swedish (Sweden)” locale
+
+
+
+
+TR_TR = 'tr-TR'
+Represents “Turkish (Turkey)” locale
+
+
+
+
+UK_UA = 'uk-UA'
+Represents “Ukrainian (Ukraine)” locale
+
+
+
+
+ZH_CN = 'zh-CN'
+Represents “Chinese (China)” locale
+
+
+
+
+ZH_HK = 'zh-HK'
+Represents “Chinese (Hong Kong)” locale
+
+
+
+
+get_document_language ( )
+
+
+
+
+
+
+DeletePagesParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params. DeletePagesParams ( page_ranges : PageRanges )
+Bases: PDFServicesJobParams
+Parameters for deleting pages from a pdf using
+DeletePagesJob
+Creates an instance of DeletePagesParams with given PageRanges.
+
+Parameters:
+page_ranges (PageRanges ) – the PageRanges to be used for deleting pages; can not be None.
+
+
+
+
+get_page_ranges ( )
+
+Returns:
+the PageRanges to be used for deleting pages.
+
+Return type:
+PageRanges
+
+
+
+
+
+
+
+
+DocumentMergeParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params. DocumentMergeParams ( json_data_for_merge : Any , * , output_format : OutputFormat = OutputFormat.PDF , fragments : Fragments = None )
+Bases: PDFServicesJobParams
+Parameters for document generation using
+DocumentMergeJob
+Constructs a new DocumentMergeParams instance
+
+Parameters:
+
+json_data_for_merge (Any ) – json to be used in the document merge job; can not be None.
+output_format (OutputFormat ) – output format for the document merge result; (Optional, use key-value)
+fragments (Fragments ) – fragments for document merge job; (Optional, use key-value)
+
+
+Returns:
+DocumentMergeParams
+
+
+
+
+get_fragments ( )
+
+Returns:
+fragments for document merge job
+
+
+
+
+
+
+get_json_data_for_merge ( )
+
+Returns:
+JSON data for the document merge process
+
+
+
+
+
+
+get_output_format ( )
+
+Returns:
+output format for the document merge result
+
+
+
+
+
+
+
+
+Fragments
+
+
+class adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments. Fragments
+Bases: object
+Class for providing support for Fragments. To know more about fragments
+use-case in document generation and document templates, Click Here .
+Constructs a new Fragments instance
+
+
+add_fragment ( fragment )
+To add fragment dictionary into the fragments list.
+
+Parameters:
+fragment – fragment dictionary to be added into the fragments list.
+
+
+
+
+
+
+add_fragments ( fragments : List )
+To add List of fragment dictionaries into the fragments list.
+
+Parameters:
+fragments – fragment dictionary list to be added into the fragments list.
+
+
+
+
+
+
+get_fragments_list ( )
+
+Returns:
+list of fragments.
+
+
+
+
+
+
+
+
+
+PDFElectronicSealParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params. PDFElectronicSealParams ( seal_certificate_credentials : CSCCredentials , seal_field_options : FieldOptions , * , seal_signature_format : SignatureFormat = SignatureFormat.PKCS7 , document_level_permissions : DocumentLevelPermission = DocumentLevelPermission.FORM_FILLING , seal_appearance_options : AppearanceOptions | None = None , tsa_options : TSAOptions | None = None )
+Bases: object
+Parameters for electronically seal PDFs using
+PDFElectronicSealJob .
+Constructs a new PDFElectronicSealParams instance.
+
+Parameters:
+
+seal_certificate_credentials (CSCCredentials ) – CertificateCredentials to be used for applying electronic seal; can not be None.
+seal_field_options (FieldOptions ) – FieldOptions to be used for applying electronic seal; can not be None.
+seal_signature_format (SignatureFormat ) – SignatureFormat to be used for applying electronic seal. (Optional, use key-value)
+document_level_permissions (DocumentLevelPermission ) – Document level permission for changes allowed after sealing. (Optional, use key-value)
+seal_appearance_options (AppearanceOptions ) – AppearanceOptions for the seal. (Optional, use key-value)
+tsa_options (TSAOptions ) – Time stamp authority options. (Optional, use key-value)
+
+
+Returns:
+A new instance of PDFElectronicSealParams
+
+Return type:
+PDFElectronicSealParams
+
+
+
+
+get_seal_appearance_options ( )
+
+Returns:
+AppearanceOptions for the seal.
+
+Return type:
+AppearanceOptions
+
+
+
+
+
+
+get_seal_certificate_credentials ( )
+
+Returns:
+CertificateCredentials to be used for applying electronic seal
+
+Return type:
+CSCCredentials
+
+
+
+
+
+
+get_seal_field_options ( )
+
+Returns:
+FieldOptions to be used for applying electronic seal.
+
+Return type:
+FieldOptions
+
+
+
+
+
+
+get_signature_format ( )
+
+Returns:
+SignatureFormat to be used for applying electronic seal.
+
+Return type:
+SignatureFormat
+
+
+
+
+
+
+
+
+RFC3161TSAOptions
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options. RFC3161TSAOptions ( url : str , * , tsa_basic_auth_credentials : TSABasicAuthCredentials | None = None )
+Bases: TSAOptions
+Parameters specifying RFC3161 compliant time stamp authority options required for
+PDFElectronicSealParams .
+Constructs a new RFC3161TSAOptions instance from url.
+
+Parameters:
+
+url (str ) – url to be used for timestamping, can not be None.
+tsa_basic_auth_credentials (TSABasicAuthCredentials ) – Credentials to be used for timestamping. (Optional, use key-value)
+
+
+
+
+
+get_tsa_basic_auth_credentials ( )
+Returns the intended TSA authorization credentials to be used.
+
+Returns:
+A TSABasicAuthCredentials instance
+
+Return type:
+TSABasicAuthCredentials
+
+
+
+
+
+
+get_url ( )
+Returns the timestamp url to be used.
+
+Returns:
+The timestamp url
+
+Return type:
+str
+
+
+
+
+
+
+
+
+AppearanceItem
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item. AppearanceItem ( value )
+Bases: Enum
+Supported elements to represent electronic seal required for
+AppearanceOptions .
+
+
+DATE = 'DATE'
+Represents the date of applying the electronic seal.
+
+
+
+
+DISTINGUISHED_NAME = 'DISTINGUISHED_NAME'
+Represents the distinguished name information of the certificate.
+
+
+
+
+LABELS = 'LABELS'
+Represents labels for seal information.
+
+
+
+
+NAME = 'NAME'
+Represents the name of the certificate owner.
+
+
+
+
+SEAL_IMAGE = 'SEAL_IMAGE'
+Represents the background image to be used for sealing.
+
+
+
+
+
+
+AppearanceOptions
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options. AppearanceOptions
+Bases: object
+Parameters specifying set of elements (i.e. appearance items) to represent electronic seal required for
+PDFElectronicSealParams .
+
+
+add_item ( appearance_option : AppearanceItem )
+
+Parameters:
+appearance_option (AppearanceItem ) – AppearanceItem to be added to AppearanceOptions, can not be None.
+
+
+
+
+
+
+get_appearance_options ( )
+
+Returns:
+List of Appearance Items
+
+
+
+
+
+
+
+
+CSCAuthContext
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context. CSCAuthContext ( access_token : str , token_type : str = 'Bearer' )
+Bases: object
+Parameters for representing CSC authorization context.
+Constructs a new instance of CSCAuthContext
+
+Parameters:
+
+access_token (str ) – The service access token used to authorize access to the CSC provider hosted APIs.
+Cannot be None.
+token_type (str ) – The type of service access token used to authorize access to the CSC provider hosted APIs.
+Default value is “Bearer”.
+
+
+
+
+
+get_access_token ( )
+
+Returns:
+The service access token.
+
+Return type:
+str
+
+
+
+
+
+
+get_token_type ( )
+
+Returns:
+The type of service access token used.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+CSCCredentials
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials. CSCCredentials ( provider_name : str , credential_id : str , pin : str , csc_auth_context : CSCAuthContext )
+Bases: object
+Parameters for representing the CSC Provider based credentials as a subtype
+Creates an instance of CSCCredentials .
+
+Parameters:
+
+provider_name (str ) – The name of the Trust Service Provider to be used for applying electronic seal.
+Can not be None.
+credential_id (str ) – The digital ID stored with the TSP provider to be used for applying electronic seal.
+Can not be None.
+pin (str ) – The pin associated with the credential ID. Can not be None.
+csc_auth_context (CSCAuthContext ) – The service authorization data required to communicate with the TSP. Can not be None.
+
+
+
+
+
+get_credential_id ( )
+
+Returns:
+The digital ID stored with the TSP provider.
+
+Return type:
+str
+
+
+
+
+
+
+get_csc_auth_context ( )
+
+Returns:
+The service authorization data.
+
+Return type:
+CSCAuthContext
+
+
+
+
+
+
+get_pin ( )
+
+Returns:
+The pin associated with the credential ID.
+
+Return type:
+str
+
+
+
+
+
+
+get_provider_name ( )
+
+Returns:
+The name of the Trust Service Provider.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+DocumentLevelPermission
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission. DocumentLevelPermission ( value )
+Bases: Enum
+A mapping of Document Level Permission used in
+PDFElectronicSealParams .
+
+
+FORM_FILLING = 'FORM_FILLING'
+Represents FORM_FILLING document level permission.
+Allowed changes in output document are filling in forms, instantiating page templates, and performing approval
+signatures.
+
+
+
+
+FORM_FILLING_AND_ANNOTATIONS = 'FORM_FILLING_AND_ANNOTATIONS'
+Represents FORM_FILLING_AND_ANNOTATIONS document level permission.
+In addition to changes allowed in FORM_FILLING, annotation creation, deletion, and modification are also allowed.
+
+
+
+
+NO_CHANGES_ALLOWED = 'NO_CHANGES_ALLOWED'
+Represents NO_CHANGES_ALLOWED document level permission.
+No changes to the output document are permitted.
+
+
+
+
+
+
+FieldLocation
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.field_location. FieldLocation ( left : int , top : int , right : int , bottom : int )
+Bases: object
+Parameters specifying options related to seal field location coordinates required for
+FieldOptions
+
+Parameters:
+
+left (int ) – the left coordinate of field location
+top (int ) – the top coordinate of field location
+right (int ) – the right coordinate of field location
+bottom (int ) – the bottom coordinate of field location
+
+
+
+
+
+get_bottom ( )
+
+Returns:
+the bottom coordinate of field location
+
+Return type:
+int
+
+
+
+
+
+
+get_left ( )
+
+Returns:
+the left coordinate of field location
+
+Return type:
+int
+
+
+
+
+
+
+get_right ( )
+
+Returns:
+the right coordinate of field location
+
+Return type:
+int
+
+
+
+
+
+
+get_top ( )
+
+Returns:
+the top coordinate of field location
+
+Return type:
+int
+
+
+
+
+
+
+
+
+FieldOptions
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.field_options. FieldOptions ( field_name : str , * , field_location : FieldLocation | None = None , page_number : int | None = None , visible : bool | None = True )
+Bases: object
+Parameters specifying options related to the seal field required for
+PDFElectronicSealParams .
+Constructs a new instance of FieldOptions .
+
+Parameters:
+
+field_name (str ) – The name of the field to be used for applying the electronic seal. If signature field with
+this field name already exist, that field will be used. If it does not exist, a signature field with this
+field name will be created. Can not be None.
+field_location (FieldLocation ) – A FieldLocation instance specifying coordinates for the electronic seal. The location
+is only required for visible signatures if the signature field does not already exist in the PDF document.
+If location is provided along with the existing signature field then it is ignored. (Optional, use key-value)
+page_number (int ) – The page number to which the signature field should be attached. Page numbers are 1-based.
+The page number is only required for visible signatures if the signature field does not already exist in
+the PDF document. If page number is provided along with the existing signature field then the page number
+should be same on which signature field is present in the document, else an error is thrown.
+(Optional, use key-value)
+visible (bool ) – The intended visibility flag for the electronic seal. Default value is true.
+(Optional, use key-value)
+
+
+
+
+
+get_field_location ( )
+
+Returns:
+Field Location
+
+Return type:
+FieldLocation
+
+
+
+
+
+
+get_field_name ( )
+
+Returns:
+Field Name
+
+Return type:
+str
+
+
+
+
+
+
+get_page_number ( )
+
+Returns:
+Page Number
+
+Return type:
+int
+
+
+
+
+
+
+get_visible ( )
+
+Returns:
+Visibility flag for the electronic seal
+
+Return type:
+bool
+
+
+
+
+
+
+
+
+
+TSABasicAuthCredentials
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials. TSABasicAuthCredentials ( username : str , password : str )
+Bases: object
+Parameters specifying options related to the time stamp authority credentials required for
+RFC3161TSAOptions
+Constructs a TSABasicAuthCredentials instance.
+
+Parameters:
+
+
+
+
+
+get_password ( )
+Returns the intended password to be used for timestamping.
+
+Returns:
+The password
+
+Return type:
+str
+
+
+
+
+
+
+get_username ( )
+Returns the intended username to be used for timestamping.
+
+Returns:
+The username
+
+Return type:
+str
+
+
+
+
+
+
+
+
+
+
+TSAOptions
+
+
+class adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options. TSAOptions
+Bases: ABC
+This abstract class represents the basic contract for the timestamp authority options to be used with
+PDFElectronicSealParams .
+
+
+
+
+ExportPDFParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params. ExportPDFParams ( target_format : ExportPDFTargetFormat , * , ocr_lang : ExportOCRLocale = ExportOCRLocale.EN_US )
+Bases: PDFServicesJobParams
+Parameters for exporting a source PDF file to a supported format using
+ExportPDFJob
+Constructs a new ExportPDFParams instance.
+
+Parameters:
+
+target_format (ExportPDFTargetFormat ) – Target format to which the source PDF file will be exported; can not be None
+ocr_lang (ExportOCRLocale ) – Sets OCR Locale level to be used for Export PDF. (Optional, use key-value)
+
+
+
+
+
+get_ocr_lang ( )
+
+Returns:
+Returns the OCR Locale to be used for Export PDF.
+
+Return type:
+ExportOCRLocale
+
+
+
+
+
+
+get_target_format ( )
+
+Returns:
+Returns the target format to which the source PDF file will be exported.
+
+Return type:
+ExportPDFTargetFormat
+
+
+
+
+
+
+
+
+ExportOCRLocale
+
+
+class adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale. ExportOCRLocale ( value )
+Bases: Enum
+Enum values representing different locales
+Constructs a locale from a language code
+
+Parameters:
+locale – language code
+
+
+
+
+BG_BG = 'bg-BG'
+Represents “Bulgarian (Bulgaria)” locale
+
+
+
+
+CA_CA = 'ca-CA'
+Represents “Catalan (Canada)” locale
+
+
+
+
+CS_CZ = 'cs-CZ'
+Represents “Czech (Czech Republic)” locale
+
+
+
+
+DA_DK = 'da-DK'
+Represents “Danish (Denmark)” locale
+
+
+
+
+DE_CH = 'de-CH'
+Represents “German (Switzerland)” locale
+
+
+
+
+DE_DE = 'de-DE'
+Represents “German (Germany)” locale
+
+
+
+
+EL_GR = 'el-GR'
+Represents “Greek (Greece)” locale
+
+
+
+
+EN_GB = 'en-GB'
+Represents “English (United Kingdom)” locale
+
+
+
+
+EN_US = 'en-US'
+Represents “English (United States)” locale.
+
+
+
+
+ES_ES = 'es-ES'
+Represents “Spanish (Spain)” locale
+
+
+
+
+ET_EE = 'et-EE'
+Represents “Estonian (Estonia)” locale
+
+
+
+
+EU_ES = 'eu-ES'
+Represents “Basque (Spain)” locale
+
+
+
+
+FI_FI = 'fi-FI'
+Represents “Finnish (Finland)” locale
+
+
+
+
+FR_FR = 'fr-FR'
+Represents “French (France)” locale
+
+
+
+
+GL_ES = 'gl-ES'
+Represents “Galician (Spain)” locale
+
+
+
+
+HR_HR = 'hr-HR'
+Represents “Croatian (Croatia)” locale
+
+
+
+
+HU_HU = 'hu-HU'
+Represents “Hungarian (Hungary)” locale
+
+
+
+
+IT_IT = 'it-IT'
+Represents “Italian (Italy)” locale
+
+
+
+
+IW_IL = 'iw-IL'
+Represents “Hebrew (Israel)” locale
+
+
+
+
+JA_JP = 'ja-JP'
+Represents “Japanese (Japan)” locale
+
+
+
+
+KO_KR = 'ko-KR'
+Represents “Korean (Korea)” locale
+
+
+
+
+LT_LT = 'lt-LT'
+Represents “Lithuanian (Lithuania)” locale
+
+
+
+
+LV_LV = 'lv-LV'
+Represents “Latvian (Latvia)” locale
+
+
+
+
+MK_MK = 'mk-MK'
+Represents “Macedonian (Macedonia)” locale
+
+
+
+
+MT_MT = 'mt-MT'
+Represents “Maltese (Malta)” locale
+
+
+
+
+NB_NO = 'nb-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+NL_NL = 'nl-NL'
+Represents “Dutch (Netherlands)” locale
+
+
+
+
+NN_NO = 'nn-NO'
+Represents “Norwegian Nynorsk (Norway)” locale
+
+
+
+
+PL_PL = 'pl-PL'
+Represents “Polish (Poland)” locale
+
+
+
+
+PT_BR = 'pt-BR'
+Represents “Portuguese (Brazil)” locale
+
+
+
+
+PT_PT = 'pt-PT'
+Represents “European Portuguese” locale
+
+
+
+
+RO_RO = 'ro-RO'
+Represents “Romanian (Romania)” locale
+
+
+
+
+RU_RU = 'ru-RU'
+Represents “Russian (Russia)” locale
+
+
+
+
+SK_SK = 'sk-SK'
+Represents “Slovak (Slovakia)” locale
+
+
+
+
+SL_SI = 'sl-SI'
+Represents “Slovenian (Slovenia)” locale
+
+
+
+
+SR_SR = 'sr-SR'
+Represents “Serbian (Serbia)” locale
+
+
+
+
+SV_SE = 'sv-SE'
+Represents “Swedish (Sweden)” locale
+
+
+
+
+TR_TR = 'tr-TR'
+Represents “Turkish (Turkey)” locale
+
+
+
+
+UK_UA = 'uk-UA'
+Represents “Ukrainian (Ukraine)” locale
+
+
+
+
+ZH_CN = 'zh-CN'
+Represents “Chinese (China)” locale
+
+
+
+
+ZH_HANT = 'zh-Hant'
+Represents “Chinese (traditional)” locale
+
+
+
+
+get_export_ocr_locale ( )
+
+Returns:
+Language code of the ExportOCRLocale
+
+
+
+
+
+
+
+
+
+
+
+
+
+HTMLtoPDFParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params. HTMLtoPDFParams ( * , json: str = '{}' , include_header_footer: bool = False , page_layout: ~adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout.PageLayout = <adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout.PageLayout object> )
+Bases: PDFServicesJobParams
+Parameters for converting HTML to PDF using
+HTMLtoPDFJob
+Constructs a new HTMLtoPDFParams instance.
+
+Parameters:
+
+json (str ) –
Sets the data to be used by the javascript in the source html file to manipulate the HTML DOM
+before it gets converted to PDF.
+This mechanism is intended to be used to supply data that might otherwise be retrieved using ajax requests.
+To make use of this mechanism, the source html file must include a script element such as:
+<script src='./json.js' type='text/javascript'></script>
+where json.js refers to the JSON data,</pre>
+And also Requires javascript in the source html file to make use of this JSON data to manipulate the HTML
+DOM. (Optional, use key-value)
+
+include_header_footer (bool ) –
includeHeaderFooter parameter. If true, default header and footer will be included
+in resulting PDF.
+
+
+(Optional, use key-value)
+
+page_layout (PageLayout ) – Intended page layout of the resulting PDF file. (Optional, use key-value)
+
+
+
+
+
+
+Returns:
+Returns true if default header and footer will be included in the resulting PDF file.
+- The default header consists of the date and the document title.
+- The default footer consists of the file name and page number.
+
+Return type:
+bool
+
+
+
+
+
+
+get_json ( )
+
+Returns:
+
Returns JSON data that will be used to manipulate HTML DOM before it is converted into PDF file.
+This mechanism is intended to be used to supply data that might otherwise be retrieved using ajax requests.
+To make use of this mechanism, the source html file must include a script element such as:
+<script src='./json.js' type='text/javascript'></script>
+where json.js refers to the JSON data,</pre>
+And also Requires javascript in the source html file to make use of this JSON data to manipulate the HTML
+DOM.
+
+
+Return type:
+str
+
+
+
+
+
+
+get_page_layout ( )
+
+Returns:
+Intended page layout of the resulting PDF file.
+
+Return type:
+bool
+
+
+
+
+
+
+
+
+PageLayout
+
+
+class adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout. PageLayout ( page_height : float = 11.0 , page_width : float = 8.5 )
+Bases: object
+Represents a page layout with dimensions in inches.
+Constructor to initialize a default page layout.
+The default layout sets the height as 11 inches and width as 8.5 inches.
+
+Parameters:
+
+page_height (float ) – Height of the page in inches, can not be None
+page_width (float ) – Width of the page in inches
+
+
+
+
+
+DEFAULT_PAGE_HEIGHT = 11.0
+Default value of the page height (in inches)
+
+
+
+
+DEFAULT_PAGE_WIDTH = 8.5
+Default value of the page width (in inches)
+
+
+
+
+
+
+InsertPagesParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params. InsertPagesParams ( base_asset : Asset )
+Bases: PDFServicesJobParams
+Parameters for inserting pages in a PDF using
+InsertPagesJob
+Constructs a new InsertPagesParams instance.
+
+Parameters:
+base_asset (Asset ) – Base asset into which the pages are to be inserted.
+
+
+
+
+add_pages_to_insert ( input_asset: ~adobe.pdfservices.operation.io.asset.Asset , base_page: int , * , page_ranges: ~adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges = <adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges object> )
+Adds the specified pages of the input PDF file to be inserted at the specified page of the base PDF file
+This method can be invoked multiple times with the same or different input PDF files.
+All the pages of the input PDF file will be inserted at the specified page of the base PDF file if page_ranges
+is not specified.
+
+Parameters:
+
+input_asset (Asset ) – A PDF file for insertion; can not be None.
+base_page (int ) – Page of the base PDF file; can not be None.
+page_ranges (PageRanges ) – Page ranges of the input PDF file. (Optional, use key-value)
+
+
+
+
+
+
+
+get_assets_to_insert ( )
+
+Returns:
+Returns the mapping of base Asset’s page number and Asset to be inserted along with PageRanges .
+
+Return type:
+dict
+
+
+
+
+
+
+get_base_asset ( )
+
+Returns:
+base PDF Asset to which pages will be inserted.
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+OCRParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params. OCRParams ( * , ocr_locale : OCRSupportedLocale = OCRSupportedLocale.EN_US , ocr_type : OCRSupportedType = OCRSupportedType.SEARCHABLE_IMAGE )
+Bases: PDFServicesJobParams
+Parameters for converting PDF to a searchable PDF using
+OCRPDFJob<adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job.OCRPDFJob
+Constructs a new OCRParams instance.
+
+Parameters:
+
+
+
+
+
+get_ocr_locale ( )
+
+Returns:
+OCRSupportedLocale to be used for OCR.
+
+Return type:
+OCRSupportedLocale
+
+
+
+
+
+
+get_ocr_type ( )
+
+Returns:
+OCRSupportedType to be used for OCR.
+
+Return type:
+OCRSupportedType
+
+
+
+
+
+
+
+
+OCRSupportedLocale
+
+
+class adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale. OCRSupportedLocale ( value )
+Bases: Enum
+Supported locales for OCRJob
+Construct a locale from a language code.
+
+Parameters:
+locale – language code
+
+
+
+
+BG_BG = 'bg-BG'
+Represents “Bulgarian (Bulgaria)” locale
+
+
+
+
+CA_CA = 'ca-CA'
+Represents “Catalan (Canada)” locale
+
+
+
+
+CS_CZ = 'cs-CZ'
+Represents “Czech (Czech Republic)” locale
+
+
+
+
+DA_DK = 'da-DK'
+Represents “Danish (Denmark)” locale
+
+
+
+
+DE_CH = 'de-CH'
+Represents “German (Switzerland)” locale
+
+
+
+
+DE_DE = 'de-DE'
+Represents “German (Germany)” locale
+
+
+
+
+EL_GR = 'el-GR'
+Represents “Greek (Greece)” locale
+
+
+
+
+EN_GB = 'en-GB'
+Represents “English (United Kingdom)” locale
+
+
+
+
+EN_US = 'en-US'
+Represents “English (United States)” locale
+
+
+
+
+ES_ES = 'es-ES'
+Represents “Spanish (Spain)” locale
+
+
+
+
+ET_EE = 'et-EE'
+Represents “Estonian (Estonia)” locale
+
+
+
+
+FI_FI = 'fi-FI'
+Represents “Finnish (Finland)” locale
+
+
+
+
+FR_FR = 'fr-FR'
+Represents “French (France)” locale
+
+
+
+
+HR_HR = 'hr-HR'
+Represents “Croatian (Croatia)” locale
+
+
+
+
+HU_HU = 'hu-HU'
+Represents “Hungarian (Hungary)” locale
+
+
+
+
+IT_IT = 'it-IT'
+Represents “Italian (Italy)” locale
+
+
+
+
+IW_IL = 'iw-IL'
+Represents “Hebrew (Israel)” locale
+
+
+
+
+JA_JP = 'ja-JP'
+Represents “Japanese (Japan)” locale
+
+
+
+
+KO_KR = 'ko-KR'
+Represents “Korean (Korea)” locale
+
+
+
+
+LT_LT = 'lt-LT'
+Represents “Lithuanian (Lithuania)” locale
+
+
+
+
+LV_LV = 'lv-LV'
+Represents “Latvian (Latvia)” locale
+
+
+
+
+MK_MK = 'mk-MK'
+Represents “Macedonian (Macedonia)” locale
+
+
+
+
+MT_MT = 'mt-MT'
+Represents “Maltese (Malta)” locale
+
+
+
+
+NB_NO = 'nb-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+NL_NL = 'nl-NL'
+Represents “Dutch (Netherlands)” locale
+
+
+
+
+NO_NO = 'no-NO'
+Represents “Norwegian (Norway)” locale
+
+
+
+
+PL_PL = 'pl-PL'
+Represents “Polish (Poland)” locale
+
+
+
+
+PT_BR = 'pt-BR'
+Represents “Portuguese (Brazil)” locale
+
+
+
+
+RO_RO = 'ro-RO'
+Represents “Romanian (Romania)” locale
+
+
+
+
+RU_RU = 'ru-RU'
+Represents “Russian (Russia)” locale
+
+
+
+
+SK_SK = 'sk-SK'
+Represents “Slovak (Slovakia)” locale
+
+
+
+
+SL_SI = 'sl-SI'
+Represents “Slovenian (Slovenia)” locale
+
+
+
+
+SR_SR = 'sr-SR'
+Represents “Serbian (Serbia)” locale
+
+
+
+
+SV_SE = 'sv-SE'
+Represents “Swedish (Sweden)” locale
+
+
+
+
+TR_TR = 'tr-TR'
+Represents “Turkish (Turkey)” locale
+
+
+
+
+UK_UA = 'uk-UA'
+Represents “Ukrainian (Ukraine)” locale
+
+
+
+
+ZH_CN = 'zh-CN'
+Represents “Chinese (China)” locale
+
+
+
+
+ZH_HK = 'zh-HK'
+Represents “Chinese (Hong Kong)” locale
+
+
+
+
+get_locale ( )
+Returns the language code of this OCRSupportedLocale.
+
+Returns:
+language code of the locale
+
+
+
+
+
+
+
+
+OCRSupportedType
+
+
+class adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type. OCRSupportedType ( value )
+Bases: Enum
+Supported OCR types for OCRJob
+Constructs OCR Type from its string representation.
+
+Parameters:
+ocr_type – String representation
+
+
+
+
+SEARCHABLE_IMAGE = 'searchable_image'
+
+
+
+
+SEARCHABLE_IMAGE_EXACT = 'searchable_image_exact'
+
+
+
+
+get_type ( )
+Returns the string representation of this OCRSupportedType.
+
+Returns:
+String representation of this OCRSupportedType
+
+
+
+
+
+
+
+
+PDFPropertiesParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params. PDFPropertiesParams ( * , include_page_level_properties : bool = False )
+Bases: PDFServicesJobParams
+Parameters for getting properties of a PDF using
+PDFPropertiesJob
+Constructs a new PDFPropertiesParams .
+
+Parameters:
+include_page_level_properties (bool ) – If true, the page level properties of the input PDF will be included in
+the resulting JSON file or JSON Object. (Optional, use key-value)
+
+
+
+
+get_include_page_level_properties ( )
+
+Returns:
+Page level properties
+
+Return type:
+bool
+
+
+
+
+
+
+
+
+ExportPDFtoImagesParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params. ExportPDFtoImagesParams ( export_pdf_to_images_target_format : ExportPDFToImagesTargetFormat , export_pdf_to_images_output_type : ExportPDFToImagesOutputType )
+Bases: PDFServicesJobParams
+Parameters for exporting a source PDF file to images using
+ExportPDFToImagesJob .
+Constructs a new ExportPDFtoImagesParams instance.
+
+Parameters:
+
+export_pdf_to_images_target_format (ExportPDFToImagesTargetFormat ) – ExportPDFToImagesTargetFormat to which the source PDF file will be exported, can not be None.
+export_pdf_to_images_output_type (ExportPDFToImagesOutputType ) – ExportPDFToImagesOutputType to be used for Export PDF to Images, can not be None.
+
+
+
+
+
+get_export_pdf_to_images_output_type ( )
+
+Returns:
+ExportPDFToImagesOutputType to be used for Export PDF to Images.
+
+Return type:
+ExportPDFToImagesOutputType
+
+
+
+
+
+
+get_export_pdf_to_images_target_format ( )
+
+Returns:
+ExportPDFToImagesTargetFormat to which the source PDF file will be exported.
+
+Return type:
+ExportPDFToImagesTargetFormat
+
+
+
+
+
+
+
+
+ExportPDFToImagesOutputType
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type. ExportPDFToImagesOutputType ( value )
+Bases: Enum
+List of supported outputTypes for ExportPDFToImagesJob .
+
+
+LIST_OF_PAGE_IMAGES = 'listOfPageImages'
+Represents List Output type.
+
+
+
+
+ZIP_OF_PAGE_IMAGES = 'zipOfPageImages'
+Represents Zip Output type.
+
+
+
+
+get_output_type ( )
+
+Returns:
+output type.
+
+
+
+
+
+
+
+
+
+ProtectPDFParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params. ProtectPDFParams
+Bases: PDFServicesJobParams , ABC
+Marker base class for ProtectPDFJob
+params.
+
+
+
+
+ContentEncryption
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption. ContentEncryption ( value )
+Bases: Enum
+Supported types of content to encrypt for
+ProtectPDFJob
+
+
+ALL_CONTENT = 'ALL_CONTENT'
+Encrypts all the content of the PDF file
+
+
+
+
+ALL_CONTENT_EXCEPT_METADATA = 'ALL_CONTENT_EXCEPT_METADATA'
+Encrypts all the content except the metadata of the PDF file
+
+
+
+
+ONLY_EMBEDDED_FILES = 'ONLY_EMBEDDED_FILES'
+Encrypts only embedded files
+
+
+
+
+
+
+EncryptionAlgorithm
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm. EncryptionAlgorithm ( value )
+Bases: Enum
+Supported encryption algorithms for
+ProtectPDFJob
+
+
+AES_128 = 'AES_128'
+Represents AES-128 encryption algorithm
+
+
+
+
+AES_256 = 'AES_256'
+Represents AES-256 encryption algorithm
+
+
+
+
+
+
+PasswordProtectParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params. PasswordProtectParams ( encryption_algorithm : EncryptionAlgorithm , * , content_encryption : ContentEncryption = ContentEncryption.ALL_CONTENT , permissions : Permissions | None = None , user_password : str | None = None , owner_password : str | None = None )
+Bases: ProtectPDFParams
+Parameters for securing PDF file with passwords and document permissions using
+ProtectPDFJob
+Constructs a new PasswordProtectParams instance.
+
+Parameters:
+
+encryption_algorithm (EncryptionAlgorithm ) – Sets the intended encryption algorithm required for encrypting the PDF file. For
+AES-128 encryption, the password supports LATIN-I characters only. For AES-256 encryption, passwords supports
+Unicode character set.
+content_encryption (ContentEncryption ) – Type of content to encrypt in the PDF file. (Optional, use key-value)
+permissions (Permissions ) – Sets the intended permissions for the encrypted PDF file. This includes permissions to allow
+printing, editing and content copying in the PDF document. Permissions can only be used in case the owner
+password is set. (Optional, use key-value)
+user_password (str ) – User password required for opening the encrypted PDF file. Allowed maximum length
+for the user password is 128 bytes. (Optional, use key-value)
+owner_password (str ) – Owner password required to control access permissions in the encrypted PDF file. This
+password can also be used to open/view the encrypted PDF file. Allowed maximum length for the owner
+password is 128 bytes. (Optional, use key-value)
+
+
+
+
+
+get_content_encryption ( )
+
+Returns:
+ContentEncryption for the resulting encrypted PDF file as a string.
+
+Return type:
+ContentEncryption
+
+
+
+
+
+
+get_encryption_algorithm ( )
+
+Returns:
+EncryptionAlgorithm of the resulting encrypted PDF file.
+
+Return type:
+EncryptionAlgorithm
+
+
+
+
+
+
+get_owner_password ( )
+
+Returns:
+the intended owner password of the resulting encrypted PDF file.
+
+Return type:
+str
+
+
+
+
+
+
+get_permissions ( )
+
+Returns:
+Permissions for the resulting encrypted PDF file.
+
+Return type:
+Permissions
+
+
+
+
+
+
+get_user_password ( )
+
+Returns:
+the intended user password of the resulting encrypted PDF file.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+Permission
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission. Permission ( value )
+Bases: Enum
+Document Permissions for
+ProtectPDFJob
+
+
+COPY_CONTENT = 'COPY_CONTENT'
+Enables copying of content from the PDF document
+
+
+
+
+EDIT_ANNOTATIONS = 'EDIT_ANNOTATIONS'
+Enables additions of comments, digital signatures and filling in of forms in a PDF document
+
+
+
+
+EDIT_CONTENT = 'EDIT_CONTENT'
+Enables all the editing permissions in the PDF document except commenting and page extraction
+
+
+
+
+EDIT_DOCUMENT_ASSEMBLY = 'EDIT_DOCUMENT_ASSEMBLY'
+Enables insertion, deletion and rotation of pages in a PDF document
+
+
+
+
+EDIT_FILL_AND_SIGN_FORM_FIELDS = 'EDIT_FILL_AND_SIGN_FORM_FIELDS'
+Enables filling in of forms, digital signature and creation of template pages in a PDF document
+
+
+
+
+PRINT_HIGH_QUALITY = 'PRINT_HIGH_QUALITY'
+Enables high quality printing of the PDF document
+
+
+
+
+PRINT_LOW_QUALITY = 'PRINT_LOW_QUALITY'
+Enables low quality printing of the PDF document
+
+
+
+
+
+
+Permissions
+
+
+class adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions. Permissions
+Bases: object
+Document Permissions for
+ProtectPDFJob
+Constructs a new Permissions instance.
+
+
+add_permission ( permission : Permission )
+Adds a document Permission
+in the permissions set.
+
+Parameters:
+permission (Permission ) – A document permission; can not be None.
+
+
+
+
+
+
+get_values ( )
+
+Returns:
+the intended set of document permissions values.
+
+Return type:
+list
+
+
+
+
+
+
+
+
+RemoveProtectionParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params. RemoveProtectionParams ( password : str )
+Bases: PDFServicesJobParams
+Parameters for removing protection from pdf using
+RemoveProtectionJob
+
+Constructs a new RemoveProtectionParams instance.
+
+
+Parameters:
+password (str ) – the password to be used for removing protection from pdf.
+
+Returns:
+A new instance of RemoveProtectionParams
+
+Return type:
+RemoveProtectionParams
+
+
+
+
+get_password ( )
+
+Returns:
+Returns the password to be used for removing protection from pdf.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+ReorderPagesParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params. ReorderPagesParams ( asset : Asset , page_ranges : PageRanges )
+Bases: PDFServicesJobParams
+Parameters for reordering a pdf using
+ReorderPagesJob
+Constructs a new ReorderPagesParams instance.
+
+Parameters:
+
+asset (Asset ) – Asset to be reordered, can not be None.
+page_ranges (PageRanges ) – The page ranges to be used for reordering pages, can not be None.
+
+
+Returns:
+A new instance of ReorderPagesParams
+
+Return type:
+ReorderPagesParams
+
+
+
+
+get_asset ( )
+
+Returns:
+Asset to be reordered.
+
+Return type:
+Asset
+
+
+
+
+
+
+get_page_ranges ( )
+
+Returns:
+PageRanges to be used for reordering pages.
+
+Return type:
+PageRanges
+
+
+
+
+
+
+
+
+ReplacePagesParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params. ReplacePagesParams ( base_asset : Asset )
+Bases: PDFServicesJobParams
+Parameters for replacing pages of a pdf using
+ReplacePagesJob
+Constructs a new ReplacePagesParams instance.
+
+Parameters:
+base_asset (Asset ) – The base asset to be used for replacing pages, can not be None.
+
+Returns:
+A new instance of ReplacePagesParams
+
+Return type:
+ReplacePagesParams
+
+
+
+
+add_pages_to_replace ( input_asset: ~adobe.pdfservices.operation.io.asset.Asset , base_page: int , * , page_ranges: ~adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges = <adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges object> )
+
+Parameters:
+
+input_asset (Asset ) – a PDF file for insertion
+page_ranges (PageRanges ) – page ranges of the input PDF file
+base_page (int ) – page of the base PDF file
+
+
+
+
+
+
+
+get_assets_to_replace ( )
+
+Returns:
+Returns the mapping of base Asset’s page number and Asset to be replaced along
+with PageRanges.
+
+
+
+
+
+
+get_base_asset ( )
+
+Returns:
+Returns the base PDF Asset to which pages will be replaced.
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+RotatePagesParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params. RotatePagesParams
+Bases: PDFServicesJobParams
+Parameters to rotate pages of a pdf using
+RotatePagesJob<adobe.pdfservices.operation.pdfjobs.jobs.rotate_pages_job.>RotatePagesJob
+
+
+add_angle_to_rotate ( angle : Angle )
+Sets the Angle to be used for rotating pages.
+
+Parameters:
+angle (Angle ) – Angle; can not be None.
+
+
+
+
+
+
+add_angle_to_rotate_for_page_ranges ( angle : Angle , page_ranges : PageRanges )
+Sets the Angle to be used for rotating pages specified in PageRanges.
+
+Parameters:
+
+
+
+
+
+
+
+get_page_actions ( )
+
+Returns:
+PageActions to be used for rotating pages.
+
+Return type:
+PageActions
+
+
+
+
+
+
+
+
+Angle
+
+
+class adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle. Angle ( value )
+Bases: Enum
+Represents angles in degrees.
+
+
+ANGLE_180 = 180
+Represents 180 degrees clockwise rotation
+
+
+
+
+ANGLE_270 = 270
+Represents 270 degrees clockwise rotation
+
+
+
+
+ANGLE_90 = 90
+Represents 90 degrees clockwise rotation
+
+
+
+
+
+
+SplitPDFParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params. SplitPDFParams ( * , page_ranges : PageRanges | None = None , page_count : int | None = None , file_count : int | None = None )
+Bases: PDFServicesJobParams
+Parameters for splitting a pdf using
+SplitPDFJob
+Constructs a new SplitPDFParams instance.
+
+Parameters:
+
+page_ranges (PageRanges ) – see PageRanges .
+(Optional, use key-value)
+page_count (int ) – The page count to be used for splitting pages. (Optional, use key-value)
+file_count (int ) – The file count to be used for splitting pages. (Optional, use key-value)
+
+
+Returns:
+A new instance of SplitPDFParams
+
+Return type:
+SplitPDFParams
+
+
+
+
+get_file_count ( )
+
+Returns:
+Returns the file count to be used for splitting pages.
+
+Return type:
+int
+
+
+
+
+
+
+get_page_count ( )
+
+Returns:
+Returns the page count to be used for splitting pages.
+
+Return type:
+int
+
+
+
+
+
+
+get_page_ranges ( )
+
+Returns:
+PageRanges to be used for splitting pages.
+
+Return type:
+PageRanges
+
+
+
+
+
+
+
+
+
+PDFServicesJobParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params. PDFServicesJobParams
+Bases: ABC
+Represents the basic contract for the params to be used in
+PDFServicesJob
+
+
+
+
+PDFWatermarkParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params. PDFWatermarkParams ( * , page_ranges: ~adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges | None = None , watermark_appearance: ~adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance.WatermarkAppearance | None = <class 'adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance.WatermarkAppearance'> )
+Bases: PDFServicesJobParams
+Parameters to Watermark pdf using
+PDFWatermarkJob .
+Constructs a new PDFWatermarkParams instance.
+
+Parameters:
+
+page_ranges (PageRanges ) – see PageRanges .
+(Optional, use key-value)
+WatermarkAppearance (WatermarkAppearance ) – WatermarkAppearance; Specifies the appearance parameters for watermark
+(Optional, use key-value)
+
+
+Returns:
+A new instance of PDFWatermarkParams
+
+Return type:
+PDFWatermarkParams
+
+
+
+
+get_page_ranges ( )
+
+Returns:
+Specifies the page ranges on which watermark has to be applied in the input PDF file.
+
+Return type:
+PageRanges
+
+
+
+
+
+
+get_watermark_appearance ( )
+
+Parameters:
+WatermarkAppearance (WatermarkAppearance ) – WatermarkAppearance; Specifies the appearance parameters for watermark
+(Optional, use key-value)
+
+
+
+
+
+
+
+
+WatermarkAppearance
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance. WatermarkAppearance ( * , appear_on_foreground : bool | None = True , opacity : int | None = 100 )
+Bases: object
+Parameters to Watermark pdf using
+PDFWatermarkJob .
+Constructs a new WatermarkAppearance instance.
+
+Parameters:
+
+appear_on_foreground (boolean ) – Placement of watermark on the page. Watermark will be either foreground or background on the page. Default is foreground. (Optional, use key-value)
+opacity – opacity; Percentage value specifying watermark opacity. Specified as an Integer value from 0 to 100. (Optional, use key-value)
+
+
+Returns:
+A new instance of PDFWatermarkParams
+
+Return type:
+PDFWatermarkParams
+
+
+
+
+get_appear_on_foreground ( )
+
+Returns:
+Placement of watermark on the page. Watermark will be either foreground or background on the page. Default is foreground.
+
+Return type:
+boolean
+
+
+
+
+
+
+get_opacity ( )
+
+Returns:
+Percentage value specifying watermark opacity. Specified as an Integer value from 0 to 100 in SDK docs for opacity
+
+Return type:
+number
+
+
+
+
+
+
+
+
+PDFAccessibilityCheckerParams
+
+
+class adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params. PDFAccessibilityCheckerParams ( * , page_start : int | None = None , page_end : int | None = None )
+Bases: PDFServicesJobParams
+Parameters for Accessibility Checker PDFs using
+PDFAccessibilityCheckerJob .
+Constructs a new PDFAccessibilityCheckerParams instance.
+
+Parameters:
+
+
+
+
+
+get_page_end ( )
+
+Returns:
+return the end page number.
+
+Return type:
+int
+
+
+
+
+
+
+get_page_start ( )
+
+Returns:
+return the start page number.
+
+Return type:
+int
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/reference/pdfjobs/result.html b/docs/apidocs/4.2.0/reference/pdfjobs/result.html
new file mode 100644
index 0000000..3e19d02
--- /dev/null
+++ b/docs/apidocs/4.2.0/reference/pdfjobs/result.html
@@ -0,0 +1,2209 @@
+
+
+
+
+
+
+
+
+
Result — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+Result
+
+
+
+AutotagPDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result. AutotagPDFResult ( tagged_pdf : Asset , report : Asset , resource : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+AutotagPDFJob .
+Constructs a new AutotagPDFResult instance with the tagged PDF asset and report asset.
+
+Parameters:
+
+tagged_pdf (Asset ) – tagged PDF asset
+report (Asset ) – report asset
+resource (Asset ) – resource asset
+
+
+
+
+
+get_report ( )
+
+Returns:
+Returns report asset, if an internal asset was used as input PDF.
+
+Return type:
+Asset
+
+
+
+
+
+
+get_resource ( )
+
+Returns:
+The zipped asset associated with the
+AutotagPDFJob result,
+if an external asset was used as input PDF.
+
+Return type:
+Asset
+
+
+
+
+
+
+get_tagged_pdf ( )
+
+Returns:
+Returns tagged PDF asset, if an internal asset was used as input PDF.
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+CombinePDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result. CombinePDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+CombinePDFJob .
+Constructs a new CombinePDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+CompressPDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result. CompressPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+CompressPDFJob
+Constructs a new CompressPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+CreatePDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.create_pdf_result. CreatePDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+CreatePDFJob .
+Constructs a new CreatePDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+DeletePagesResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.delete_pages_result. DeletePagesResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+DeletePagesJob
+Constructs a new DeletePagesResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+DocumentMergeResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.document_merge_result. DocumentMergePDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+DocumentMergeJob
+Constructs a new DocumentMergePDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+ESealPDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result. ESealPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+PDFElectronicSealJob .
+Constructs a new ESealPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+ExportPDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.export_pdf_result. ExportPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+ExportPDFJob
+Constructs a new ExportPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+ExportPDFtoImagesResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result. ExportPDFtoImagesResult ( assets : [ ] )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+ExportPDFToImagesJob .
+Constructs a new ExportPDFToImagesResult instance
+
+Parameters:
+assets (list ) – List of result assets
+
+
+
+
+get_assets ( )
+
+Returns:
+the list of result assets
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+
+HTMLtoPDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.html_to_pdf_result. HTMLtoPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+HTMLtoPDFJob
+Constructs a new HTMLtoPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+InsertPagesResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.insert_pages_result. InsertPagesResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+InsertPagesJob
+Constructs a new InsertPagesResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+LinearizePDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.linearize_pdf_result. LinearizePDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+LinearizePDFJob
+Constructs a new LinearizePDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+OCRPDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.ocr_pdf_result. OCRPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+OCRPDFJob<adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job.OCRPDFJob .
+Constructs a new OCRPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+PDFPropertiesResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result. PDFPropertiesResult ( pdf_properties_dict : str )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+PDFPropertiesJob .
+Constructs a new PDFPropertiesResult instance with PDF Properties JSON string.
+
+Parameters:
+pdf_properties_dict (str ) – PDF Properties JSON String
+
+
+
+
+get_pdf_properties_dict ( )
+
+Returns:
+Returns PDF Properties JSON string.
+
+Return type:
+string
+
+
+
+
+
+
+
+
+ProtectPDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result. ProtectPDFResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+ProtectPDFJob .
+Constructs a new ProtectPDFResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+RemoveProtectionResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.remove_protection_result. RemoveProtectionResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+RemoveProtectionJob
+Constructs a new RemoveProtectionResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+ReorderPagesResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result. ReorderPagesResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+ReorderPagesJob .
+Constructs a new ReorderPagesResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+ReplacePagesResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.replace_page_result. ReplacePagesResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+ReplacePagesJob
+Constructs a new ReplacePagesResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+RotatePagesResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.rotate_pages_result. RotatePagesResult ( asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+RotatePagesJob .
+Constructs a new RotatePagesResult instance.
+
+Parameters:
+asset (Asset ) – result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+the result Asset
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+SplitPDFResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.split_pdf_result. SplitPDFResult ( assets : [ ] , asset : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+SplitPDFJob .
+Constructs a new SplitPDFResult instance
+
+Parameters:
+
+
+
+
+
+get_asset ( )
+
+Returns:
+The zipped asset associated with the
+SplitPDFJob result, if an
+external asset was used as input PDF.
+
+Return type:
+Asset
+
+
+
+
+
+
+get_assets ( )
+
+Returns:
+Returns the list of result assets, if an internal asset was used as input PDF.
+
+Return type:
+list
+
+
+
+
+
+
+
+
+PDFServicesJobResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.pdf_services_job_result. PDFServicesJobResult
+Bases: ABC
+This is an abstract class that represents the PDFServicesJob
+PDFServicesJob result.
+It will encapsulate the result of
+PDFServicesJob
+
+
+
+
+PDFWatermarkResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.pdf_watermark_result. PDFWatermarkResult ( pdf_watermark : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+PDFWatermarkJob .
+Constructs a new PDFWatermarkResult instance.
+
+Parameters:
+asset (Asset ) – Result asset
+
+
+
+
+get_asset ( )
+
+Returns:
+Returns watermark PDF asset, if an internal asset was used as input PDF.
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+PDFAccessibilityCheckerResult
+
+
+class adobe.pdfservices.operation.pdfjobs.result.pdf_accessibility_checker_result. PDFAccessibilityCheckerResult ( asset : Asset , report : Asset )
+Bases: PDFServicesJobResult
+This class encapsulates the result of
+PDFAccessibilityCheckerJob .
+Constructs a new PDFAccessibilityCheckerResult instance
+
+Parameters:
+
+asset (Asset ) – result asset, enclosing zipped output result
+report – result asset, enclosing zipped output result
+
+
+
+
+
+get_asset ( )
+
+Returns:
+The zipped asset associated with the PDFAccessibilityCheckerJob result, if an external asset was used as input PDF.
+
+Return type:
+Asset
+
+
+
+
+
+
+get_report ( )
+
+Returns:
+The report contains links to documentation that assist in manually fixing problems using Adobe Acrobat Pro.
+
+Return type:
+Asset
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/search.html b/docs/apidocs/4.2.0/search.html
new file mode 100644
index 0000000..fcdcf8c
--- /dev/null
+++ b/docs/apidocs/4.2.0/search.html
@@ -0,0 +1,1359 @@
+
+
+
+
+
+
+
+
Search — pdfservices-sdk 3.0.0 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pdfservices-sdk
+
+
+
+
+
+
+
+
+
+
+
+ Please activate JavaScript to enable the search functionality.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
© Copyright 2024, adobe.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/apidocs/4.2.0/searchindex.js b/docs/apidocs/4.2.0/searchindex.js
new file mode 100644
index 0000000..a83c5f9
--- /dev/null
+++ b/docs/apidocs/4.2.0/searchindex.js
@@ -0,0 +1 @@
+Search.setIndex({"alltitles": {"API Reference": [[74, null]], "Angle": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle"]], "AppearanceItem": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item"]], "AppearanceOptions": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options"]], "Asset": [[75, "asset"]], "Authentication": [[69, null]], "AutotagPDFJob": [[77, "autotagpdfjob"]], "AutotagPDFParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params"]], "AutotagPDFResult": [[79, "autotagpdfresult"]], "CSCAuthContext": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context"]], "CSCCredentials": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials"]], "CallbackNotifierData": [[71, "callbacknotifierdata"]], "ClientConfig": [[70, "clientconfig"]], "CloudAsset": [[75, "cloudasset"]], "CombinePDFJob": [[77, "combinepdfjob"]], "CombinePDFParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params"]], "CombinePDFResult": [[79, "combinepdfresult"]], "CompressPDFJob": [[77, "compresspdfjob"]], "CompressPDFParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params"]], "CompressPDFResult": [[79, "compresspdfresult"]], "CompressionLevel": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level"]], "Config": [[70, null]], "ContentEncryption": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption"]], "Contents:": [[67, null], [74, null]], "CreatePDFFromExcelParams": [[78, "createpdffromexcelparams"]], "CreatePDFFromPPTParams": [[78, "createpdffrompptparams"]], "CreatePDFFromWordParams": [[78, "createpdffromwordparams"]], "CreatePDFJob": [[77, "createpdfjob"]], "CreatePDFParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams"]], "CreatePDFResult": [[79, "createpdfresult"]], "Credentials": [[69, "credentials"]], "DeletePagesJob": [[77, "deletepagesjob"]], "DeletePagesParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params"]], "DeletePagesResult": [[79, "deletepagesresult"]], "DocumentLanguage": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language"], [78, "id1"], [78, "id2"]], "DocumentLevelPermission": [[78, "documentlevelpermission"]], "DocumentMergeJob": [[77, "documentmergejob"]], "DocumentMergeParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params"]], "DocumentMergeResult": [[79, "documentmergeresult"]], "ESealPDFResult": [[79, "esealpdfresult"]], "EncryptionAlgorithm": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm"]], "Exceptions": [[73, null]], "ExportOCRLocale": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale"]], "ExportPDFFormDataJob": [[77, "exportpdfformdatajob"]], "ExportPDFFormDataParams": [[78, "exportpdfformdataparams"]], "ExportPDFFormDataResult": [[79, "exportpdfformdataresult"]], "ExportPDFJob": [[77, "exportpdfjob"]], "ExportPDFParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params"]], "ExportPDFResult": [[79, "exportpdfresult"]], "ExportPDFTargetFormat": [[78, "exportpdftargetformat"]], "ExportPDFToImagesOutputType": [[78, "exportpdftoimagesoutputtype"]], "ExportPDFToImagesTargetFormat": [[78, "exportpdftoimagestargetformat"]], "ExportPDFtoImagesJob": [[77, "exportpdftoimagesjob"]], "ExportPDFtoImagesParams": [[78, "exportpdftoimagesparams"]], "ExportPDFtoImagesResult": [[79, "exportpdftoimagesresult"]], "ExternalAsset": [[75, "externalasset"]], "ExternalStorageType": [[75, "externalstoragetype"]], "ExtractElementType": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type"]], "ExtractPDFJob": [[77, "extractpdfjob"]], "ExtractPDFParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params"]], "ExtractPDFResult": [[79, "extractpdfresult"]], "ExtractRenditionsElementType": [[78, "extractrenditionselementtype"]], "FieldLocation": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.field_location"]], "FieldOptions": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.field_options"]], "Fragments": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments"]], "HTMLtoPDFJob": [[77, "htmltopdfjob"]], "HTMLtoPDFParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params"]], "HTMLtoPDFResult": [[79, "htmltopdfresult"]], "IO": [[75, null]], "ImportPDFFormDataJob": [[77, "importpdfformdatajob"]], "ImportPDFFormDataParams": [[78, "importpdfformdataparams"]], "ImportPDFFormDataResult": [[79, "importpdfformdataresult"]], "Indices and tables": [[67, "indices-and-tables"]], "InsertPagesJob": [[77, "insertpagesjob"]], "InsertPagesParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params"]], "InsertPagesResult": [[79, "insertpagesresult"]], "Jobs": [[77, null]], "LinearizePDFJob": [[77, "linearizepdfjob"]], "LinearizePDFResult": [[79, "linearizepdfresult"]], "Module contents": [[0, "module-adobe"], [1, "module-adobe.pdfservices"], [2, "module-adobe.pdfservices.operation"], [3, "module-adobe.pdfservices.operation.auth"], [4, "module-adobe.pdfservices.operation.config"], [5, "module-adobe.pdfservices.operation.config.notifier"], [6, "module-adobe.pdfservices.operation.config.proxy"], [7, "module-adobe.pdfservices.operation.exception"], [8, "module-adobe.pdfservices.operation.internal"], [9, "module-adobe.pdfservices.operation.internal.api"], [10, "module-adobe.pdfservices.operation.internal.api.dto"], [11, "module-adobe.pdfservices.operation.internal.api.dto.request"], [12, "module-adobe.pdfservices.operation.internal.api.dto.request.autotagpdf"], [13, "module-adobe.pdfservices.operation.internal.api.dto.request.combinepdf"], [14, "module-adobe.pdfservices.operation.internal.api.dto.request.compresspdf"], [15, "module-adobe.pdfservices.operation.internal.api.dto.request.createpdf"], [16, "module-adobe.pdfservices.operation.internal.api.dto.request.document_generation"], [17, "module-adobe.pdfservices.operation.internal.api.dto.request.esealpdf"], [18, "module-adobe.pdfservices.operation.internal.api.dto.request.exportpdf"], [19, "module-adobe.pdfservices.operation.internal.api.dto.request.extract_pdf"], [20, "module-adobe.pdfservices.operation.internal.api.dto.request.htmltopdf"], [21, "module-adobe.pdfservices.operation.internal.api.dto.request.linearizepdf"], [22, "module-adobe.pdfservices.operation.internal.api.dto.request.ocrpdf"], [23, "module-adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation"], [24, "module-adobe.pdfservices.operation.internal.api.dto.request.pdf_properties"], [25, "module-adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api"], [26, "module-adobe.pdfservices.operation.internal.api.dto.request.pdftoimage"], [27, "module-adobe.pdfservices.operation.internal.api.dto.request.protect_pdf"], [28, "module-adobe.pdfservices.operation.internal.api.dto.request.remove_protection"], [29, "module-adobe.pdfservices.operation.internal.api.dto.request.splitpdf"], [30, "module-adobe.pdfservices.operation.internal.api.dto.response"], [31, "module-adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api"], [32, "module-adobe.pdfservices.operation.internal.auth"], [33, "module-adobe.pdfservices.operation.internal.constants"], [34, "module-adobe.pdfservices.operation.internal.http"], [35, "module-adobe.pdfservices.operation.internal.params"], [36, "module-adobe.pdfservices.operation.internal.util"], [37, "module-adobe.pdfservices.operation.io"], [38, "module-adobe.pdfservices.operation.pdfjobs"], [39, "module-adobe.pdfservices.operation.pdfjobs.jobs"], [40, "module-contents"], [41, "module-adobe.pdfservices.operation.pdfjobs.params"], [42, "module-adobe.pdfservices.operation.pdfjobs.params.autotag_pdf"], [43, "module-adobe.pdfservices.operation.pdfjobs.params.combine_pdf"], [44, "module-adobe.pdfservices.operation.pdfjobs.params.compress_pdf"], [45, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf"], [46, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel"], [47, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt"], [48, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.word"], [49, "module-adobe.pdfservices.operation.pdfjobs.params.delete_pages"], [50, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge"], [51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal"], [52, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf"], [53, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf"], [54, "module-adobe.pdfservices.operation.pdfjobs.params.html_to_pdf"], [55, "module-contents"], [56, "module-adobe.pdfservices.operation.pdfjobs.params.insert_pages"], [57, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf"], [58, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_properties"], [59, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_to_image"], [60, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf"], [61, "module-adobe.pdfservices.operation.pdfjobs.params.remove_protection"], [62, "module-adobe.pdfservices.operation.pdfjobs.params.reorder_pages"], [63, "module-adobe.pdfservices.operation.pdfjobs.params.replace_pages"], [64, "module-adobe.pdfservices.operation.pdfjobs.params.rotate_pages"], [65, "module-adobe.pdfservices.operation.pdfjobs.params.split_pdf"], [66, "module-adobe.pdfservices.operation.pdfjobs.result"]], "Notifier Config": [[71, null]], "NotifierConfig": [[71, "notifierconfig"]], "NotifierData": [[71, "notifierdata"]], "NotifierType": [[71, "notifiertype"]], "OCRPDFJob": [[77, "ocrpdfjob"]], "OCRPDFResult": [[79, "ocrpdfresult"]], "OCRParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params"]], "OCRSupportedLocale": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale"]], "OCRSupportedType": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type"]], "OutputFormat": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format"]], "PDF Jobs": [[76, null]], "PDFAccessibilityCheckerJob": [[77, "pdfaccessibilitycheckerjob"]], "PDFAccessibilityCheckerParams": [[78, "pdfaccessibilitycheckerparams"]], "PDFAccessibilityCheckerResult": [[79, "pdfaccessibilitycheckerresult"]], "PDFElectronicSealJob": [[77, "pdfelectronicsealjob"]], "PDFElectronicSealParams": [[78, "pdfelectronicsealparams"]], "PDFPropertiesJob": [[77, "pdfpropertiesjob"]], "PDFPropertiesParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params"]], "PDFPropertiesResult": [[79, "pdfpropertiesresult"]], "PDFServices": [[74, "pdfservices"]], "PDFServicesJob": [[74, "pdfservicesjob"]], "PDFServicesJobParams": [[78, "pdfservicesjobparams"]], "PDFServicesJobResult": [[79, "pdfservicesjobresult"]], "PDFServicesJobStatus": [[74, "pdfservicesjobstatus"]], "PDFServicesJobStatusResponse": [[74, "pdfservicesjobstatusresponse"]], "PDFServicesMediaType": [[74, "pdfservicesmediatype"]], "PDFServicesResponse": [[74, "pdfservicesresponse"]], "PDFWatermarkJob": [[77, "pdfwatermarkjob"]], "PDFWatermarkParams": [[78, "pdfwatermarkparams"]], "PDFWatermarkResult": [[79, "pdfwatermarkresult"]], "PageLayout": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout"]], "PageRanges": [[78, "pageranges"]], "Params": [[78, null]], "PasswordProtectParams": [[78, "passwordprotectparams"]], "Permission": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission"]], "Permissions": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions"]], "ProtectPDFJob": [[77, "protectpdfjob"]], "ProtectPDFParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params"]], "ProtectPDFResult": [[79, "protectpdfresult"]], "Proxy Config": [[72, null]], "ProxyAuthenticationCredentials": [[72, "proxyauthenticationcredentials"]], "ProxyScheme": [[72, "proxyscheme"]], "ProxyServerConfig": [[72, "proxyserverconfig"]], "RFC3161TSAOptions": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options"]], "Region": [[74, "region"]], "RemoveProtectionJob": [[77, "removeprotectionjob"]], "RemoveProtectionParams": [[78, "removeprotectionparams"]], "RemoveProtectionResult": [[79, "removeprotectionresult"]], "ReorderPagesJob": [[77, "reorderpagesjob"]], "ReorderPagesParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params"]], "ReorderPagesResult": [[79, "reorderpagesresult"]], "ReplacePagesJob": [[77, "replacepagesjob"]], "ReplacePagesParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params"]], "ReplacePagesResult": [[79, "replacepagesresult"]], "Result": [[79, null]], "RotatePagesJob": [[77, "rotatepagesjob"]], "RotatePagesParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params"]], "RotatePagesResult": [[79, "rotatepagesresult"]], "SdkException": [[73, "module-adobe.pdfservices.operation.exception.exceptions.SdkException"]], "ServiceApiException": [[73, "module-adobe.pdfservices.operation.exception.exceptions.ServiceApiException"]], "ServicePrincipalCredentials": [[69, "serviceprincipalcredentials"]], "ServiceUsageException": [[73, "serviceusageexception"]], "SignatureFormat": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format"]], "SplitPDFJob": [[77, "splitpdfjob"]], "SplitPDFParams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params"]], "SplitPDFResult": [[79, "splitpdfresult"]], "StreamAsset": [[75, "streamasset"]], "Submodules": [[2, "submodules"], [3, "submodules"], [4, "submodules"], [5, "submodules"], [6, "submodules"], [7, "submodules"], [8, "submodules"], [9, "submodules"], [11, "submodules"], [12, "submodules"], [13, "submodules"], [14, "submodules"], [15, "submodules"], [16, "submodules"], [17, "submodules"], [18, "submodules"], [19, "submodules"], [20, "submodules"], [21, "submodules"], [22, "submodules"], [23, "submodules"], [24, "submodules"], [25, "submodules"], [26, "submodules"], [27, "submodules"], [28, "submodules"], [29, "submodules"], [30, "submodules"], [31, "submodules"], [32, "submodules"], [33, "submodules"], [34, "submodules"], [35, "submodules"], [36, "submodules"], [37, "submodules"], [39, "submodules"], [40, "submodules"], [41, "submodules"], [42, "submodules"], [43, "submodules"], [44, "submodules"], [45, "submodules"], [46, "submodules"], [47, "submodules"], [48, "submodules"], [49, "submodules"], [50, "submodules"], [51, "submodules"], [52, "submodules"], [53, "submodules"], [54, "submodules"], [55, "submodules"], [56, "submodules"], [57, "submodules"], [58, "submodules"], [59, "submodules"], [60, "submodules"], [61, "submodules"], [62, "submodules"], [63, "submodules"], [64, "submodules"], [65, "submodules"], [66, "submodules"]], "Subpackages": [[0, "subpackages"], [1, "subpackages"], [2, "subpackages"], [4, "subpackages"], [8, "subpackages"], [9, "subpackages"], [10, "subpackages"], [11, "subpackages"], [30, "subpackages"], [38, "subpackages"], [41, "subpackages"], [45, "subpackages"]], "TSABasicAuthCredentials": [[78, "tsabasicauthcredentials"]], "TSAOptions": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options"]], "TableStructureType": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type"]], "UsernamePasswordCredentials": [[72, "usernamepasswordcredentials"]], "WatermarkAppearance": [[78, "watermarkappearance"]], "Welcome to pdfservices-sdk\u2019s documentation!": [[67, null]], "adobe package": [[0, null]], "adobe.pdfservices package": [[1, null]], "adobe.pdfservices.operation package": [[2, null]], "adobe.pdfservices.operation.auth package": [[3, null]], "adobe.pdfservices.operation.auth.credentials module": [[3, "module-adobe.pdfservices.operation.auth.credentials"]], "adobe.pdfservices.operation.auth.service_principal_credentials module": [[3, "module-adobe.pdfservices.operation.auth.service_principal_credentials"]], "adobe.pdfservices.operation.config package": [[4, null]], "adobe.pdfservices.operation.config.client_config module": [[4, "module-adobe.pdfservices.operation.config.client_config"]], "adobe.pdfservices.operation.config.notifier package": [[5, null]], "adobe.pdfservices.operation.config.notifier.callback_notifier_data module": [[5, "module-adobe.pdfservices.operation.config.notifier.callback_notifier_data"]], "adobe.pdfservices.operation.config.notifier.notifier_config module": [[5, "module-adobe.pdfservices.operation.config.notifier.notifier_config"]], "adobe.pdfservices.operation.config.notifier.notifier_data module": [[5, "module-adobe.pdfservices.operation.config.notifier.notifier_data"]], "adobe.pdfservices.operation.config.notifier.notifier_type module": [[5, "module-adobe.pdfservices.operation.config.notifier.notifier_type"]], "adobe.pdfservices.operation.config.proxy package": [[6, null]], "adobe.pdfservices.operation.config.proxy.proxy_authentication_credentials module": [[6, "module-adobe.pdfservices.operation.config.proxy.proxy_authentication_credentials"]], "adobe.pdfservices.operation.config.proxy.proxy_scheme module": [[6, "module-adobe.pdfservices.operation.config.proxy.proxy_scheme"]], "adobe.pdfservices.operation.config.proxy.proxy_server_config module": [[6, "module-adobe.pdfservices.operation.config.proxy.proxy_server_config"]], "adobe.pdfservices.operation.config.proxy.username_password_credentials module": [[6, "module-adobe.pdfservices.operation.config.proxy.username_password_credentials"]], "adobe.pdfservices.operation.exception package": [[7, null]], "adobe.pdfservices.operation.exception.exceptions module": [[7, "module-adobe.pdfservices.operation.exception.exceptions"]], "adobe.pdfservices.operation.internal package": [[8, null]], "adobe.pdfservices.operation.internal.api package": [[9, null]], "adobe.pdfservices.operation.internal.api.dto package": [[10, null]], "adobe.pdfservices.operation.internal.api.dto.request package": [[11, null]], "adobe.pdfservices.operation.internal.api.dto.request.asset_upload_uri_request module": [[11, "module-adobe.pdfservices.operation.internal.api.dto.request.asset_upload_uri_request"]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf package": [[12, null]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_external_asset_request module": [[12, "module-adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_internal_asset_request module": [[12, "module-adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_params_payload module": [[12, "module-adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.combinepdf package": [[13, null]], "adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_external_asset_request module": [[13, "module-adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_internal_asset_request module": [[13, "module-adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf package": [[14, null]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_external_asset_request module": [[14, "module-adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_internal_asset_request module": [[14, "module-adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_params_payload module": [[14, "module-adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf package": [[15, null]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_external_asset_request module": [[15, "module-adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_internal_asset_request module": [[15, "module-adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_params_payload module": [[15, "module-adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation package": [[16, null]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_external_asset_request module": [[16, "module-adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_internal_asset_request module": [[16, "module-adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_params_payload module": [[16, "module-adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.esealpdf package": [[17, null]], "adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_external_asset_request module": [[17, "module-adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_internal_asset_request module": [[17, "module-adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf package": [[18, null]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_external_asset_request module": [[18, "module-adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_internal_asset_request module": [[18, "module-adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_params_payload module": [[18, "module-adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf package": [[19, null]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_external_asset_request module": [[19, "module-adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_internal_asset_request module": [[19, "module-adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_params_payload module": [[19, "module-adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf package": [[20, null]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_external_asset_request module": [[20, "module-adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_internal_asset_request module": [[20, "module-adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_params_payload module": [[20, "module-adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf package": [[21, null]], "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_external_asset_request module": [[21, "module-adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_internal_asset_request module": [[21, "module-adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf package": [[22, null]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_external_asset_request module": [[22, "module-adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_internal_asset_request module": [[22, "module-adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_params_payload module": [[22, "module-adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation package": [[23, null]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.delete_page_action module": [[23, "module-adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.delete_page_action"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action module": [[23, "module-adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_command module": [[23, "module-adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_command"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands module": [[23, "module-adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions module": [[23, "module-adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_external_asset_request module": [[23, "module-adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_internal_asset_request module": [[23, "module-adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_params_payload module": [[23, "module-adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.rotate_page_action module": [[23, "module-adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.rotate_page_action"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties package": [[24, null]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_external_asset_request module": [[24, "module-adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_internal_asset_request module": [[24, "module-adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_params_payload module": [[24, "module-adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api package": [[25, null]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.pdf_services_api_request module": [[25, "module-adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.pdf_services_api_request"]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage package": [[26, null]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_external_asset_request module": [[26, "module-adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_internal_asset_request module": [[26, "module-adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_params_payload module": [[26, "module-adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf package": [[27, null]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_external_asset_request module": [[27, "module-adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_internal_asset_request module": [[27, "module-adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_params_payload module": [[27, "module-adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection package": [[28, null]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_extenal_asset_request module": [[28, "module-adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_extenal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_internal_asset_request module": [[28, "module-adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_params_payload module": [[28, "module-adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf package": [[29, null]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_external_asset_request module": [[29, "module-adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_external_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_internal_asset_request module": [[29, "module-adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_params_payload module": [[29, "module-adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.response package": [[30, null]], "adobe.pdfservices.operation.internal.api.dto.response.job_status module": [[30, "module-adobe.pdfservices.operation.internal.api.dto.response.job_status"]], "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api package": [[31, null]], "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response module": [[31, "module-adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response"]], "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.pdf_services_api_response module": [[31, "module-adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.pdf_services_api_response"]], "adobe.pdfservices.operation.internal.api.pdf_services_api module": [[9, "module-adobe.pdfservices.operation.internal.api.pdf_services_api"]], "adobe.pdfservices.operation.internal.api.storage_api module": [[9, "module-adobe.pdfservices.operation.internal.api.storage_api"]], "adobe.pdfservices.operation.internal.auth package": [[32, null]], "adobe.pdfservices.operation.internal.auth.auth_factory module": [[32, "module-adobe.pdfservices.operation.internal.auth.auth_factory"]], "adobe.pdfservices.operation.internal.auth.authenticator module": [[32, "module-adobe.pdfservices.operation.internal.auth.authenticator"]], "adobe.pdfservices.operation.internal.auth.service_principal_authenticator module": [[32, "module-adobe.pdfservices.operation.internal.auth.service_principal_authenticator"]], "adobe.pdfservices.operation.internal.auth.service_token_authenticator module": [[32, "module-adobe.pdfservices.operation.internal.auth.service_token_authenticator"]], "adobe.pdfservices.operation.internal.auth.service_token_credentials module": [[32, "module-adobe.pdfservices.operation.internal.auth.service_token_credentials"]], "adobe.pdfservices.operation.internal.auth.session_token module": [[32, "module-adobe.pdfservices.operation.internal.auth.session_token"]], "adobe.pdfservices.operation.internal.constants package": [[33, null]], "adobe.pdfservices.operation.internal.constants.custom_error_messages module": [[33, "module-adobe.pdfservices.operation.internal.constants.custom_error_messages"]], "adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map module": [[33, "module-adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map"]], "adobe.pdfservices.operation.internal.constants.pdf_services_uri module": [[33, "module-adobe.pdfservices.operation.internal.constants.pdf_services_uri"]], "adobe.pdfservices.operation.internal.constants.request_key module": [[33, "module-adobe.pdfservices.operation.internal.constants.request_key"]], "adobe.pdfservices.operation.internal.constants.service_constants module": [[33, "module-adobe.pdfservices.operation.internal.constants.service_constants"]], "adobe.pdfservices.operation.internal.exceptions module": [[8, "module-adobe.pdfservices.operation.internal.exceptions"]], "adobe.pdfservices.operation.internal.execution_context module": [[8, "module-adobe.pdfservices.operation.internal.execution_context"]], "adobe.pdfservices.operation.internal.http package": [[34, null]], "adobe.pdfservices.operation.internal.http.http_client module": [[34, "module-adobe.pdfservices.operation.internal.http.http_client"]], "adobe.pdfservices.operation.internal.http.http_method module": [[34, "module-adobe.pdfservices.operation.internal.http.http_method"]], "adobe.pdfservices.operation.internal.http.http_request module": [[34, "module-adobe.pdfservices.operation.internal.http.http_request"]], "adobe.pdfservices.operation.internal.http.request_header_const module": [[34, "module-adobe.pdfservices.operation.internal.http.request_header_const"]], "adobe.pdfservices.operation.internal.http.response_util module": [[34, "module-adobe.pdfservices.operation.internal.http.response_util"]], "adobe.pdfservices.operation.internal.internal_client_config module": [[8, "adobe-pdfservices-operation-internal-internal-client-config-module"]], "adobe.pdfservices.operation.internal.params package": [[35, null]], "adobe.pdfservices.operation.internal.params.combine_pdf_job_input module": [[35, "module-adobe.pdfservices.operation.internal.params.combine_pdf_job_input"]], "adobe.pdfservices.operation.internal.params.page_range module": [[35, "module-adobe.pdfservices.operation.internal.params.page_range"]], "adobe.pdfservices.operation.internal.pdf_services_helper module": [[8, "module-adobe.pdfservices.operation.internal.pdf_services_helper"]], "adobe.pdfservices.operation.internal.util package": [[36, null]], "adobe.pdfservices.operation.internal.util.asset_upload_util module": [[36, "module-adobe.pdfservices.operation.internal.util.asset_upload_util"]], "adobe.pdfservices.operation.internal.util.enforce_types module": [[36, "module-adobe.pdfservices.operation.internal.util.enforce_types"]], "adobe.pdfservices.operation.internal.util.file_utils module": [[36, "module-adobe.pdfservices.operation.internal.util.file_utils"]], "adobe.pdfservices.operation.internal.util.json_hint_encoder module": [[36, "module-adobe.pdfservices.operation.internal.util.json_hint_encoder"]], "adobe.pdfservices.operation.internal.util.object_util module": [[36, "module-adobe.pdfservices.operation.internal.util.object_util"]], "adobe.pdfservices.operation.internal.util.path_util module": [[36, "module-adobe.pdfservices.operation.internal.util.path_util"]], "adobe.pdfservices.operation.internal.util.string_util module": [[36, "module-adobe.pdfservices.operation.internal.util.string_util"]], "adobe.pdfservices.operation.internal.util.validation_util module": [[36, "module-adobe.pdfservices.operation.internal.util.validation_util"]], "adobe.pdfservices.operation.io package": [[37, null]], "adobe.pdfservices.operation.io.asset module": [[37, "module-adobe.pdfservices.operation.io.asset"]], "adobe.pdfservices.operation.io.cloud_asset module": [[37, "module-adobe.pdfservices.operation.io.cloud_asset"]], "adobe.pdfservices.operation.io.external_asset module": [[37, "module-adobe.pdfservices.operation.io.external_asset"]], "adobe.pdfservices.operation.io.external_storage_type module": [[37, "module-adobe.pdfservices.operation.io.external_storage_type"]], "adobe.pdfservices.operation.io.stream_asset module": [[37, "module-adobe.pdfservices.operation.io.stream_asset"]], "adobe.pdfservices.operation.pdf_services module": [[2, "module-adobe.pdfservices.operation.pdf_services"]], "adobe.pdfservices.operation.pdf_services_job module": [[2, "module-adobe.pdfservices.operation.pdf_services_job"]], "adobe.pdfservices.operation.pdf_services_job_status module": [[2, "module-adobe.pdfservices.operation.pdf_services_job_status"]], "adobe.pdfservices.operation.pdf_services_job_status_response module": [[2, "module-adobe.pdfservices.operation.pdf_services_job_status_response"]], "adobe.pdfservices.operation.pdf_services_media_type module": [[2, "module-adobe.pdfservices.operation.pdf_services_media_type"]], "adobe.pdfservices.operation.pdf_services_response module": [[2, "module-adobe.pdfservices.operation.pdf_services_response"]], "adobe.pdfservices.operation.pdfjobs package": [[38, null]], "adobe.pdfservices.operation.pdfjobs.jobs package": [[39, null]], "adobe.pdfservices.operation.pdfjobs.jobs.autotag_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.autotag_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.combine_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.combine_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.compress_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.compress_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.create_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.create_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.delete_pages_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.delete_pages_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.document_merge_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.document_merge_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.eseal_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.eseal_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.export\\_pdf\\_form\\_data package": [[40, null]], "adobe.pdfservices.operation.pdfjobs.jobs.export\\_pdf\\_form\\_data.export\\_pdf\\_form\\_data\\_job module": [[40, "adobe-pdfservices-operation-pdfjobs-jobs-export-pdf-form-data-export-pdf-form-data-job-module"]], "adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_to_images_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_to_images_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.extract_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.extract_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.html_to_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.html_to_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.insert_pages_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.insert_pages_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.linearize_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.linearize_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.pdf_properties_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.pdf_properties_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.protect_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.protect_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.remove_protection_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.remove_protection_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.reorder_pages_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.reorder_pages_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.replace_pages_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.replace_pages_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.rotate_pages_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.rotate_pages_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.split_pdf_job module": [[39, "module-adobe.pdfservices.operation.pdfjobs.jobs.split_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.params package": [[41, null]], "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf package": [[42, null]], "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params module": [[42, "module-adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.combine_pdf package": [[43, null]], "adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params module": [[43, "module-adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.compress_pdf package": [[44, null]], "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params module": [[44, "module-adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level module": [[44, "module-adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf package": [[45, null]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams module": [[45, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel package": [[46, null]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params module": [[46, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language module": [[46, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt package": [[47, null]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params module": [[47, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language module": [[47, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word package": [[48, null]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params module": [[48, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language module": [[48, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language"]], "adobe.pdfservices.operation.pdfjobs.params.delete_pages package": [[49, null]], "adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params module": [[49, "module-adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params"]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge package": [[50, null]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params module": [[50, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params"]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments module": [[50, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments"]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format module": [[50, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format"]], "adobe.pdfservices.operation.pdfjobs.params.eseal package": [[51, null]], "adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.field_location module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.field_location"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.field_options module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.field_options"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options module": [[51, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options"]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf package": [[52, null]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale module": [[52, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale"]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params module": [[52, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format module": [[52, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf package": [[53, null]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type module": [[53, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params module": [[53, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type module": [[53, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type module": [[53, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type"]], "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf package": [[54, null]], "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params module": [[54, "module-adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout module": [[54, "module-adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout"]], "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data package": [[55, null]], "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params module": [[55, "adobe-pdfservices-operation-pdfjobs-params-import-pdf-form-data-import-pdf-form-data-params-module"]], "adobe.pdfservices.operation.pdfjobs.params.insert_pages package": [[56, null]], "adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params module": [[56, "module-adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params"]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf package": [[57, null]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params module": [[57, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params"]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale module": [[57, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale"]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type module": [[57, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type"]], "adobe.pdfservices.operation.pdfjobs.params.page_ranges module": [[41, "module-adobe.pdfservices.operation.pdfjobs.params.page_ranges"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_properties package": [[58, null]], "adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params module": [[58, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params module": [[41, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image package": [[59, null]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type module": [[59, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params module": [[59, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format module": [[59, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf package": [[60, null]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption module": [[60, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm module": [[60, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params module": [[60, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission module": [[60, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions module": [[60, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params module": [[60, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.remove_protection package": [[61, null]], "adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params module": [[61, "adobe-pdfservices-operation-pdfjobs-params-remove-protection-remove-protection-params-module"]], "adobe.pdfservices.operation.pdfjobs.params.reorder_pages package": [[62, null]], "adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params module": [[62, "module-adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params"]], "adobe.pdfservices.operation.pdfjobs.params.replace_pages package": [[63, null]], "adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params module": [[63, "module-adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params"]], "adobe.pdfservices.operation.pdfjobs.params.rotate_pages package": [[64, null]], "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle module": [[64, "module-adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle"]], "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params module": [[64, "module-adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params"]], "adobe.pdfservices.operation.pdfjobs.params.split_pdf package": [[65, null]], "adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params module": [[65, "module-adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.result package": [[66, null]], "adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.create_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.create_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.delete_pages_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.delete_pages_result"]], "adobe.pdfservices.operation.pdfjobs.result.document_merge_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.document_merge_result"]], "adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.export_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.export_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result"]], "adobe.pdfservices.operation.pdfjobs.result.extract_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.extract_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.html_to_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.html_to_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.insert_pages_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.insert_pages_result"]], "adobe.pdfservices.operation.pdfjobs.result.linearize_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.linearize_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.ocr_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.ocr_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result"]], "adobe.pdfservices.operation.pdfjobs.result.pdf_services_job_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.pdf_services_job_result"]], "adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.remove_protection_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.remove_protection_result"]], "adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result"]], "adobe.pdfservices.operation.pdfjobs.result.replace_page_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.replace_page_result"]], "adobe.pdfservices.operation.pdfjobs.result.rotate_pages_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.rotate_pages_result"]], "adobe.pdfservices.operation.pdfjobs.result.split_pdf_result module": [[66, "module-adobe.pdfservices.operation.pdfjobs.result.split_pdf_result"]], "adobe.pdfservices.operation.region module": [[2, "module-adobe.pdfservices.operation.region"]], "src": [[68, null]]}, "docnames": ["adobe", "adobe.pdfservices", "adobe.pdfservices.operation", "adobe.pdfservices.operation.auth", "adobe.pdfservices.operation.config", "adobe.pdfservices.operation.config.notifier", "adobe.pdfservices.operation.config.proxy", "adobe.pdfservices.operation.exception", "adobe.pdfservices.operation.internal", "adobe.pdfservices.operation.internal.api", "adobe.pdfservices.operation.internal.api.dto", "adobe.pdfservices.operation.internal.api.dto.request", "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf", "adobe.pdfservices.operation.internal.api.dto.request.combinepdf", "adobe.pdfservices.operation.internal.api.dto.request.compresspdf", "adobe.pdfservices.operation.internal.api.dto.request.createpdf", "adobe.pdfservices.operation.internal.api.dto.request.document_generation", "adobe.pdfservices.operation.internal.api.dto.request.esealpdf", "adobe.pdfservices.operation.internal.api.dto.request.exportpdf", "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf", "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf", "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf", "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf", "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation", "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties", "adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api", "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage", "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf", "adobe.pdfservices.operation.internal.api.dto.request.remove_protection", "adobe.pdfservices.operation.internal.api.dto.request.splitpdf", "adobe.pdfservices.operation.internal.api.dto.response", "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api", "adobe.pdfservices.operation.internal.auth", "adobe.pdfservices.operation.internal.constants", "adobe.pdfservices.operation.internal.http", "adobe.pdfservices.operation.internal.params", "adobe.pdfservices.operation.internal.util", "adobe.pdfservices.operation.io", "adobe.pdfservices.operation.pdfjobs", "adobe.pdfservices.operation.pdfjobs.jobs", "adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data", "adobe.pdfservices.operation.pdfjobs.params", "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf", "adobe.pdfservices.operation.pdfjobs.params.combine_pdf", "adobe.pdfservices.operation.pdfjobs.params.compress_pdf", "adobe.pdfservices.operation.pdfjobs.params.create_pdf", "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel", "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt", "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word", "adobe.pdfservices.operation.pdfjobs.params.delete_pages", "adobe.pdfservices.operation.pdfjobs.params.documentmerge", "adobe.pdfservices.operation.pdfjobs.params.eseal", "adobe.pdfservices.operation.pdfjobs.params.export_pdf", "adobe.pdfservices.operation.pdfjobs.params.extract_pdf", "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf", "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data", "adobe.pdfservices.operation.pdfjobs.params.insert_pages", "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf", "adobe.pdfservices.operation.pdfjobs.params.pdf_properties", "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image", "adobe.pdfservices.operation.pdfjobs.params.protect_pdf", "adobe.pdfservices.operation.pdfjobs.params.remove_protection", "adobe.pdfservices.operation.pdfjobs.params.reorder_pages", "adobe.pdfservices.operation.pdfjobs.params.replace_pages", "adobe.pdfservices.operation.pdfjobs.params.rotate_pages", "adobe.pdfservices.operation.pdfjobs.params.split_pdf", "adobe.pdfservices.operation.pdfjobs.result", "index", "modules", "reference/auth", "reference/config", "reference/config/notifier", "reference/config/proxy", "reference/exception", "reference/index", "reference/io", "reference/pdfjobs", "reference/pdfjobs/jobs", "reference/pdfjobs/params", "reference/pdfjobs/result"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["adobe.rst", "adobe.pdfservices.rst", "adobe.pdfservices.operation.rst", "adobe.pdfservices.operation.auth.rst", "adobe.pdfservices.operation.config.rst", "adobe.pdfservices.operation.config.notifier.rst", "adobe.pdfservices.operation.config.proxy.rst", "adobe.pdfservices.operation.exception.rst", "adobe.pdfservices.operation.internal.rst", "adobe.pdfservices.operation.internal.api.rst", "adobe.pdfservices.operation.internal.api.dto.rst", "adobe.pdfservices.operation.internal.api.dto.request.rst", "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.combinepdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.compresspdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.createpdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.document_generation.rst", "adobe.pdfservices.operation.internal.api.dto.request.esealpdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.exportpdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.rst", "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.rst", "adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.rst", "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.rst", "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.rst", "adobe.pdfservices.operation.internal.api.dto.request.remove_protection.rst", "adobe.pdfservices.operation.internal.api.dto.request.splitpdf.rst", "adobe.pdfservices.operation.internal.api.dto.response.rst", "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.rst", "adobe.pdfservices.operation.internal.auth.rst", "adobe.pdfservices.operation.internal.constants.rst", "adobe.pdfservices.operation.internal.http.rst", "adobe.pdfservices.operation.internal.params.rst", "adobe.pdfservices.operation.internal.util.rst", "adobe.pdfservices.operation.io.rst", "adobe.pdfservices.operation.pdfjobs.rst", "adobe.pdfservices.operation.pdfjobs.jobs.rst", "adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data.rst", "adobe.pdfservices.operation.pdfjobs.params.rst", "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.rst", "adobe.pdfservices.operation.pdfjobs.params.combine_pdf.rst", "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.rst", "adobe.pdfservices.operation.pdfjobs.params.create_pdf.rst", "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.rst", "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.rst", "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.rst", "adobe.pdfservices.operation.pdfjobs.params.delete_pages.rst", "adobe.pdfservices.operation.pdfjobs.params.documentmerge.rst", "adobe.pdfservices.operation.pdfjobs.params.eseal.rst", "adobe.pdfservices.operation.pdfjobs.params.export_pdf.rst", "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.rst", "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.rst", "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.rst", "adobe.pdfservices.operation.pdfjobs.params.insert_pages.rst", "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.rst", "adobe.pdfservices.operation.pdfjobs.params.pdf_properties.rst", "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.rst", "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.rst", "adobe.pdfservices.operation.pdfjobs.params.remove_protection.rst", "adobe.pdfservices.operation.pdfjobs.params.reorder_pages.rst", "adobe.pdfservices.operation.pdfjobs.params.replace_pages.rst", "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rst", "adobe.pdfservices.operation.pdfjobs.params.split_pdf.rst", "adobe.pdfservices.operation.pdfjobs.result.rst", "index.rst", "modules.rst", "reference/auth.rst", "reference/config.rst", "reference/config/notifier.rst", "reference/config/proxy.rst", "reference/exception.rst", "reference/index.rst", "reference/io.rst", "reference/pdfjobs.rst", "reference/pdfjobs/jobs.rst", "reference/pdfjobs/params.rst", "reference/pdfjobs/result.rst"], "indexentries": {"add_all() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.pageranges method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges.add_all", false]], "add_all_from() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.pageranges method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges.add_all_from", false]], "add_angle_to_rotate() (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.rotatepagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.RotatePagesParams.add_angle_to_rotate", false]], "add_angle_to_rotate_for_page_ranges() (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.rotatepagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.RotatePagesParams.add_angle_to_rotate_for_page_ranges", false]], "add_asset() (adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params.combinepdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params.CombinePDFParams.add_asset", false]], "add_fragment() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.fragments method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.Fragments.add_fragment", false]], "add_fragments() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.fragments method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.Fragments.add_fragments", false]], "add_item() (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options.appearanceoptions method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options.AppearanceOptions.add_item", false]], "add_pages_to_insert() (adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.insertpagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.InsertPagesParams.add_pages_to_insert", false]], "add_pages_to_replace() (adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params.replacepagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params.ReplacePagesParams.add_pages_to_replace", false]], "add_permission() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions.permissions method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions.Permissions.add_permission", false]], "add_range() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.pageranges method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges.add_range", false]], "add_single_page() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.pageranges method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges.add_single_page", false]], "adobe.pdfservices.operation": [[2, "module-adobe.pdfservices.operation", false]], "adobe.pdfservices.operation.internal": [[8, "module-adobe.pdfservices.operation.internal", false]], "adobe.pdfservices.operation.internal.exceptions": [[8, "module-adobe.pdfservices.operation.internal.exceptions", false]], "adobe.pdfservices.operation.internal.execution_context": [[8, "module-adobe.pdfservices.operation.internal.execution_context", false]], "adobe.pdfservices.operation.internal.pdf_services_helper": [[8, "module-adobe.pdfservices.operation.internal.pdf_services_helper", false]], "adobe.pdfservices.operation.pdf_services": [[2, "module-adobe.pdfservices.operation.pdf_services", false]], "adobe.pdfservices.operation.pdf_services_job": [[2, "module-adobe.pdfservices.operation.pdf_services_job", false]], "adobe.pdfservices.operation.pdf_services_job_status": [[2, "module-adobe.pdfservices.operation.pdf_services_job_status", false]], "adobe.pdfservices.operation.pdf_services_job_status_response": [[2, "module-adobe.pdfservices.operation.pdf_services_job_status_response", false]], "adobe.pdfservices.operation.pdf_services_media_type": [[2, "module-adobe.pdfservices.operation.pdf_services_media_type", false]], "adobe.pdfservices.operation.pdf_services_response": [[2, "module-adobe.pdfservices.operation.pdf_services_response", false]], "adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data_job": [[40, "module-adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data_job", false]], "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params", false]], "adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params", false]], "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params", false]], "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level", false]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.createpdfparams": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams", false]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params", false]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language", false]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params", false]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language", false]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params", false]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language", false]], "adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params", false]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params", false]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments", false]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.field_location": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.field_location", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.field_options": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.field_options", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.rfc3161_tsa_options": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials", false]], "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options", false]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale", false]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params", false]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format", false]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type", false]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params", false]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type", false]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type", false]], "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params", false]], "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout", false]], "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params", false]], "adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params", false]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params", false]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale", false]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type", false]], "adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params", false]], "adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params", false]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type", false]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params", false]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format", false]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption", false]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm", false]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params", false]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission", false]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions", false]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params", false]], "adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params", false]], "adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params", false]], "adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params", false]], "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle", false]], "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params", false]], "adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params": [[78, "module-adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params", false]], "adobe.pdfservices.operation.region": [[2, "module-adobe.pdfservices.operation.region", false]], "aes_128 (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm.encryptionalgorithm attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm.EncryptionAlgorithm.AES_128", false]], "aes_256 (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm.encryptionalgorithm attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm.EncryptionAlgorithm.AES_256", false]], "ai (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.AI", false]], "all_content (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption.contentencryption attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption.ContentEncryption.ALL_CONTENT", false]], "all_content_except_metadata (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption.contentencryption attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption.ContentEncryption.ALL_CONTENT_EXCEPT_METADATA", false]], "angle (class in adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle)": [[78, "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.Angle", false]], "angle_180 (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.angle attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.Angle.ANGLE_180", false]], "angle_270 (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.angle attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.Angle.ANGLE_270", false]], "angle_90 (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.angle attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.Angle.ANGLE_90", false]], "appearanceitem (class in adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.AppearanceItem", false]], "appearanceoptions (class in adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options.AppearanceOptions", false]], "authenticator (adobe.pdfservices.operation.internal.execution_context.executioncontext property)": [[8, "adobe.pdfservices.operation.internal.execution_context.ExecutionContext.authenticator", false]], "autotagpdfparams (class in adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params.AutotagPDFParams", false]], "bg_bg (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.BG_BG", false]], "bg_bg (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.BG_BG", false]], "bg_bg (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.BG_BG", false]], "bg_bg (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.BG_BG", false]], "bg_bg (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.BG_BG", false]], "bmp (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.BMP", false]], "ca_ca (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.CA_CA", false]], "ca_ca (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.CA_CA", false]], "ca_ca (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.CA_CA", false]], "ca_ca (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.CA_CA", false]], "ca_ca (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.CA_CA", false]], "client_config (adobe.pdfservices.operation.internal.execution_context.executioncontext property)": [[8, "adobe.pdfservices.operation.internal.execution_context.ExecutionContext.client_config", false]], "combinepdfparams (class in adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params.CombinePDFParams", false]], "compressionlevel (class in adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level)": [[78, "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.CompressionLevel", false]], "compresspdfparams (class in adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params.CompressPDFParams", false]], "contentencryption (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption.ContentEncryption", false]], "copy_content (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.permission attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission.COPY_CONTENT", false]], "createpdffromexcelparams (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params.CreatePDFFromExcelParams", false]], "createpdffrompptparams (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params.CreatePDFFromPPTParams", false]], "createpdffromwordparams (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params.CreatePDFFromWordParams", false]], "createpdfparams (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.createpdfparams)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams.CreatePDFParams", false]], "credentials (adobe.pdfservices.operation.internal.execution_context.executioncontext property)": [[8, "adobe.pdfservices.operation.internal.execution_context.ExecutionContext.credentials", false]], "cs_cz (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.CS_CZ", false]], "cs_cz (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.CS_CZ", false]], "cs_cz (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.CS_CZ", false]], "cs_cz (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.CS_CZ", false]], "cs_cz (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.CS_CZ", false]], "cscauthcontext (class in adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context.CSCAuthContext", false]], "csccredentials (class in adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.CSCCredentials", false]], "csv (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.CSV", false]], "csv (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type.tablestructuretype attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type.TableStructureType.CSV", false]], "da_dk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.DA_DK", false]], "da_dk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.DA_DK", false]], "da_dk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.DA_DK", false]], "da_dk (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.DA_DK", false]], "da_dk (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.DA_DK", false]], "date (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.appearanceitem attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.AppearanceItem.DATE", false]], "de_ch (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.DE_CH", false]], "de_ch (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.DE_CH", false]], "de_ch (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.DE_CH", false]], "de_ch (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.DE_CH", false]], "de_ch (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.DE_CH", false]], "de_de (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.DE_DE", false]], "de_de (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.DE_DE", false]], "de_de (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.DE_DE", false]], "de_de (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.DE_DE", false]], "de_de (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.DE_DE", false]], "default_page_height (adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout.pagelayout attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout.PageLayout.DEFAULT_PAGE_HEIGHT", false]], "default_page_width (adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout.pagelayout attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout.PageLayout.DEFAULT_PAGE_WIDTH", false]], "delete_asset() (adobe.pdfservices.operation.internal.pdf_services_helper.pdfserviceshelper class method)": [[8, "adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper.delete_asset", false]], "delete_asset() (adobe.pdfservices.operation.pdf_services.pdfservices method)": [[2, "adobe.pdfservices.operation.pdf_services.PDFServices.delete_asset", false]], "deletepagesparams (class in adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params.DeletePagesParams", false]], "distinguished_name (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.appearanceitem attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.AppearanceItem.DISTINGUISHED_NAME", false]], "doc (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.DOC", false]], "doc (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.exportpdftargetformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.ExportPDFTargetFormat.DOC", false]], "documentlanguage (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage", false]], "documentlanguage (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage", false]], "documentlanguage (class in adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage", false]], "documentlevelpermission (class in adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission.DocumentLevelPermission", false]], "documentmergeparams (class in adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.DocumentMergeParams", false]], "docx (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.DOCX", false]], "docx (adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format.outputformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format.OutputFormat.DOCX", false]], "docx (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.exportpdftargetformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.ExportPDFTargetFormat.DOCX", false]], "done (adobe.pdfservices.operation.pdf_services_job_status.pdfservicesjobstatus attribute)": [[2, "adobe.pdfservices.operation.pdf_services_job_status.PDFServicesJobStatus.DONE", false]], "edit_annotations (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.permission attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission.EDIT_ANNOTATIONS", false]], "edit_content (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.permission attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission.EDIT_CONTENT", false]], "edit_document_assembly (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.permission attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission.EDIT_DOCUMENT_ASSEMBLY", false]], "edit_fill_and_sign_form_fields (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.permission attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission.EDIT_FILL_AND_SIGN_FORM_FIELDS", false]], "el_gr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.EL_GR", false]], "el_gr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.EL_GR", false]], "el_gr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.EL_GR", false]], "el_gr (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.EL_GR", false]], "el_gr (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.EL_GR", false]], "en_gb (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.EN_GB", false]], "en_gb (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.EN_GB", false]], "en_gb (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.EN_GB", false]], "en_gb (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.EN_GB", false]], "en_gb (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.EN_GB", false]], "en_us (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.EN_US", false]], "en_us (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.EN_US", false]], "en_us (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.EN_US", false]], "en_us (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.EN_US", false]], "en_us (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.EN_US", false]], "encryptionalgorithm (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm.EncryptionAlgorithm", false]], "error_code (adobe.pdfservices.operation.internal.exceptions.operationexception property)": [[8, "adobe.pdfservices.operation.internal.exceptions.OperationException.error_code", false]], "es_es (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.ES_ES", false]], "es_es (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.ES_ES", false]], "es_es (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.ES_ES", false]], "es_es (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.ES_ES", false]], "es_es (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.ES_ES", false]], "et_ee (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.ET_EE", false]], "et_ee (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.ET_EE", false]], "et_ee (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.ET_EE", false]], "et_ee (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.ET_EE", false]], "et_ee (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.ET_EE", false]], "eu (adobe.pdfservices.operation.region.region attribute)": [[2, "adobe.pdfservices.operation.region.Region.EU", false]], "eu_es (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.EU_ES", false]], "executioncontext (class in adobe.pdfservices.operation.internal.execution_context)": [[8, "adobe.pdfservices.operation.internal.execution_context.ExecutionContext", false]], "exportocrlocale (class in adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale", false]], "exportpdfformdatajob (class in adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data_job)": [[40, "adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data_job.ExportPDFFormDataJob", false]], "exportpdfparams (class in adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params.ExportPDFParams", false]], "exportpdftargetformat (class in adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.ExportPDFTargetFormat", false]], "exportpdftoimagesoutputtype (class in adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type.ExportPDFToImagesOutputType", false]], "exportpdftoimagesparams (class in adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params.ExportPDFtoImagesParams", false]], "exportpdftoimagestargetformat (class in adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format.ExportPDFToImagesTargetFormat", false]], "extension (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype property)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.extension", false]], "extractelementtype (class in adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type.ExtractElementType", false]], "extractpdfparams (class in adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams", false]], "extractrenditionselementtype (class in adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type.ExtractRenditionsElementType", false]], "failed (adobe.pdfservices.operation.pdf_services_job_status.pdfservicesjobstatus attribute)": [[2, "adobe.pdfservices.operation.pdf_services_job_status.PDFServicesJobStatus.FAILED", false]], "fi_fi (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.FI_FI", false]], "fi_fi (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.FI_FI", false]], "fi_fi (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.FI_FI", false]], "fi_fi (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.FI_FI", false]], "fi_fi (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.FI_FI", false]], "fieldlocation (class in adobe.pdfservices.operation.pdfjobs.params.eseal.field_location)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.FieldLocation", false]], "fieldoptions (class in adobe.pdfservices.operation.pdfjobs.params.eseal.field_options)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.FieldOptions", false]], "figures (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type.extractrenditionselementtype attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type.ExtractRenditionsElementType.FIGURES", false]], "form_filling (adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission.documentlevelpermission attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission.DocumentLevelPermission.FORM_FILLING", false]], "form_filling_and_annotations (adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission.documentlevelpermission attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission.DocumentLevelPermission.FORM_FILLING_AND_ANNOTATIONS", false]], "fr_fr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.FR_FR", false]], "fr_fr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.FR_FR", false]], "fr_fr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.FR_FR", false]], "fr_fr (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.FR_FR", false]], "fr_fr (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.FR_FR", false]], "fragments (class in adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.Fragments", false]], "get_access_token() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context.cscauthcontext method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context.CSCAuthContext.get_access_token", false]], "get_add_char_info() (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.extractpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams.get_add_char_info", false]], "get_appear_on_foreground() (adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance.watermarkappearance method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance.WatermarkAppearance.get_appear_on_foreground", false]], "get_appearance_options() (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options.appearanceoptions method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options.AppearanceOptions.get_appearance_options", false]], "get_asset() (adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params.reorderpagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params.ReorderPagesParams.get_asset", false]], "get_assets_to_combine() (adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params.combinepdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params.CombinePDFParams.get_assets_to_combine", false]], "get_assets_to_insert() (adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.insertpagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.InsertPagesParams.get_assets_to_insert", false]], "get_assets_to_replace() (adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params.replacepagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params.ReplacePagesParams.get_assets_to_replace", false]], "get_base_asset() (adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.insertpagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.InsertPagesParams.get_base_asset", false]], "get_base_asset() (adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params.replacepagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params.ReplacePagesParams.get_base_asset", false]], "get_bottom() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.fieldlocation method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.FieldLocation.get_bottom", false]], "get_compression_level() (adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params.compresspdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params.CompressPDFParams.get_compression_level", false]], "get_compression_level() (adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.compressionlevel method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.CompressionLevel.get_compression_level", false]], "get_content() (adobe.pdfservices.operation.internal.pdf_services_helper.pdfserviceshelper class method)": [[8, "adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper.get_content", false]], "get_content() (adobe.pdfservices.operation.pdf_services.pdfservices method)": [[2, "adobe.pdfservices.operation.pdf_services.PDFServices.get_content", false]], "get_content_encryption() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.passwordprotectparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams.get_content_encryption", false]], "get_credential_id() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.csccredentials method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.CSCCredentials.get_credential_id", false]], "get_csc_auth_context() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.csccredentials method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.CSCCredentials.get_csc_auth_context", false]], "get_document_language() (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params.createpdffromexcelparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params.CreatePDFFromExcelParams.get_document_language", false]], "get_document_language() (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.get_document_language", false]], "get_document_language() (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params.createpdffrompptparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params.CreatePDFFromPPTParams.get_document_language", false]], "get_document_language() (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.get_document_language", false]], "get_document_language() (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params.createpdffromwordparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params.CreatePDFFromWordParams.get_document_language", false]], "get_document_language() (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.get_document_language", false]], "get_elements_to_extract() (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.extractpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams.get_elements_to_extract", false]], "get_elements_to_extract_renditions() (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.extractpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams.get_elements_to_extract_renditions", false]], "get_encryption_algorithm() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.passwordprotectparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams.get_encryption_algorithm", false]], "get_export_ocr_locale() (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.get_export_ocr_locale", false]], "get_export_pdf_to_images_output_type() (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params.exportpdftoimagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params.ExportPDFtoImagesParams.get_export_pdf_to_images_output_type", false]], "get_export_pdf_to_images_target_format() (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params.exportpdftoimagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params.ExportPDFtoImagesParams.get_export_pdf_to_images_target_format", false]], "get_field_location() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.fieldoptions method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.FieldOptions.get_field_location", false]], "get_field_name() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.fieldoptions method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.FieldOptions.get_field_name", false]], "get_file_count() (adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params.splitpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params.SplitPDFParams.get_file_count", false]], "get_file_ext() (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.exportpdftargetformat method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.ExportPDFTargetFormat.get_file_ext", false]], "get_file_ext() (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format.exportpdftoimagestargetformat method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format.ExportPDFToImagesTargetFormat.get_file_ext", false]], "get_format() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format.outputformat method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format.OutputFormat.get_format", false]], "get_fragments() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.documentmergeparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.DocumentMergeParams.get_fragments", false]], "get_fragments_list() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.fragments method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.Fragments.get_fragments_list", false]], "get_from_extension() (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype static method)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.get_from_extension", false]], "get_generate_report() (adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params.autotagpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params.AutotagPDFParams.get_generate_report", false]], "get_include_header_footer() (adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.htmltopdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.HTMLtoPDFParams.get_include_header_footer", false]], "get_include_page_level_properties() (adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params.pdfpropertiesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params.PDFPropertiesParams.get_include_page_level_properties", false]], "get_job_result() (adobe.pdfservices.operation.internal.pdf_services_helper.pdfserviceshelper class method)": [[8, "adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper.get_job_result", false]], "get_job_result() (adobe.pdfservices.operation.pdf_services.pdfservices method)": [[2, "adobe.pdfservices.operation.pdf_services.PDFServices.get_job_result", false]], "get_job_status() (adobe.pdfservices.operation.internal.pdf_services_helper.pdfserviceshelper class method)": [[8, "adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper.get_job_status", false]], "get_job_status() (adobe.pdfservices.operation.pdf_services.pdfservices method)": [[2, "adobe.pdfservices.operation.pdf_services.PDFServices.get_job_status", false]], "get_json() (adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.htmltopdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.HTMLtoPDFParams.get_json", false]], "get_json_data_for_merge() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.documentmergeparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.DocumentMergeParams.get_json_data_for_merge", false]], "get_json_form_fields_data() (adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params.importpdfformdataparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params.ImportPDFFormDataParams.get_json_form_fields_data", false]], "get_json_form_fields_data_string() (adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params.importpdfformdataparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params.ImportPDFFormDataParams.get_json_form_fields_data_string", false]], "get_left() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.fieldlocation method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.FieldLocation.get_left", false]], "get_locale() (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.get_locale", false]], "get_ocr_lang() (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params.exportpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params.ExportPDFParams.get_ocr_lang", false]], "get_ocr_locale() (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params.ocrparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params.OCRParams.get_ocr_locale", false]], "get_ocr_type() (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params.ocrparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params.OCRParams.get_ocr_type", false]], "get_opacity() (adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance.watermarkappearance method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance.WatermarkAppearance.get_opacity", false]], "get_output_format() (adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.documentmergeparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.DocumentMergeParams.get_output_format", false]], "get_output_type() (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type.exportpdftoimagesoutputtype method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type.ExportPDFToImagesOutputType.get_output_type", false]], "get_owner_password() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.passwordprotectparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams.get_owner_password", false]], "get_page_actions() (adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.rotatepagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.RotatePagesParams.get_page_actions", false]], "get_page_count() (adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params.splitpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params.SplitPDFParams.get_page_count", false]], "get_page_end() (adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params.pdfaccessibilitycheckerparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params.PDFAccessibilityCheckerParams.get_page_end", false]], "get_page_layout() (adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.htmltopdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.HTMLtoPDFParams.get_page_layout", false]], "get_page_number() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.fieldoptions method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.FieldOptions.get_page_number", false]], "get_page_ranges() (adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params.deletepagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params.DeletePagesParams.get_page_ranges", false]], "get_page_ranges() (adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params.pdfwatermarkparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params.PDFWatermarkParams.get_page_ranges", false]], "get_page_ranges() (adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params.reorderpagesparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params.ReorderPagesParams.get_page_ranges", false]], "get_page_ranges() (adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params.splitpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params.SplitPDFParams.get_page_ranges", false]], "get_page_start() (adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params.pdfaccessibilitycheckerparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params.PDFAccessibilityCheckerParams.get_page_start", false]], "get_password() (adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials.tsabasicauthcredentials method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials.TSABasicAuthCredentials.get_password", false]], "get_password() (adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params.removeprotectionparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params.RemoveProtectionParams.get_password", false]], "get_permissions() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.passwordprotectparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams.get_permissions", false]], "get_pin() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.csccredentials method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.CSCCredentials.get_pin", false]], "get_provider_name() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.csccredentials method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.CSCCredentials.get_provider_name", false]], "get_ranges() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.pageranges method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges.get_ranges", false]], "get_result() (adobe.pdfservices.operation.pdf_services_response.pdfservicesresponse method)": [[2, "adobe.pdfservices.operation.pdf_services_response.PDFServicesResponse.get_result", false]], "get_retry_interval() (adobe.pdfservices.operation.pdf_services_job_status_response.pdfservicesjobstatusresponse method)": [[2, "adobe.pdfservices.operation.pdf_services_job_status_response.PDFServicesJobStatusResponse.get_retry_interval", false]], "get_right() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.fieldlocation method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.FieldLocation.get_right", false]], "get_seal_appearance_options() (adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.pdfelectronicsealparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.PDFElectronicSealParams.get_seal_appearance_options", false]], "get_seal_certificate_credentials() (adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.pdfelectronicsealparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.PDFElectronicSealParams.get_seal_certificate_credentials", false]], "get_seal_field_options() (adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.pdfelectronicsealparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.PDFElectronicSealParams.get_seal_field_options", false]], "get_shift_headings() (adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params.autotagpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params.AutotagPDFParams.get_shift_headings", false]], "get_signature_format() (adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.pdfelectronicsealparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.PDFElectronicSealParams.get_signature_format", false]], "get_signature_format() (adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format.signatureformat method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format.SignatureFormat.get_signature_format", false]], "get_status() (adobe.pdfservices.operation.pdf_services_job_status_response.pdfservicesjobstatusresponse method)": [[2, "adobe.pdfservices.operation.pdf_services_job_status_response.PDFServicesJobStatusResponse.get_status", false]], "get_styling_info() (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.extractpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams.get_styling_info", false]], "get_table_structure_type() (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.extractpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams.get_table_structure_type", false]], "get_target_format() (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params.exportpdfparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params.ExportPDFParams.get_target_format", false]], "get_token_type() (adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context.cscauthcontext method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context.CSCAuthContext.get_token_type", false]], "get_top() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.fieldlocation method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.FieldLocation.get_top", false]], "get_tsa_basic_auth_credentials() (adobe.pdfservices.operation.pdfjobs.params.eseal.rfc3161_tsa_options.rfc3161tsaoptions method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options.RFC3161TSAOptions.get_tsa_basic_auth_credentials", false]], "get_type() (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type.ocrsupportedtype method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type.OCRSupportedType.get_type", false]], "get_url() (adobe.pdfservices.operation.pdfjobs.params.eseal.rfc3161_tsa_options.rfc3161tsaoptions method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options.RFC3161TSAOptions.get_url", false]], "get_user_password() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.passwordprotectparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams.get_user_password", false]], "get_username() (adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials.tsabasicauthcredentials method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials.TSABasicAuthCredentials.get_username", false]], "get_value() (adobe.pdfservices.operation.pdf_services_job_status.pdfservicesjobstatus method)": [[2, "adobe.pdfservices.operation.pdf_services_job_status.PDFServicesJobStatus.get_value", false]], "get_values() (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions.permissions method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions.Permissions.get_values", false]], "get_visible() (adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.fieldoptions method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.FieldOptions.get_visible", false]], "get_watermark_appearance() (adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params.pdfwatermarkparams method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params.PDFWatermarkParams.get_watermark_appearance", false]], "gif (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.GIF", false]], "gl_es (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.GL_ES", false]], "high (adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.compressionlevel attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.CompressionLevel.HIGH", false]], "hr_hr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.HR_HR", false]], "hr_hr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.HR_HR", false]], "hr_hr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.HR_HR", false]], "hr_hr (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.HR_HR", false]], "hr_hr (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.HR_HR", false]], "html (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.HTML", false]], "htmltopdfparams (class in adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.HTMLtoPDFParams", false]], "hu_hu (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.HU_HU", false]], "hu_hu (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.HU_HU", false]], "hu_hu (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.HU_HU", false]], "hu_hu (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.HU_HU", false]], "hu_hu (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.HU_HU", false]], "importpdfformdataparams (class in adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params.ImportPDFFormDataParams", false]], "in_progress (adobe.pdfservices.operation.pdf_services_job_status.pdfservicesjobstatus attribute)": [[2, "adobe.pdfservices.operation.pdf_services_job_status.PDFServicesJobStatus.IN_PROGRESS", false]], "indd (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.INDD", false]], "insertpagesparams (class in adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.InsertPagesParams", false]], "is_empty() (adobe.pdfservices.operation.pdfjobs.params.page_ranges.pageranges method)": [[78, "adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges.is_empty", false]], "it_it (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.IT_IT", false]], "it_it (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.IT_IT", false]], "it_it (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.IT_IT", false]], "it_it (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.IT_IT", false]], "it_it (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.IT_IT", false]], "iw_il (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.IW_IL", false]], "iw_il (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.IW_IL", false]], "iw_il (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.IW_IL", false]], "iw_il (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.IW_IL", false]], "iw_il (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.IW_IL", false]], "ja_jp (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.JA_JP", false]], "ja_jp (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.JA_JP", false]], "ja_jp (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.JA_JP", false]], "ja_jp (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.JA_JP", false]], "ja_jp (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.JA_JP", false]], "jpeg (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.JPEG", false]], "jpeg (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format.exportpdftoimagestargetformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format.ExportPDFToImagesTargetFormat.JPEG", false]], "jpg (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.JPG", false]], "json (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.JSON", false]], "ko_kr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.KO_KR", false]], "ko_kr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.KO_KR", false]], "ko_kr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.KO_KR", false]], "ko_kr (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.KO_KR", false]], "ko_kr (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.KO_KR", false]], "labels (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.appearanceitem attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.AppearanceItem.LABELS", false]], "list_of_page_images (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type.exportpdftoimagesoutputtype attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type.ExportPDFToImagesOutputType.LIST_OF_PAGE_IMAGES", false]], "low (adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.compressionlevel attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.CompressionLevel.LOW", false]], "lt_lt (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.LT_LT", false]], "lt_lt (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.LT_LT", false]], "lt_lt (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.LT_LT", false]], "lt_lt (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.LT_LT", false]], "lt_lt (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.LT_LT", false]], "lv_lv (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.LV_LV", false]], "lv_lv (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.LV_LV", false]], "lv_lv (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.LV_LV", false]], "lv_lv (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.LV_LV", false]], "lv_lv (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.LV_LV", false]], "medium (adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.compressionlevel attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.CompressionLevel.MEDIUM", false]], "mime_type (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype property)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.mime_type", false]], "mk_mk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.MK_MK", false]], "mk_mk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.MK_MK", false]], "mk_mk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.MK_MK", false]], "mk_mk (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.MK_MK", false]], "mk_mk (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.MK_MK", false]], "module": [[2, "module-adobe.pdfservices.operation", false], [2, "module-adobe.pdfservices.operation.pdf_services", false], [2, "module-adobe.pdfservices.operation.pdf_services_job", false], [2, "module-adobe.pdfservices.operation.pdf_services_job_status", false], [2, "module-adobe.pdfservices.operation.pdf_services_job_status_response", false], [2, "module-adobe.pdfservices.operation.pdf_services_media_type", false], [2, "module-adobe.pdfservices.operation.pdf_services_response", false], [2, "module-adobe.pdfservices.operation.region", false], [8, "module-adobe.pdfservices.operation.internal", false], [8, "module-adobe.pdfservices.operation.internal.exceptions", false], [8, "module-adobe.pdfservices.operation.internal.execution_context", false], [8, "module-adobe.pdfservices.operation.internal.pdf_services_helper", false], [40, "module-adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data_job", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.field_location", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.field_options", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params", false], [78, "module-adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params", false]], "mt_mt (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.MT_MT", false]], "mt_mt (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.MT_MT", false]], "mt_mt (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.MT_MT", false]], "mt_mt (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.MT_MT", false]], "mt_mt (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.MT_MT", false]], "name (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.appearanceitem attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.AppearanceItem.NAME", false]], "nb_no (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.NB_NO", false]], "nb_no (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.NB_NO", false]], "nb_no (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.NB_NO", false]], "nb_no (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.NB_NO", false]], "nb_no (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.NB_NO", false]], "nl_nl (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.NL_NL", false]], "nl_nl (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.NL_NL", false]], "nl_nl (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.NL_NL", false]], "nl_nl (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.NL_NL", false]], "nl_nl (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.NL_NL", false]], "nn_no (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.NN_NO", false]], "no_changes_allowed (adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission.documentlevelpermission attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission.DocumentLevelPermission.NO_CHANGES_ALLOWED", false]], "no_no (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.NO_NO", false]], "no_no (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.NO_NO", false]], "no_no (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.NO_NO", false]], "no_no (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.NO_NO", false]], "ocrparams (class in adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params.OCRParams", false]], "ocrsupportedlocale (class in adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale", false]], "ocrsupportedtype (class in adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type.OCRSupportedType", false]], "only_embedded_files (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption.contentencryption attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption.ContentEncryption.ONLY_EMBEDDED_FILES", false]], "operationexception": [[8, "adobe.pdfservices.operation.internal.exceptions.OperationException", false]], "outputformat (class in adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format.OutputFormat", false]], "pades (adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format.signatureformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format.SignatureFormat.PADES", false]], "pagelayout (class in adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout)": [[78, "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout.PageLayout", false]], "pageranges (class in adobe.pdfservices.operation.pdfjobs.params.page_ranges)": [[78, "adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges", false]], "passwordprotectparams (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams", false]], "pdf (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.PDF", false]], "pdf (adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format.outputformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format.OutputFormat.PDF", false]], "pdfaccessibilitycheckerparams (class in adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params.PDFAccessibilityCheckerParams", false]], "pdfelectronicsealparams (class in adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.PDFElectronicSealParams", false]], "pdfpropertiesparams (class in adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params.PDFPropertiesParams", false]], "pdfservices (class in adobe.pdfservices.operation.pdf_services)": [[2, "adobe.pdfservices.operation.pdf_services.PDFServices", false]], "pdfserviceshelper (class in adobe.pdfservices.operation.internal.pdf_services_helper)": [[8, "adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper", false]], "pdfservicesjob (class in adobe.pdfservices.operation.pdf_services_job)": [[2, "adobe.pdfservices.operation.pdf_services_job.PDFServicesJob", false]], "pdfservicesjobparams (class in adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params.PDFServicesJobParams", false]], "pdfservicesjobstatus (class in adobe.pdfservices.operation.pdf_services_job_status)": [[2, "adobe.pdfservices.operation.pdf_services_job_status.PDFServicesJobStatus", false]], "pdfservicesjobstatusresponse (class in adobe.pdfservices.operation.pdf_services_job_status_response)": [[2, "adobe.pdfservices.operation.pdf_services_job_status_response.PDFServicesJobStatusResponse", false]], "pdfservicesmediatype (class in adobe.pdfservices.operation.pdf_services_media_type)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType", false]], "pdfservicesresponse (class in adobe.pdfservices.operation.pdf_services_response)": [[2, "adobe.pdfservices.operation.pdf_services_response.PDFServicesResponse", false]], "pdfwatermarkparams (class in adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params.PDFWatermarkParams", false]], "permission (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission", false]], "permissions (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions.Permissions", false]], "pkcs7 (adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format.signatureformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format.SignatureFormat.PKCS7", false]], "pl_pl (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.PL_PL", false]], "pl_pl (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.PL_PL", false]], "pl_pl (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.PL_PL", false]], "pl_pl (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.PL_PL", false]], "pl_pl (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.PL_PL", false]], "png (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.PNG", false]], "png (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format.exportpdftoimagestargetformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format.ExportPDFToImagesTargetFormat.PNG", false]], "ppt (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.PPT", false]], "pptx (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.PPTX", false]], "pptx (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.exportpdftargetformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.ExportPDFTargetFormat.PPTX", false]], "print_high_quality (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.permission attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission.PRINT_HIGH_QUALITY", false]], "print_low_quality (adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.permission attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission.PRINT_LOW_QUALITY", false]], "protectpdfparams (class in adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params.ProtectPDFParams", false]], "psd (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.PSD", false]], "pt_br (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.PT_BR", false]], "pt_br (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.PT_BR", false]], "pt_br (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.PT_BR", false]], "pt_br (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.PT_BR", false]], "pt_br (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.PT_BR", false]], "pt_pt (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.PT_PT", false]], "refresh_download_uri() (adobe.pdfservices.operation.internal.pdf_services_helper.pdfserviceshelper class method)": [[8, "adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper.refresh_download_uri", false]], "refresh_download_uri() (adobe.pdfservices.operation.pdf_services.pdfservices method)": [[2, "adobe.pdfservices.operation.pdf_services.PDFServices.refresh_download_uri", false]], "region (class in adobe.pdfservices.operation.region)": [[2, "adobe.pdfservices.operation.region.Region", false]], "removeprotectionparams (class in adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params.RemoveProtectionParams", false]], "reorderpagesparams (class in adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params.ReorderPagesParams", false]], "replacepagesparams (class in adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params.ReplacePagesParams", false]], "rfc3161tsaoptions (class in adobe.pdfservices.operation.pdfjobs.params.eseal.rfc3161_tsa_options)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options.RFC3161TSAOptions", false]], "ro_ro (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.RO_RO", false]], "ro_ro (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.RO_RO", false]], "ro_ro (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.RO_RO", false]], "ro_ro (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.RO_RO", false]], "ro_ro (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.RO_RO", false]], "rotatepagesparams (class in adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.RotatePagesParams", false]], "rtf (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.RTF", false]], "rtf (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.exportpdftargetformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.ExportPDFTargetFormat.RTF", false]], "ru_ru (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.RU_RU", false]], "ru_ru (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.RU_RU", false]], "ru_ru (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.RU_RU", false]], "ru_ru (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.RU_RU", false]], "ru_ru (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.RU_RU", false]], "seal_image (adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.appearanceitem attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.AppearanceItem.SEAL_IMAGE", false]], "searchable_image (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type.ocrsupportedtype attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type.OCRSupportedType.SEARCHABLE_IMAGE", false]], "searchable_image_exact (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type.ocrsupportedtype attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type.OCRSupportedType.SEARCHABLE_IMAGE_EXACT", false]], "signatureformat (class in adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format.SignatureFormat", false]], "sk_sk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.SK_SK", false]], "sk_sk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.SK_SK", false]], "sk_sk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.SK_SK", false]], "sk_sk (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.SK_SK", false]], "sk_sk (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.SK_SK", false]], "sl_si (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.SL_SI", false]], "sl_si (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.SL_SI", false]], "sl_si (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.SL_SI", false]], "sl_si (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.SL_SI", false]], "sl_si (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.SL_SI", false]], "splitpdfparams (class in adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params)": [[78, "adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params.SplitPDFParams", false]], "sr_sr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.SR_SR", false]], "sr_sr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.SR_SR", false]], "sr_sr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.SR_SR", false]], "sr_sr (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.SR_SR", false]], "sr_sr (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.SR_SR", false]], "submit() (adobe.pdfservices.operation.pdf_services.pdfservices method)": [[2, "adobe.pdfservices.operation.pdf_services.PDFServices.submit", false]], "submit_job() (adobe.pdfservices.operation.internal.pdf_services_helper.pdfserviceshelper class method)": [[8, "adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper.submit_job", false]], "sv_se (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.SV_SE", false]], "sv_se (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.SV_SE", false]], "sv_se (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.SV_SE", false]], "sv_se (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.SV_SE", false]], "sv_se (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.SV_SE", false]], "svg (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.SVG", false]], "tables (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type.extractelementtype attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type.ExtractElementType.TABLES", false]], "tables (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type.extractrenditionselementtype attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type.ExtractRenditionsElementType.TABLES", false]], "tablestructuretype (class in adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type.TableStructureType", false]], "text (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type.extractelementtype attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type.ExtractElementType.TEXT", false]], "tif (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.TIF", false]], "tiff (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.TIFF", false]], "tr_tr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.TR_TR", false]], "tr_tr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.TR_TR", false]], "tr_tr (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.TR_TR", false]], "tr_tr (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.TR_TR", false]], "tr_tr (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.TR_TR", false]], "tsabasicauthcredentials (class in adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials.TSABasicAuthCredentials", false]], "tsaoptions (class in adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options)": [[78, "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options.TSAOptions", false]], "txt (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.TXT", false]], "uk_ua (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.UK_UA", false]], "uk_ua (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.UK_UA", false]], "uk_ua (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.UK_UA", false]], "uk_ua (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.UK_UA", false]], "uk_ua (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.UK_UA", false]], "upload() (adobe.pdfservices.operation.internal.pdf_services_helper.pdfserviceshelper class method)": [[8, "adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper.upload", false]], "upload() (adobe.pdfservices.operation.pdf_services.pdfservices method)": [[2, "adobe.pdfservices.operation.pdf_services.PDFServices.upload", false]], "upload_assets() (adobe.pdfservices.operation.internal.pdf_services_helper.pdfserviceshelper class method)": [[8, "adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper.upload_assets", false]], "upload_assets() (adobe.pdfservices.operation.pdf_services.pdfservices method)": [[2, "adobe.pdfservices.operation.pdf_services.PDFServices.upload_assets", false]], "us (adobe.pdfservices.operation.region.region attribute)": [[2, "adobe.pdfservices.operation.region.Region.US", false]], "validate() (adobe.pdfservices.operation.internal.execution_context.executioncontext method)": [[8, "adobe.pdfservices.operation.internal.execution_context.ExecutionContext.validate", false]], "watermarkappearance (class in adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance.WatermarkAppearance", false]], "xls (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.XLS", false]], "xlsx (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.XLSX", false]], "xlsx (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.exportpdftargetformat attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.ExportPDFTargetFormat.XLSX", false]], "xlsx (adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type.tablestructuretype attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type.TableStructureType.XLSX", false]], "zh_cn (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.ZH_CN", false]], "zh_cn (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.ZH_CN", false]], "zh_cn (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.ZH_CN", false]], "zh_cn (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.ZH_CN", false]], "zh_cn (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.ZH_CN", false]], "zh_hant (adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.exportocrlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale.ZH_HANT", false]], "zh_hk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage.ZH_HK", false]], "zh_hk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage.ZH_HK", false]], "zh_hk (adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.documentlanguage attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage.ZH_HK", false]], "zh_hk (adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.ocrsupportedlocale attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale.ZH_HK", false]], "zip (adobe.pdfservices.operation.pdf_services_media_type.pdfservicesmediatype attribute)": [[2, "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType.ZIP", false]], "zip_of_page_images (adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type.exportpdftoimagesoutputtype attribute)": [[78, "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type.ExportPDFToImagesOutputType.ZIP_OF_PAGE_IMAGES", false]]}, "objects": {"": [[0, 0, 0, "-", "adobe"]], "adobe": [[1, 0, 0, "-", "pdfservices"]], "adobe.pdfservices": [[2, 0, 0, "-", "operation"]], "adobe.pdfservices.operation": [[3, 0, 0, "-", "auth"], [4, 0, 0, "-", "config"], [7, 0, 0, "-", "exception"], [8, 0, 0, "-", "internal"], [37, 0, 0, "-", "io"], [2, 0, 0, "-", "pdf_services"], [2, 0, 0, "-", "pdf_services_job"], [2, 0, 0, "-", "pdf_services_job_status"], [2, 0, 0, "-", "pdf_services_job_status_response"], [2, 0, 0, "-", "pdf_services_media_type"], [2, 0, 0, "-", "pdf_services_response"], [38, 0, 0, "-", "pdfjobs"], [2, 0, 0, "-", "region"]], "adobe.pdfservices.operation.auth": [[3, 0, 0, "-", "credentials"], [3, 0, 0, "-", "service_principal_credentials"]], "adobe.pdfservices.operation.auth.credentials": [[69, 1, 1, "", "Credentials"]], "adobe.pdfservices.operation.auth.service_principal_credentials": [[69, 1, 1, "", "ServicePrincipalCredentials"]], "adobe.pdfservices.operation.auth.service_principal_credentials.ServicePrincipalCredentials": [[69, 2, 1, "", "get_client_id"], [69, 2, 1, "", "get_client_secret"]], "adobe.pdfservices.operation.config": [[4, 0, 0, "-", "client_config"], [5, 0, 0, "-", "notifier"], [6, 0, 0, "-", "proxy"]], "adobe.pdfservices.operation.config.client_config": [[70, 1, 1, "", "ClientConfig"]], "adobe.pdfservices.operation.config.client_config.ClientConfig": [[70, 2, 1, "", "from_file"], [70, 2, 1, "", "get_connect_timeout"], [4, 2, 1, "", "get_pdf_services_uri"], [70, 2, 1, "", "get_proxy_server_config"], [70, 2, 1, "", "get_read_timeout"], [4, 2, 1, "", "validate"]], "adobe.pdfservices.operation.config.notifier": [[5, 0, 0, "-", "callback_notifier_data"], [5, 0, 0, "-", "notifier_config"], [5, 0, 0, "-", "notifier_data"], [5, 0, 0, "-", "notifier_type"]], "adobe.pdfservices.operation.config.notifier.callback_notifier_data": [[71, 1, 1, "", "CallbackNotifierData"]], "adobe.pdfservices.operation.config.notifier.callback_notifier_data.CallbackNotifierData": [[5, 3, 1, "", "json_hint"], [5, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.config.notifier.notifier_config": [[71, 1, 1, "", "NotifierConfig"]], "adobe.pdfservices.operation.config.notifier.notifier_config.NotifierConfig": [[5, 3, 1, "", "json_hint"], [5, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.config.notifier.notifier_data": [[71, 1, 1, "", "NotifierData"]], "adobe.pdfservices.operation.config.notifier.notifier_type": [[71, 1, 1, "", "NotifierType"]], "adobe.pdfservices.operation.config.notifier.notifier_type.NotifierType": [[71, 3, 1, "", "CALLBACK"]], "adobe.pdfservices.operation.config.proxy": [[6, 0, 0, "-", "proxy_authentication_credentials"], [6, 0, 0, "-", "proxy_scheme"], [6, 0, 0, "-", "proxy_server_config"], [6, 0, 0, "-", "username_password_credentials"]], "adobe.pdfservices.operation.config.proxy.proxy_authentication_credentials": [[72, 1, 1, "", "ProxyAuthenticationCredentials"]], "adobe.pdfservices.operation.config.proxy.proxy_scheme": [[72, 1, 1, "", "ProxyScheme"]], "adobe.pdfservices.operation.config.proxy.proxy_scheme.ProxyScheme": [[72, 3, 1, "", "HTTP"], [72, 3, 1, "", "HTTPS"], [72, 2, 1, "", "get"]], "adobe.pdfservices.operation.config.proxy.proxy_server_config": [[72, 1, 1, "", "ProxyServerConfig"]], "adobe.pdfservices.operation.config.proxy.proxy_server_config.ProxyServerConfig": [[72, 3, 1, "", "HTTPS_PORT"], [72, 3, 1, "", "HTTP_PORT"], [72, 2, 1, "", "from_json"], [72, 2, 1, "", "get_credentials"], [72, 2, 1, "", "get_host"], [72, 2, 1, "", "get_port"], [6, 2, 1, "", "get_port_based_on_scheme"], [72, 2, 1, "", "get_proxy_scheme"], [6, 2, 1, "", "proxy_config_map"]], "adobe.pdfservices.operation.config.proxy.username_password_credentials": [[72, 1, 1, "", "UsernamePasswordCredentials"]], "adobe.pdfservices.operation.config.proxy.username_password_credentials.UsernamePasswordCredentials": [[72, 2, 1, "", "from_json"], [72, 2, 1, "", "get_password"], [72, 2, 1, "", "get_username"]], "adobe.pdfservices.operation.exception": [[7, 0, 0, "-", "exceptions"]], "adobe.pdfservices.operation.exception.exceptions": [[73, 0, 0, "-", "SdkException"], [73, 0, 0, "-", "ServiceApiException"], [73, 0, 0, "-", "ServiceUsageException"]], "adobe.pdfservices.operation.exception.exceptions.SdkException": [[7, 4, 1, "", "request_tracking_id"], [73, 5, 1, "", "with_traceback"]], "adobe.pdfservices.operation.exception.exceptions.ServiceApiException": [[7, 3, 1, "", "DEFAULT_ERROR_CODE"], [7, 3, 1, "", "DEFAULT_STATUS_CODE"], [7, 4, 1, "", "error_code"], [7, 4, 1, "", "request_tracking_id"], [7, 4, 1, "", "status_code"], [73, 5, 1, "", "with_traceback"]], "adobe.pdfservices.operation.exception.exceptions.ServiceUsageException": [[7, 3, 1, "", "DEFAULT_ERROR_CODE"], [7, 3, 1, "", "DEFAULT_STATUS_CODE"], [7, 4, 1, "", "error_code"], [7, 4, 1, "", "request_tracking_id"], [7, 4, 1, "", "status_code"], [73, 5, 1, "", "with_traceback"]], "adobe.pdfservices.operation.internal": [[9, 0, 0, "-", "api"], [32, 0, 0, "-", "auth"], [33, 0, 0, "-", "constants"], [8, 0, 0, "-", "exceptions"], [8, 0, 0, "-", "execution_context"], [34, 0, 0, "-", "http"], [35, 0, 0, "-", "params"], [8, 0, 0, "-", "pdf_services_helper"], [36, 0, 0, "-", "util"]], "adobe.pdfservices.operation.internal.api": [[10, 0, 0, "-", "dto"], [9, 0, 0, "-", "pdf_services_api"], [9, 0, 0, "-", "storage_api"]], "adobe.pdfservices.operation.internal.api.dto": [[11, 0, 0, "-", "request"], [30, 0, 0, "-", "response"]], "adobe.pdfservices.operation.internal.api.dto.request": [[11, 0, 0, "-", "asset_upload_uri_request"], [12, 0, 0, "-", "autotagpdf"], [13, 0, 0, "-", "combinepdf"], [14, 0, 0, "-", "compresspdf"], [15, 0, 0, "-", "createpdf"], [16, 0, 0, "-", "document_generation"], [17, 0, 0, "-", "esealpdf"], [18, 0, 0, "-", "exportpdf"], [19, 0, 0, "-", "extract_pdf"], [20, 0, 0, "-", "htmltopdf"], [21, 0, 0, "-", "linearizepdf"], [22, 0, 0, "-", "ocrpdf"], [23, 0, 0, "-", "pagemanipulation"], [24, 0, 0, "-", "pdf_properties"], [25, 0, 0, "-", "pdf_services_api"], [26, 0, 0, "-", "pdftoimage"], [27, 0, 0, "-", "protect_pdf"], [28, 0, 0, "-", "remove_protection"], [29, 0, 0, "-", "splitpdf"]], "adobe.pdfservices.operation.internal.api.dto.request.asset_upload_uri_request": [[11, 1, 1, "", "AssetUploadURIRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.asset_upload_uri_request.AssetUploadURIRequest": [[11, 3, 1, "", "json_hint"], [11, 4, 1, "", "media_type"], [11, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf": [[12, 0, 0, "-", "autotag_pdf_external_asset_request"], [12, 0, 0, "-", "autotag_pdf_internal_asset_request"], [12, 0, 0, "-", "autotag_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_external_asset_request": [[12, 1, 1, "", "AutotagPDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_external_asset_request.AutotagPDFExternalAssetRequest": [[12, 3, 1, "", "json_hint"], [12, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_internal_asset_request": [[12, 1, 1, "", "AutotagPDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_internal_asset_request.AutotagPDFInternalAssetRequest": [[12, 3, 1, "", "json_hint"], [12, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_params_payload": [[12, 1, 1, "", "AutotagPDFParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf.autotag_pdf_params_payload.AutotagPDFParamsPayload": [[12, 3, 1, "", "json_hint"], [12, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.combinepdf": [[13, 0, 0, "-", "combine_pdf_external_asset_request"], [13, 0, 0, "-", "combine_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_external_asset_request": [[13, 1, 1, "", "CombinePDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_external_asset_request.CombinePDFExternalAssetRequest": [[13, 3, 1, "", "json_hint"], [13, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_internal_asset_request": [[13, 1, 1, "", "CombinePDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.combinepdf.combine_pdf_internal_asset_request.CombinePDFInternalAssetRequest": [[13, 3, 1, "", "json_hint"], [13, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf": [[14, 0, 0, "-", "compress_pdf_external_asset_request"], [14, 0, 0, "-", "compress_pdf_internal_asset_request"], [14, 0, 0, "-", "compress_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_external_asset_request": [[14, 1, 1, "", "CompressPDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_external_asset_request.CompressPDFExternalAssetRequest": [[14, 3, 1, "", "json_hint"], [14, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_internal_asset_request": [[14, 1, 1, "", "CompressPDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_internal_asset_request.CompressPDFInternalAssetRequest": [[14, 3, 1, "", "json_hint"], [14, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_params_payload": [[14, 1, 1, "", "CompressPDFParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.compresspdf.compress_pdf_params_payload.CompressPDFParamsPayload": [[14, 3, 1, "", "json_hint"], [14, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf": [[15, 0, 0, "-", "create_pdf_external_asset_request"], [15, 0, 0, "-", "create_pdf_internal_asset_request"], [15, 0, 0, "-", "create_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_external_asset_request": [[15, 1, 1, "", "CreatePDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_external_asset_request.CreatePDFExternalAssetRequest": [[15, 3, 1, "", "json_hint"], [15, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_internal_asset_request": [[15, 1, 1, "", "CreatePDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_internal_asset_request.CreatePDFInternalAssetRequest": [[15, 3, 1, "", "json_hint"], [15, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_params_payload": [[15, 1, 1, "", "CreatePDFParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.createpdf.create_pdf_params_payload.CreatePDFParamsPayload": [[15, 3, 1, "", "json_hint"], [15, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation": [[16, 0, 0, "-", "document_generation_external_asset_request"], [16, 0, 0, "-", "document_generation_internal_asset_request"], [16, 0, 0, "-", "document_generation_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_external_asset_request": [[16, 1, 1, "", "DocumentMergeExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_external_asset_request.DocumentMergeExternalAssetRequest": [[16, 3, 1, "", "json_hint"], [16, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_internal_asset_request": [[16, 1, 1, "", "DocumentMergeInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_internal_asset_request.DocumentMergeInternalAssetRequest": [[16, 3, 1, "", "json_hint"], [16, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_params_payload": [[16, 1, 1, "", "DocumentGenerationParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.document_generation.document_generation_params_payload.DocumentGenerationParamsPayload": [[16, 3, 1, "", "json_hint"], [16, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.esealpdf": [[17, 0, 0, "-", "eseal_pdf_external_asset_request"], [17, 0, 0, "-", "eseal_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_external_asset_request": [[17, 1, 1, "", "ESealPDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_external_asset_request.ESealPDFExternalAssetRequest": [[17, 3, 1, "", "json_hint"], [17, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_internal_asset_request": [[17, 1, 1, "", "ESealPDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.esealpdf.eseal_pdf_internal_asset_request.ESealPDFInternalAssetRequest": [[17, 3, 1, "", "json_hint"], [17, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf": [[18, 0, 0, "-", "export_pdf_external_asset_request"], [18, 0, 0, "-", "export_pdf_internal_asset_request"], [18, 0, 0, "-", "export_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_external_asset_request": [[18, 1, 1, "", "ExportPDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_external_asset_request.ExportPDFExternalAssetRequest": [[18, 3, 1, "", "json_hint"], [18, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_internal_asset_request": [[18, 1, 1, "", "ExportPDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_internal_asset_request.ExportPDFInternalAssetRequest": [[18, 3, 1, "", "json_hint"], [18, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_params_payload": [[18, 1, 1, "", "ExportPDFParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.exportpdf.export_pdf_params_payload.ExportPDFParamsPayload": [[18, 3, 1, "", "json_hint"], [18, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf": [[19, 0, 0, "-", "extract_pdf_external_asset_request"], [19, 0, 0, "-", "extract_pdf_internal_asset_request"], [19, 0, 0, "-", "extract_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_external_asset_request": [[19, 1, 1, "", "ExtractPDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_external_asset_request.ExtractPDFExternalAssetRequest": [[19, 3, 1, "", "json_hint"], [19, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_internal_asset_request": [[19, 1, 1, "", "ExtractPDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_internal_asset_request.ExtractPDFInternalAssetRequest": [[19, 3, 1, "", "json_hint"], [19, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_params_payload": [[19, 1, 1, "", "ExtractPDFParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf.extract_pdf_params_payload.ExtractPDFParamsPayload": [[19, 3, 1, "", "json_hint"], [19, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf": [[20, 0, 0, "-", "html_to_pdf_external_asset_request"], [20, 0, 0, "-", "html_to_pdf_internal_asset_request"], [20, 0, 0, "-", "html_to_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_external_asset_request": [[20, 1, 1, "", "HTMLtoPDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_external_asset_request.HTMLtoPDFExternalAssetRequest": [[20, 3, 1, "", "json_hint"], [20, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_internal_asset_request": [[20, 1, 1, "", "HTMLtoPDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_internal_asset_request.HTMLtoPDFInternalAssetRequest": [[20, 3, 1, "", "json_hint"], [20, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_params_payload": [[20, 1, 1, "", "HTMLtoPDFParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf.html_to_pdf_params_payload.HTMLtoPDFParamsPayload": [[20, 3, 1, "", "json_hint"], [20, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf": [[21, 0, 0, "-", "linearize_pdf_external_asset_request"], [21, 0, 0, "-", "linearize_pdf_internal_asset_request"]], "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_external_asset_request": [[21, 1, 1, "", "LinearizePDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_external_asset_request.LinearizePDFExternalAssetRequest": [[21, 3, 1, "", "json_hint"], [21, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_internal_asset_request": [[21, 1, 1, "", "LinearizePDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf.linearize_pdf_internal_asset_request.LinearizePDFInternalAssetRequest": [[21, 3, 1, "", "json_hint"], [21, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf": [[22, 0, 0, "-", "ocr_pdf_external_asset_request"], [22, 0, 0, "-", "ocr_pdf_internal_asset_request"], [22, 0, 0, "-", "ocr_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_external_asset_request": [[22, 1, 1, "", "OCRPDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_external_asset_request.OCRPDFExternalAssetRequest": [[22, 3, 1, "", "json_hint"], [22, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_internal_asset_request": [[22, 1, 1, "", "OCRPDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_internal_asset_request.OCRPDFInternalAssetRequest": [[22, 3, 1, "", "json_hint"], [22, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_params_payload": [[22, 1, 1, "", "OCRParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf.ocr_pdf_params_payload.OCRParamsPayload": [[22, 3, 1, "", "json_hint"], [22, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation": [[23, 0, 0, "-", "delete_page_action"], [23, 0, 0, "-", "page_action"], [23, 0, 0, "-", "page_action_command"], [23, 0, 0, "-", "page_action_commands"], [23, 0, 0, "-", "page_actions"], [23, 0, 0, "-", "page_manipulation_external_asset_request"], [23, 0, 0, "-", "page_manipulation_internal_asset_request"], [23, 0, 0, "-", "page_manipulation_params_payload"], [23, 0, 0, "-", "rotate_page_action"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.delete_page_action": [[23, 1, 1, "", "DeletePageAction"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.delete_page_action.DeletePageAction": [[23, 2, 1, "", "get_type"], [23, 3, 1, "", "json_hint"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action": [[23, 1, 1, "", "PageAction"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action.PageAction": [[23, 2, 1, "", "get_page_ranges"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_command": [[23, 1, 1, "", "PageActionCommand"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_command.PageActionCommand": [[23, 2, 1, "", "create_from"], [23, 3, 1, "", "json_hint"], [23, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands": [[23, 1, 1, "", "PageActionCommands"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_action_commands.PageActionCommands": [[23, 2, 1, "", "add_command"], [23, 2, 1, "", "get_commands"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions": [[23, 1, 1, "", "PageActions"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_actions.PageActions": [[23, 2, 1, "", "add_action"], [23, 2, 1, "", "get_actions"], [23, 2, 1, "", "get_length"], [23, 2, 1, "", "is_empty"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_external_asset_request": [[23, 1, 1, "", "PageManipulationExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_external_asset_request.PageManipulationExternalAssetRequest": [[23, 3, 1, "", "json_hint"], [23, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_internal_asset_request": [[23, 1, 1, "", "PageManipulationInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_internal_asset_request.PageManipulationInternalAssetRequest": [[23, 3, 1, "", "json_hint"], [23, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_params_payload": [[23, 1, 1, "", "PageManipulationParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.page_manipulation_params_payload.PageManipulationParamsPayload": [[23, 3, 1, "", "json_hint"], [23, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.rotate_page_action": [[23, 1, 1, "", "RotatePageAction"]], "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation.rotate_page_action.RotatePageAction": [[23, 2, 1, "", "get_rotation_angle"], [23, 3, 1, "", "json_hint"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties": [[24, 0, 0, "-", "pdf_properties_external_asset_request"], [24, 0, 0, "-", "pdf_properties_internal_asset_request"], [24, 0, 0, "-", "pdf_properties_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_external_asset_request": [[24, 1, 1, "", "PDFPropertiesExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_external_asset_request.PDFPropertiesExternalAssetRequest": [[24, 3, 1, "", "json_hint"], [24, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_internal_asset_request": [[24, 1, 1, "", "PDFPropertiesInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_internal_asset_request.PDFPropertiesInternalAssetRequest": [[24, 3, 1, "", "json_hint"], [24, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_params_payload": [[24, 1, 1, "", "PDFPropertiesParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties.pdf_properties_params_payload.PDFPropertiesParamsPayload": [[24, 3, 1, "", "json_hint"], [24, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api": [[25, 0, 0, "-", "pdf_services_api_request"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.pdf_services_api_request": [[25, 1, 1, "", "PDFServicesAPIRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api.pdf_services_api_request.PDFServicesAPIRequest": [[25, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage": [[26, 0, 0, "-", "pdf_to_image_external_asset_request"], [26, 0, 0, "-", "pdf_to_image_internal_asset_request"], [26, 0, 0, "-", "pdf_to_image_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_external_asset_request": [[26, 1, 1, "", "PDFtoImagesExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_external_asset_request.PDFtoImagesExternalAssetRequest": [[26, 3, 1, "", "json_hint"], [26, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_internal_asset_request": [[26, 1, 1, "", "PDFToImagesInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_internal_asset_request.PDFToImagesInternalAssetRequest": [[26, 3, 1, "", "json_hint"], [26, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_params_payload": [[26, 1, 1, "", "PDFtoImageParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage.pdf_to_image_params_payload.PDFtoImageParamsPayload": [[26, 3, 1, "", "json_hint"], [26, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf": [[27, 0, 0, "-", "protect_pdf_external_asset_request"], [27, 0, 0, "-", "protect_pdf_internal_asset_request"], [27, 0, 0, "-", "protect_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_external_asset_request": [[27, 1, 1, "", "ProtectPDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_external_asset_request.ProtectPDFExternalAssetRequest": [[27, 3, 1, "", "json_hint"], [27, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_internal_asset_request": [[27, 1, 1, "", "ProtectPDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_internal_asset_request.ProtectPDFInternalAssetRequest": [[27, 3, 1, "", "json_hint"], [27, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_params_payload": [[27, 1, 1, "", "ProtectPDFParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf.protect_pdf_params_payload.ProtectPDFParamsPayload": [[27, 3, 1, "", "json_hint"], [27, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection": [[28, 0, 0, "-", "remove_protection_extenal_asset_request"], [28, 0, 0, "-", "remove_protection_internal_asset_request"], [28, 0, 0, "-", "remove_protection_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_extenal_asset_request": [[28, 1, 1, "", "RemoveProtectionExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_extenal_asset_request.RemoveProtectionExternalAssetRequest": [[28, 3, 1, "", "json_hint"], [28, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_internal_asset_request": [[28, 1, 1, "", "RemoveProtectionInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_internal_asset_request.RemoveProtectionInternalAssetRequest": [[28, 3, 1, "", "json_hint"], [28, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_params_payload": [[28, 1, 1, "", "RemoveProtectionParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.remove_protection.remove_protection_params_payload.RemoveProtectionParamsPayload": [[28, 3, 1, "", "json_hint"], [28, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf": [[29, 0, 0, "-", "split_pdf_external_asset_request"], [29, 0, 0, "-", "split_pdf_internal_asset_request"], [29, 0, 0, "-", "split_pdf_params_payload"]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_external_asset_request": [[29, 1, 1, "", "SplitPDFExternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_external_asset_request.SplitPDFExternalAssetRequest": [[29, 3, 1, "", "json_hint"], [29, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_internal_asset_request": [[29, 1, 1, "", "SplitPDFInternalAssetRequest"]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_internal_asset_request.SplitPDFInternalAssetRequest": [[29, 3, 1, "", "json_hint"], [29, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_params_payload": [[29, 1, 1, "", "SplitPDFParamsPayload"]], "adobe.pdfservices.operation.internal.api.dto.request.splitpdf.split_pdf_params_payload.SplitPDFParamsPayload": [[29, 3, 1, "", "json_hint"], [29, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.dto.response": [[30, 0, 0, "-", "job_status"], [31, 0, 0, "-", "pdf_services_api"]], "adobe.pdfservices.operation.internal.api.dto.response.job_status": [[30, 1, 1, "", "JobStatus"]], "adobe.pdfservices.operation.internal.api.dto.response.job_status.JobStatus": [[30, 3, 1, "", "DONE"], [30, 3, 1, "", "FAILED"], [30, 3, 1, "", "IN_PROGRESS"]], "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api": [[31, 0, 0, "-", "job_error_response"], [31, 0, 0, "-", "pdf_services_api_response"]], "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response": [[31, 1, 1, "", "JobErrorResponse"]], "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.job_error_response.JobErrorResponse": [[31, 2, 1, "", "get_code"], [31, 2, 1, "", "get_message"], [31, 2, 1, "", "get_status"]], "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.pdf_services_api_response": [[31, 1, 1, "", "PDFServicesAPIResponse"]], "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api.pdf_services_api_response.PDFServicesAPIResponse": [[31, 2, 1, "", "from_json"], [31, 2, 1, "", "get_error_response"], [31, 2, 1, "", "get_status"], [31, 3, 1, "", "json_hint"], [31, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.api.pdf_services_api": [[9, 1, 1, "", "PDFServicesAPI"]], "adobe.pdfservices.operation.internal.api.pdf_services_api.PDFServicesAPI": [[9, 3, 1, "", "POLLING_TIMEOUT_STATUS_CODE"], [9, 3, 1, "", "assets"], [9, 2, 1, "", "delete_asset"], [9, 2, 1, "", "get_response"], [9, 2, 1, "", "handle_error_response"], [9, 3, 1, "", "operation"], [9, 2, 1, "", "status_poll"], [9, 2, 1, "", "submit_job"]], "adobe.pdfservices.operation.internal.api.storage_api": [[9, 1, 1, "", "StorageApi"]], "adobe.pdfservices.operation.internal.api.storage_api.StorageApi": [[9, 3, 1, "", "assets"], [9, 2, 1, "", "get_download_uri"], [9, 2, 1, "", "get_upload_uri"], [9, 2, 1, "", "handle_error_response"], [9, 2, 1, "", "upload_to_cloud"]], "adobe.pdfservices.operation.internal.auth": [[32, 0, 0, "-", "auth_factory"], [32, 0, 0, "-", "authenticator"], [32, 0, 0, "-", "service_principal_authenticator"], [32, 0, 0, "-", "service_token_authenticator"], [32, 0, 0, "-", "service_token_credentials"], [32, 0, 0, "-", "session_token"]], "adobe.pdfservices.operation.internal.auth.auth_factory": [[32, 1, 1, "", "AuthenticatorFactory"]], "adobe.pdfservices.operation.internal.auth.auth_factory.AuthenticatorFactory": [[32, 2, 1, "", "get_authenticator"]], "adobe.pdfservices.operation.internal.auth.authenticator": [[32, 1, 1, "", "Authenticator"]], "adobe.pdfservices.operation.internal.auth.authenticator.Authenticator": [[32, 2, 1, "", "get_api_key"], [32, 2, 1, "", "refresh_token"], [32, 2, 1, "", "session_token"]], "adobe.pdfservices.operation.internal.auth.service_principal_authenticator": [[32, 1, 1, "", "ServicePrincipalAuthenticator"]], "adobe.pdfservices.operation.internal.auth.service_principal_authenticator.ServicePrincipalAuthenticator": [[32, 2, 1, "", "get_api_key"], [32, 2, 1, "", "handle_ims_failure"], [32, 2, 1, "", "refresh_token"], [32, 3, 1, "", "service_principal_configuration"], [32, 2, 1, "", "session_token"], [32, 2, 1, "", "time_to_expire"], [32, 3, 1, "", "token"], [32, 3, 1, "", "token_endpoint"]], "adobe.pdfservices.operation.internal.auth.service_token_authenticator": [[32, 1, 1, "", "ServiceTokenAuthenticator"]], "adobe.pdfservices.operation.internal.auth.service_token_authenticator.ServiceTokenAuthenticator": [[32, 2, 1, "", "get_api_key"], [32, 2, 1, "", "refresh_token"], [32, 2, 1, "", "session_token"]], "adobe.pdfservices.operation.internal.auth.service_token_credentials": [[32, 1, 1, "", "ServiceTokenCredentials"]], "adobe.pdfservices.operation.internal.auth.service_token_credentials.ServiceTokenCredentials": [[32, 2, 1, "", "get_client_id"], [32, 2, 1, "", "get_token"], [32, 2, 1, "", "set_client_id"], [32, 2, 1, "", "set_token"]], "adobe.pdfservices.operation.internal.auth.session_token": [[32, 1, 1, "", "SessionToken"]], "adobe.pdfservices.operation.internal.auth.session_token.SessionToken": [[32, 3, 1, "", "expired_at"]], "adobe.pdfservices.operation.internal.constants": [[33, 0, 0, "-", "custom_error_messages"], [33, 0, 0, "-", "operation_header_info_endpoint_map"], [33, 0, 0, "-", "pdf_services_uri"], [33, 0, 0, "-", "request_key"], [33, 0, 0, "-", "service_constants"]], "adobe.pdfservices.operation.internal.constants.custom_error_messages": [[33, 1, 1, "", "CustomErrorMessages"]], "adobe.pdfservices.operation.internal.constants.custom_error_messages.CustomErrorMessages": [[33, 3, 1, "", "GENERIC_CAN_NOT_BE_NONE"], [33, 3, 1, "", "GENERIC_CAN_NOT_BE_NONE_OR_EMPTY"], [33, 3, 1, "", "INVALID_INPUT_ASSET"], [33, 3, 1, "", "INVALID_OUTPUT_ASSET"], [33, 3, 1, "", "SET_OUTPUT_VALIDATE"]], "adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map": [[33, 1, 1, "", "OperationHeaderInfoEndpointMap"]], "adobe.pdfservices.operation.internal.constants.operation_header_info_endpoint_map.OperationHeaderInfoEndpointMap": [[33, 3, 1, "", "AUTO_TAG"], [33, 3, 1, "", "COMBINE_PDF"], [33, 3, 1, "", "COMPRESS_PDF"], [33, 3, 1, "", "CREATE_PDF"], [33, 3, 1, "", "DELETE_PAGES"], [33, 3, 1, "", "EXPORT_PDF"], [33, 3, 1, "", "EXPORT_PDF_FORM_DATA"], [33, 3, 1, "", "EXPORT_PDF_TO_IMAGES"], [33, 3, 1, "", "EXTRACT_PDF"], [33, 3, 1, "", "E_SEAL"], [33, 3, 1, "", "HTML_TO_PDF"], [33, 3, 1, "", "IMPORT_PDF_FORM_DATA"], [33, 3, 1, "", "INSERT_PAGES"], [33, 3, 1, "", "LINEARIZE_PDF"], [33, 3, 1, "", "MERGE_DOCUMENT"], [33, 3, 1, "", "OCR"], [33, 3, 1, "", "PDF_ACCESSIBILITY_CHECKER"], [33, 3, 1, "", "PDF_PROPERTIES"], [33, 3, 1, "", "PDF_WATERMARK"], [33, 3, 1, "", "PROTECT_PDF"], [33, 3, 1, "", "REMOVE_PROTECTION"], [33, 3, 1, "", "REORDER_PAGES"], [33, 3, 1, "", "REPLACE_PAGES"], [33, 3, 1, "", "ROTATE_PAGES"], [33, 3, 1, "", "SPLIT_PDF"], [33, 2, 1, "", "get_endpoint"], [33, 2, 1, "", "get_header_info"]], "adobe.pdfservices.operation.internal.constants.pdf_services_uri": [[33, 1, 1, "", "PDFServicesURI"]], "adobe.pdfservices.operation.internal.constants.pdf_services_uri.PDFServicesURI": [[33, 3, 1, "", "EU_URI"], [33, 3, 1, "", "REGION_URI_MAP"], [33, 3, 1, "", "URI"], [33, 3, 1, "", "US_URI"], [33, 2, 1, "", "get_default_uri"], [33, 2, 1, "", "get_uri_for_region"]], "adobe.pdfservices.operation.internal.constants.request_key": [[33, 1, 1, "", "RequestKey"]], "adobe.pdfservices.operation.internal.constants.request_key.RequestKey": [[33, 3, 1, "", "AUTHN"], [33, 3, 1, "", "DOWNLOAD"], [33, 3, 1, "", "PLATFORM"], [33, 3, 1, "", "STATUS"], [33, 3, 1, "", "UPLOAD"]], "adobe.pdfservices.operation.internal.constants.service_constants": [[33, 1, 1, "", "ServiceConstants"]], "adobe.pdfservices.operation.internal.constants.service_constants.ServiceConstants": [[33, 3, 1, "", "AUTOTAG_OPERATION_NAME"], [33, 3, 1, "", "COMBINE_PDF_NAME"], [33, 3, 1, "", "COMPRESS_PDF_OPERATION_NAME"], [33, 3, 1, "", "CREATE_OPERATION_NAME"], [33, 3, 1, "", "DELETE_PAGES_OPERATION_NAME"], [33, 3, 1, "", "DOCUMENT_MERGE_OPERATION_NAME"], [33, 3, 1, "", "ESEAL_PDF_NAME"], [33, 3, 1, "", "EXPORT_PDF_FORM_DATA_OPERATION_NAME"], [33, 3, 1, "", "EXPORT_PDF_OPERATION_NAME"], [33, 3, 1, "", "EXTRACT_OPERATION_NAME"], [33, 3, 1, "", "HTML_TO_PDF_OPERATION_NAME"], [33, 3, 1, "", "HTTP_CONNECT_TIMEOUT"], [33, 3, 1, "", "HTTP_READ_TIMEOUT"], [33, 3, 1, "", "IMPORT_PDF_FORM_DATA_OPERATION_NAME"], [33, 3, 1, "", "INSERT_PAGES_OPERATION_NAME"], [33, 3, 1, "", "LINEARIZE_PDF_OPERATION_NAME"], [33, 3, 1, "", "OCR_PDF_OPERATION_NAME"], [33, 3, 1, "", "OPERATION_RESULT_TEMP_DIRECTORY"], [33, 3, 1, "", "PDF_ACCESSIBILITY_CHECKER_OPERATION_NAME"], [33, 3, 1, "", "PDF_PROPERTIES_OPERATION_NAME"], [33, 3, 1, "", "PDF_TO_IMAGES_OPERATION_NAME"], [33, 3, 1, "", "PDF_WATERMARK_OPERATION_NAME"], [33, 3, 1, "", "PROTECT_PDF_NAME"], [33, 3, 1, "", "REMOVE_PROTECTION_OPERATION_NAME"], [33, 3, 1, "", "REORDER_PAGES_OPERATION_NAME"], [33, 3, 1, "", "REPLACE_PAGES_OPERATION_NAME"], [33, 3, 1, "", "ROTATE_PAGES_OPERATION_NAME"], [33, 3, 1, "", "SPLIT_PDF_OPERATION_NAME"]], "adobe.pdfservices.operation.internal.exceptions": [[8, 6, 1, "", "OperationException"]], "adobe.pdfservices.operation.internal.exceptions.OperationException": [[8, 4, 1, "", "error_code"]], "adobe.pdfservices.operation.internal.execution_context": [[8, 1, 1, "", "ExecutionContext"]], "adobe.pdfservices.operation.internal.execution_context.ExecutionContext": [[8, 4, 1, "", "authenticator"], [8, 4, 1, "", "client_config"], [8, 4, 1, "", "credentials"], [8, 2, 1, "", "validate"]], "adobe.pdfservices.operation.internal.http": [[34, 0, 0, "-", "http_client"], [34, 0, 0, "-", "http_method"], [34, 0, 0, "-", "http_request"], [34, 0, 0, "-", "request_header_const"], [34, 0, 0, "-", "response_util"]], "adobe.pdfservices.operation.internal.http.http_client": [[34, 5, 1, "", "process_request"]], "adobe.pdfservices.operation.internal.http.http_method": [[34, 1, 1, "", "HttpMethod"]], "adobe.pdfservices.operation.internal.http.http_method.HttpMethod": [[34, 3, 1, "", "DELETE"], [34, 3, 1, "", "GET"], [34, 3, 1, "", "POST"], [34, 3, 1, "", "PUT"]], "adobe.pdfservices.operation.internal.http.http_request": [[34, 1, 1, "", "HttpRequest"]], "adobe.pdfservices.operation.internal.http.request_header_const": [[34, 1, 1, "", "DefaultHeaders"]], "adobe.pdfservices.operation.internal.http.request_header_const.DefaultHeaders": [[34, 3, 1, "", "ACCEPT_HEADER_NAME"], [34, 3, 1, "", "AUTHORIZATION_HEADER_NAME"], [34, 3, 1, "", "CONTENT_TYPE_HEADER_NAME"], [34, 3, 1, "", "DC_APP_INFO_HEADER_KEY"], [34, 3, 1, "", "DC_REQUEST_ID_HEADER_KEY"], [34, 3, 1, "", "JSON_TXT_CONTENT_TYPE"], [34, 3, 1, "", "LOCATION_HEADER_NAME"], [34, 3, 1, "", "SESSION_TOKEN_REQUEST_ID_HEADER_KEY"], [34, 3, 1, "", "X_API_KEY_HEADER_NAME"], [34, 3, 1, "", "X_DCSDK_OPS_INFO_HEADER_NAME"]], "adobe.pdfservices.operation.internal.http.response_util": [[34, 1, 1, "", "ResponseUtil"]], "adobe.pdfservices.operation.internal.http.response_util.ResponseUtil": [[34, 3, 1, "", "CUSTOM_ERROR_MESSAGES_STATUS_CODE_MAPPING"], [34, 3, 1, "", "INTEGRATION_SERVICE_USAGE_LIMIT_REACHED_ERROR_MESSAGE"], [34, 3, 1, "", "QUOTA_ERROR_MESSAGE"], [34, 3, 1, "", "SERVICE_USAGE_EXCEPTION_STATUS_CODE_429001_STRING"], [34, 3, 1, "", "SERVICE_USAGE_EXCEPTION_STATUS_CODE_429002_STRING"], [34, 3, 1, "", "SERVICE_USAGE_LIMIT_REACHED_ERROR_MESSAGE"], [34, 2, 1, "", "get_request_tracking_id_from_response"], [34, 2, 1, "", "handle_api_failures"], [34, 2, 1, "", "handle_service_api_error_response"], [34, 2, 1, "", "handle_service_usage_failure"], [34, 2, 1, "", "handle_upload_asset_failure"]], "adobe.pdfservices.operation.internal.params": [[35, 0, 0, "-", "combine_pdf_job_input"], [35, 0, 0, "-", "page_range"]], "adobe.pdfservices.operation.internal.params.combine_pdf_job_input": [[35, 1, 1, "", "CombinePDFJobInput"]], "adobe.pdfservices.operation.internal.params.combine_pdf_job_input.CombinePDFJobInput": [[35, 2, 1, "", "get_asset"], [35, 2, 1, "", "get_page_ranges"], [35, 3, 1, "", "json_hint"], [35, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.internal.params.page_range": [[35, 1, 1, "", "PageRange"]], "adobe.pdfservices.operation.internal.params.page_range.PageRange": [[35, 2, 1, "", "get_end"], [35, 2, 1, "", "get_start"], [35, 3, 1, "", "json_hint"], [35, 2, 1, "", "to_json"], [35, 2, 1, "", "validate"]], "adobe.pdfservices.operation.internal.pdf_services_helper": [[8, 1, 1, "", "PDFServicesHelper"]], "adobe.pdfservices.operation.internal.pdf_services_helper.PDFServicesHelper": [[8, 2, 1, "", "delete_asset"], [8, 2, 1, "", "get_content"], [8, 2, 1, "", "get_job_result"], [8, 2, 1, "", "get_job_status"], [8, 2, 1, "", "refresh_download_uri"], [8, 2, 1, "", "submit_job"], [8, 2, 1, "", "upload"], [8, 2, 1, "", "upload_assets"]], "adobe.pdfservices.operation.internal.util": [[36, 0, 0, "-", "asset_upload_util"], [36, 0, 0, "-", "enforce_types"], [36, 0, 0, "-", "file_utils"], [36, 0, 0, "-", "json_hint_encoder"], [36, 0, 0, "-", "object_util"], [36, 0, 0, "-", "path_util"], [36, 0, 0, "-", "string_util"], [36, 0, 0, "-", "validation_util"]], "adobe.pdfservices.operation.internal.util.asset_upload_util": [[36, 1, 1, "", "AssetUploadUtil"]], "adobe.pdfservices.operation.internal.util.enforce_types": [[36, 5, 1, "", "enforce_types"]], "adobe.pdfservices.operation.internal.util.file_utils": [[36, 5, 1, "", "read_conf_file_content"]], "adobe.pdfservices.operation.internal.util.json_hint_encoder": [[36, 1, 1, "", "JSONHintDecoder"], [36, 1, 1, "", "JSONHintEncoder"]], "adobe.pdfservices.operation.internal.util.json_hint_encoder.JSONHintDecoder": [[36, 2, 1, "", "as_class"], [36, 2, 1, "", "rev"]], "adobe.pdfservices.operation.internal.util.json_hint_encoder.JSONHintEncoder": [[36, 2, 1, "", "default"]], "adobe.pdfservices.operation.internal.util.object_util": [[36, 1, 1, "", "ObjectUtil"]], "adobe.pdfservices.operation.internal.util.object_util.ObjectUtil": [[36, 2, 1, "", "require_not_null"]], "adobe.pdfservices.operation.internal.util.path_util": [[36, 5, 1, "", "get_file_path"]], "adobe.pdfservices.operation.internal.util.string_util": [[36, 1, 1, "", "StringUtil"]], "adobe.pdfservices.operation.internal.util.string_util.StringUtil": [[36, 2, 1, "", "is_blank"]], "adobe.pdfservices.operation.internal.util.validation_util": [[36, 1, 1, "", "ValidationUtil"]], "adobe.pdfservices.operation.internal.util.validation_util.ValidationUtil": [[36, 2, 1, "", "validate_asset_with_page_options"], [36, 2, 1, "", "validate_csc_credential"], [36, 2, 1, "", "validate_document_merge_params"], [36, 2, 1, "", "validate_execution_context"], [36, 2, 1, "", "validate_field_location"], [36, 2, 1, "", "validate_field_options"], [36, 2, 1, "", "validate_insert_asset_inputs"], [36, 2, 1, "", "validate_page_options"], [36, 2, 1, "", "validate_page_ranges"], [36, 2, 1, "", "validate_page_ranges_overlap"], [36, 2, 1, "", "validate_password"], [36, 2, 1, "", "validate_password_to_remove_protection"], [36, 2, 1, "", "validate_pdf_electronic_seal_params"], [36, 2, 1, "", "validate_protect_pdf_params"], [36, 2, 1, "", "validate_replace_files_inputs"], [36, 2, 1, "", "validate_rotate_page_actions"], [36, 2, 1, "", "validate_split_pdf_operation_params"]], "adobe.pdfservices.operation.io": [[37, 0, 0, "-", "asset"], [37, 0, 0, "-", "cloud_asset"], [37, 0, 0, "-", "external_asset"], [37, 0, 0, "-", "external_storage_type"], [37, 0, 0, "-", "stream_asset"]], "adobe.pdfservices.operation.io.asset": [[75, 1, 1, "", "Asset"]], "adobe.pdfservices.operation.io.cloud_asset": [[75, 1, 1, "", "CloudAsset"]], "adobe.pdfservices.operation.io.cloud_asset.CloudAsset": [[75, 2, 1, "", "get_asset_id"], [75, 2, 1, "", "get_download_uri"]], "adobe.pdfservices.operation.io.external_asset": [[75, 1, 1, "", "ExternalAsset"]], "adobe.pdfservices.operation.io.external_asset.ExternalAsset": [[75, 2, 1, "", "get_external_storage_type"], [75, 2, 1, "", "get_uri"], [37, 3, 1, "", "json_hint"], [37, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.io.external_storage_type": [[75, 1, 1, "", "ExternalStorageType"]], "adobe.pdfservices.operation.io.external_storage_type.ExternalStorageType": [[75, 3, 1, "", "BLOB"], [75, 3, 1, "", "DROPBOX"], [75, 3, 1, "", "S3"], [75, 3, 1, "", "SHAREPOINT"], [75, 2, 1, "", "get"]], "adobe.pdfservices.operation.io.stream_asset": [[75, 1, 1, "", "StreamAsset"]], "adobe.pdfservices.operation.io.stream_asset.StreamAsset": [[75, 2, 1, "", "get_input_stream"], [75, 2, 1, "", "get_mime_type"]], "adobe.pdfservices.operation.pdf_services": [[74, 1, 1, "", "PDFServices"]], "adobe.pdfservices.operation.pdf_services.PDFServices": [[74, 2, 1, "", "delete_asset"], [74, 2, 1, "", "get_content"], [74, 2, 1, "", "get_job_result"], [74, 2, 1, "", "get_job_status"], [74, 2, 1, "", "refresh_download_uri"], [74, 2, 1, "", "submit"], [74, 2, 1, "", "upload"], [74, 2, 1, "", "upload_assets"]], "adobe.pdfservices.operation.pdf_services_job": [[74, 1, 1, "", "PDFServicesJob"]], "adobe.pdfservices.operation.pdf_services_job_status": [[74, 1, 1, "", "PDFServicesJobStatus"]], "adobe.pdfservices.operation.pdf_services_job_status.PDFServicesJobStatus": [[74, 3, 1, "", "DONE"], [74, 3, 1, "", "FAILED"], [74, 3, 1, "", "IN_PROGRESS"], [74, 2, 1, "", "get_value"]], "adobe.pdfservices.operation.pdf_services_job_status_response": [[74, 1, 1, "", "PDFServicesJobStatusResponse"]], "adobe.pdfservices.operation.pdf_services_job_status_response.PDFServicesJobStatusResponse": [[74, 2, 1, "", "get_retry_interval"], [74, 2, 1, "", "get_status"]], "adobe.pdfservices.operation.pdf_services_media_type": [[74, 1, 1, "", "PDFServicesMediaType"]], "adobe.pdfservices.operation.pdf_services_media_type.PDFServicesMediaType": [[74, 3, 1, "", "AI"], [74, 3, 1, "", "BMP"], [74, 3, 1, "", "CSV"], [74, 3, 1, "", "DOC"], [74, 3, 1, "", "DOCX"], [74, 3, 1, "", "GIF"], [74, 3, 1, "", "HTML"], [74, 3, 1, "", "INDD"], [74, 3, 1, "", "JPEG"], [74, 3, 1, "", "JPG"], [74, 3, 1, "", "JSON"], [74, 3, 1, "", "PDF"], [74, 3, 1, "", "PNG"], [74, 3, 1, "", "PPT"], [74, 3, 1, "", "PPTX"], [74, 3, 1, "", "PSD"], [74, 3, 1, "", "RTF"], [74, 3, 1, "", "SVG"], [74, 3, 1, "", "TIF"], [74, 3, 1, "", "TIFF"], [74, 3, 1, "", "TXT"], [74, 3, 1, "", "XLS"], [74, 3, 1, "", "XLSX"], [74, 3, 1, "", "ZIP"], [74, 4, 1, "", "extension"], [74, 2, 1, "", "get_from_extension"], [74, 4, 1, "", "mime_type"]], "adobe.pdfservices.operation.pdf_services_response": [[74, 1, 1, "", "PDFServicesResponse"]], "adobe.pdfservices.operation.pdf_services_response.PDFServicesResponse": [[74, 2, 1, "", "get_result"]], "adobe.pdfservices.operation.pdfjobs": [[39, 0, 0, "-", "jobs"], [41, 0, 0, "-", "params"], [66, 0, 0, "-", "result"]], "adobe.pdfservices.operation.pdfjobs.jobs": [[39, 0, 0, "-", "autotag_pdf_job"], [39, 0, 0, "-", "combine_pdf_job"], [39, 0, 0, "-", "compress_pdf_job"], [39, 0, 0, "-", "create_pdf_job"], [39, 0, 0, "-", "delete_pages_job"], [39, 0, 0, "-", "document_merge_job"], [39, 0, 0, "-", "eseal_job"], [40, 0, 0, "-", "export_pdf_form_data_job"], [39, 0, 0, "-", "export_pdf_job"], [39, 0, 0, "-", "export_pdf_to_images_job"], [39, 0, 0, "-", "extract_pdf_job"], [39, 0, 0, "-", "html_to_pdf_job"], [39, 0, 0, "-", "insert_pages_job"], [39, 0, 0, "-", "linearize_pdf_job"], [39, 0, 0, "-", "ocr_pdf_job"], [39, 0, 0, "-", "pdf_properties_job"], [39, 0, 0, "-", "protect_pdf_job"], [39, 0, 0, "-", "remove_protection_job"], [39, 0, 0, "-", "reorder_pages_job"], [39, 0, 0, "-", "replace_pages_job"], [39, 0, 0, "-", "rotate_pages_job"], [39, 0, 0, "-", "split_pdf_job"]], "adobe.pdfservices.operation.pdfjobs.jobs.autotag_pdf_job": [[77, 1, 1, "", "AutotagPDFJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.combine_pdf_job": [[77, 1, 1, "", "CombinePDFJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.compress_pdf_job": [[77, 1, 1, "", "CompressPDFJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.create_pdf_job": [[77, 1, 1, "", "CreatePDFJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.delete_pages_job": [[77, 1, 1, "", "DeletePagesJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.document_merge_job": [[77, 1, 1, "", "DocumentMergeJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.eseal_job": [[77, 1, 1, "", "PDFElectronicSealJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data_job": [[40, 1, 1, "", "ExportPDFFormDataJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_job": [[77, 1, 1, "", "ExportPDFJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_to_images_job": [[77, 1, 1, "", "ExportPDFtoImagesJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.extract_pdf_job": [[77, 1, 1, "", "ExtractPDFJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.html_to_pdf_job": [[77, 1, 1, "", "HTMLtoPDFJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.import_pdf_form_data_job": [[77, 1, 1, "", "ImportPDFFormDataJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.import_pdf_form_data_job.ImportPDFFormDataJob": [[77, 2, 1, "", "set_output"], [77, 2, 1, "", "set_params"]], "adobe.pdfservices.operation.pdfjobs.jobs.insert_pages_job": [[77, 1, 1, "", "InsertPagesJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.linearize_pdf_job": [[77, 1, 1, "", "LinearizePDFJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.ocr_pdf_job": [[77, 1, 1, "", "OCRPDFJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.pdf_accessibility_checker_job": [[77, 1, 1, "", "PDFAccessibilityCheckerJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.pdf_properties_job": [[77, 1, 1, "", "PDFPropertiesJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.pdf_watermark_job": [[77, 1, 1, "", "PDFWatermarkJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.protect_pdf_job": [[77, 1, 1, "", "ProtectPDFJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.remove_protection_job": [[77, 1, 1, "", "RemoveProtectionJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.reorder_pages_job": [[77, 1, 1, "", "ReorderPagesJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.replace_pages_job": [[77, 1, 1, "", "ReplacePagesJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.rotate_pages_job": [[77, 1, 1, "", "RotatePagesJob"]], "adobe.pdfservices.operation.pdfjobs.jobs.split_pdf_job": [[77, 1, 1, "", "SplitPDFJob"]], "adobe.pdfservices.operation.pdfjobs.params": [[42, 0, 0, "-", "autotag_pdf"], [43, 0, 0, "-", "combine_pdf"], [44, 0, 0, "-", "compress_pdf"], [45, 0, 0, "-", "create_pdf"], [49, 0, 0, "-", "delete_pages"], [50, 0, 0, "-", "documentmerge"], [51, 0, 0, "-", "eseal"], [52, 0, 0, "-", "export_pdf"], [53, 0, 0, "-", "extract_pdf"], [54, 0, 0, "-", "html_to_pdf"], [55, 0, 0, "-", "import_pdf_form_data"], [56, 0, 0, "-", "insert_pages"], [57, 0, 0, "-", "ocr_pdf"], [41, 0, 0, "-", "page_ranges"], [58, 0, 0, "-", "pdf_properties"], [41, 0, 0, "-", "pdf_services_job_params"], [59, 0, 0, "-", "pdf_to_image"], [60, 0, 0, "-", "protect_pdf"], [61, 0, 0, "-", "remove_protection"], [62, 0, 0, "-", "reorder_pages"], [63, 0, 0, "-", "replace_pages"], [64, 0, 0, "-", "rotate_pages"], [65, 0, 0, "-", "split_pdf"]], "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf": [[78, 0, 0, "-", "autotag_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params": [[78, 1, 1, "", "AutotagPDFParams"]], "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf.autotag_pdf_params.AutotagPDFParams": [[78, 2, 1, "", "get_generate_report"], [78, 2, 1, "", "get_shift_headings"]], "adobe.pdfservices.operation.pdfjobs.params.combine_pdf": [[78, 0, 0, "-", "combine_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params": [[78, 1, 1, "", "CombinePDFParams"]], "adobe.pdfservices.operation.pdfjobs.params.combine_pdf.combine_pdf_params.CombinePDFParams": [[78, 2, 1, "", "add_asset"], [78, 2, 1, "", "get_assets_to_combine"]], "adobe.pdfservices.operation.pdfjobs.params.compress_pdf": [[78, 0, 0, "-", "compress_pdf_params"], [78, 0, 0, "-", "compression_level"]], "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params": [[78, 1, 1, "", "CompressPDFParams"]], "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compress_pdf_params.CompressPDFParams": [[78, 2, 1, "", "get_compression_level"]], "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level": [[78, 1, 1, "", "CompressionLevel"]], "adobe.pdfservices.operation.pdfjobs.params.compress_pdf.compression_level.CompressionLevel": [[78, 3, 1, "", "HIGH"], [78, 3, 1, "", "LOW"], [78, 3, 1, "", "MEDIUM"], [78, 2, 1, "", "get_compression_level"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf": [[78, 0, 0, "-", "CreatePDFParams"], [46, 0, 0, "-", "excel"], [47, 0, 0, "-", "ppt"], [48, 0, 0, "-", "word"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams": [[78, 1, 1, "", "CreatePDFParams"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.CreatePDFParams.CreatePDFParams": [[45, 2, 1, "", "get_create_tagged_pdf"], [45, 2, 1, "", "get_document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel": [[78, 0, 0, "-", "create_pdf_from_excel_params"], [78, 0, 0, "-", "document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params": [[78, 1, 1, "", "CreatePDFFromExcelParams"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.create_pdf_from_excel_params.CreatePDFFromExcelParams": [[46, 2, 1, "", "get_create_tagged_pdf"], [78, 2, 1, "", "get_document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language": [[78, 1, 1, "", "DocumentLanguage"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel.document_language.DocumentLanguage": [[78, 3, 1, "", "BG_BG"], [78, 3, 1, "", "CA_CA"], [78, 3, 1, "", "CS_CZ"], [78, 3, 1, "", "DA_DK"], [78, 3, 1, "", "DE_CH"], [78, 3, 1, "", "DE_DE"], [78, 3, 1, "", "EL_GR"], [78, 3, 1, "", "EN_GB"], [78, 3, 1, "", "EN_US"], [78, 3, 1, "", "ES_ES"], [78, 3, 1, "", "ET_EE"], [78, 3, 1, "", "FI_FI"], [78, 3, 1, "", "FR_FR"], [78, 3, 1, "", "HR_HR"], [78, 3, 1, "", "HU_HU"], [78, 3, 1, "", "IT_IT"], [78, 3, 1, "", "IW_IL"], [78, 3, 1, "", "JA_JP"], [78, 3, 1, "", "KO_KR"], [78, 3, 1, "", "LT_LT"], [78, 3, 1, "", "LV_LV"], [78, 3, 1, "", "MK_MK"], [78, 3, 1, "", "MT_MT"], [78, 3, 1, "", "NB_NO"], [78, 3, 1, "", "NL_NL"], [78, 3, 1, "", "NO_NO"], [78, 3, 1, "", "PL_PL"], [78, 3, 1, "", "PT_BR"], [78, 3, 1, "", "RO_RO"], [78, 3, 1, "", "RU_RU"], [78, 3, 1, "", "SK_SK"], [78, 3, 1, "", "SL_SI"], [78, 3, 1, "", "SR_SR"], [78, 3, 1, "", "SV_SE"], [78, 3, 1, "", "TR_TR"], [78, 3, 1, "", "UK_UA"], [78, 3, 1, "", "ZH_CN"], [78, 3, 1, "", "ZH_HK"], [78, 2, 1, "", "get_document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt": [[78, 0, 0, "-", "create_pdf_from_ppt_params"], [78, 0, 0, "-", "document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params": [[78, 1, 1, "", "CreatePDFFromPPTParams"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.create_pdf_from_ppt_params.CreatePDFFromPPTParams": [[47, 2, 1, "", "get_create_tagged_pdf"], [78, 2, 1, "", "get_document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language": [[78, 1, 1, "", "DocumentLanguage"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt.document_language.DocumentLanguage": [[78, 3, 1, "", "BG_BG"], [78, 3, 1, "", "CA_CA"], [78, 3, 1, "", "CS_CZ"], [78, 3, 1, "", "DA_DK"], [78, 3, 1, "", "DE_CH"], [78, 3, 1, "", "DE_DE"], [78, 3, 1, "", "EL_GR"], [78, 3, 1, "", "EN_GB"], [78, 3, 1, "", "EN_US"], [78, 3, 1, "", "ES_ES"], [78, 3, 1, "", "ET_EE"], [78, 3, 1, "", "FI_FI"], [78, 3, 1, "", "FR_FR"], [78, 3, 1, "", "HR_HR"], [78, 3, 1, "", "HU_HU"], [78, 3, 1, "", "IT_IT"], [78, 3, 1, "", "IW_IL"], [78, 3, 1, "", "JA_JP"], [78, 3, 1, "", "KO_KR"], [78, 3, 1, "", "LT_LT"], [78, 3, 1, "", "LV_LV"], [78, 3, 1, "", "MK_MK"], [78, 3, 1, "", "MT_MT"], [78, 3, 1, "", "NB_NO"], [78, 3, 1, "", "NL_NL"], [78, 3, 1, "", "NO_NO"], [78, 3, 1, "", "PL_PL"], [78, 3, 1, "", "PT_BR"], [78, 3, 1, "", "RO_RO"], [78, 3, 1, "", "RU_RU"], [78, 3, 1, "", "SK_SK"], [78, 3, 1, "", "SL_SI"], [78, 3, 1, "", "SR_SR"], [78, 3, 1, "", "SV_SE"], [78, 3, 1, "", "TR_TR"], [78, 3, 1, "", "UK_UA"], [78, 3, 1, "", "ZH_CN"], [78, 3, 1, "", "ZH_HK"], [78, 2, 1, "", "get_document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word": [[78, 0, 0, "-", "create_pdf_from_word_params"], [78, 0, 0, "-", "document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params": [[78, 1, 1, "", "CreatePDFFromWordParams"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.create_pdf_from_word_params.CreatePDFFromWordParams": [[48, 2, 1, "", "get_create_tagged_pdf"], [78, 2, 1, "", "get_document_language"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language": [[78, 1, 1, "", "DocumentLanguage"]], "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word.document_language.DocumentLanguage": [[78, 3, 1, "", "BG_BG"], [78, 3, 1, "", "CA_CA"], [78, 3, 1, "", "CS_CZ"], [78, 3, 1, "", "DA_DK"], [78, 3, 1, "", "DE_CH"], [78, 3, 1, "", "DE_DE"], [78, 3, 1, "", "EL_GR"], [78, 3, 1, "", "EN_GB"], [78, 3, 1, "", "EN_US"], [78, 3, 1, "", "ES_ES"], [78, 3, 1, "", "ET_EE"], [78, 3, 1, "", "FI_FI"], [78, 3, 1, "", "FR_FR"], [78, 3, 1, "", "HR_HR"], [78, 3, 1, "", "HU_HU"], [78, 3, 1, "", "IT_IT"], [78, 3, 1, "", "IW_IL"], [78, 3, 1, "", "JA_JP"], [78, 3, 1, "", "KO_KR"], [78, 3, 1, "", "LT_LT"], [78, 3, 1, "", "LV_LV"], [78, 3, 1, "", "MK_MK"], [78, 3, 1, "", "MT_MT"], [78, 3, 1, "", "NB_NO"], [78, 3, 1, "", "NL_NL"], [78, 3, 1, "", "NO_NO"], [78, 3, 1, "", "PL_PL"], [78, 3, 1, "", "PT_BR"], [78, 3, 1, "", "RO_RO"], [78, 3, 1, "", "RU_RU"], [78, 3, 1, "", "SK_SK"], [78, 3, 1, "", "SL_SI"], [78, 3, 1, "", "SR_SR"], [78, 3, 1, "", "SV_SE"], [78, 3, 1, "", "TR_TR"], [78, 3, 1, "", "UK_UA"], [78, 3, 1, "", "ZH_CN"], [78, 3, 1, "", "ZH_HK"], [78, 2, 1, "", "get_document_language"]], "adobe.pdfservices.operation.pdfjobs.params.delete_pages": [[78, 0, 0, "-", "delete_pages_params"]], "adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params": [[78, 1, 1, "", "DeletePagesParams"]], "adobe.pdfservices.operation.pdfjobs.params.delete_pages.delete_pages_params.DeletePagesParams": [[78, 2, 1, "", "get_page_ranges"]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge": [[78, 0, 0, "-", "document_merge_params"], [78, 0, 0, "-", "fragments"], [78, 0, 0, "-", "output_format"]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params": [[78, 1, 1, "", "DocumentMergeParams"]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.document_merge_params.DocumentMergeParams": [[78, 2, 1, "", "get_fragments"], [78, 2, 1, "", "get_json_data_for_merge"], [78, 2, 1, "", "get_output_format"]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments": [[78, 1, 1, "", "Fragments"]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.fragments.Fragments": [[78, 2, 1, "", "add_fragment"], [78, 2, 1, "", "add_fragments"], [78, 2, 1, "", "get_fragments_list"]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format": [[78, 1, 1, "", "OutputFormat"]], "adobe.pdfservices.operation.pdfjobs.params.documentmerge.output_format.OutputFormat": [[78, 3, 1, "", "DOCX"], [78, 3, 1, "", "PDF"], [78, 2, 1, "", "get_format"]], "adobe.pdfservices.operation.pdfjobs.params.eseal": [[78, 0, 0, "-", "RFC3161_tsa_options"], [78, 0, 0, "-", "appearance_item"], [78, 0, 0, "-", "appearance_options"], [78, 0, 0, "-", "csc_auth_context"], [78, 0, 0, "-", "csc_credentials"], [78, 0, 0, "-", "document_level_permission"], [78, 0, 0, "-", "electronic_seal_params"], [78, 0, 0, "-", "field_location"], [78, 0, 0, "-", "field_options"], [78, 0, 0, "-", "signature_format"], [78, 0, 0, "-", "tsa_basic_auth_credentials"], [78, 0, 0, "-", "tsa_options"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options": [[78, 1, 1, "", "RFC3161TSAOptions"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.RFC3161_tsa_options.RFC3161TSAOptions": [[78, 2, 1, "", "get_tsa_basic_auth_credentials"], [78, 2, 1, "", "get_url"], [51, 2, 1, "", "to_dict"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item": [[78, 1, 1, "", "AppearanceItem"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_item.AppearanceItem": [[78, 3, 1, "", "DATE"], [78, 3, 1, "", "DISTINGUISHED_NAME"], [78, 3, 1, "", "LABELS"], [78, 3, 1, "", "NAME"], [78, 3, 1, "", "SEAL_IMAGE"], [51, 2, 1, "", "get_appearance_item"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options": [[78, 1, 1, "", "AppearanceOptions"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.appearance_options.AppearanceOptions": [[78, 2, 1, "", "add_item"], [78, 2, 1, "", "get_appearance_options"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context": [[78, 1, 1, "", "CSCAuthContext"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_auth_context.CSCAuthContext": [[78, 2, 1, "", "get_access_token"], [78, 2, 1, "", "get_token_type"], [51, 2, 1, "", "to_dict"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials": [[78, 1, 1, "", "CSCCredentials"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.csc_credentials.CSCCredentials": [[78, 2, 1, "", "get_credential_id"], [78, 2, 1, "", "get_csc_auth_context"], [78, 2, 1, "", "get_pin"], [78, 2, 1, "", "get_provider_name"], [51, 2, 1, "", "to_dict"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission": [[78, 1, 1, "", "DocumentLevelPermission"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.document_level_permission.DocumentLevelPermission": [[78, 3, 1, "", "FORM_FILLING"], [78, 3, 1, "", "FORM_FILLING_AND_ANNOTATIONS"], [78, 3, 1, "", "NO_CHANGES_ALLOWED"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params": [[78, 1, 1, "", "PDFElectronicSealParams"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.electronic_seal_params.PDFElectronicSealParams": [[78, 2, 1, "", "get_seal_appearance_options"], [78, 2, 1, "", "get_seal_certificate_credentials"], [78, 2, 1, "", "get_seal_field_options"], [78, 2, 1, "", "get_signature_format"], [51, 2, 1, "", "to_dict"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.field_location": [[78, 1, 1, "", "FieldLocation"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.field_location.FieldLocation": [[78, 2, 1, "", "get_bottom"], [78, 2, 1, "", "get_left"], [78, 2, 1, "", "get_right"], [78, 2, 1, "", "get_top"], [51, 2, 1, "", "to_dict"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.field_options": [[78, 1, 1, "", "FieldOptions"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.field_options.FieldOptions": [[78, 2, 1, "", "get_field_location"], [78, 2, 1, "", "get_field_name"], [78, 2, 1, "", "get_page_number"], [78, 2, 1, "", "get_visible"], [51, 2, 1, "", "to_dict"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format": [[78, 1, 1, "", "SignatureFormat"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.signature_format.SignatureFormat": [[78, 3, 1, "", "PADES"], [78, 3, 1, "", "PKCS7"], [78, 2, 1, "", "get_signature_format"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials": [[78, 1, 1, "", "TSABasicAuthCredentials"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_basic_auth_credentials.TSABasicAuthCredentials": [[78, 2, 1, "", "get_password"], [78, 2, 1, "", "get_username"], [51, 2, 1, "", "to_dict"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options": [[78, 1, 1, "", "TSAOptions"]], "adobe.pdfservices.operation.pdfjobs.params.eseal.tsa_options.TSAOptions": [[51, 2, 1, "", "to_dict"]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf": [[78, 0, 0, "-", "export_ocr_locale"], [78, 0, 0, "-", "export_pdf_params"], [78, 0, 0, "-", "export_pdf_target_format"]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale": [[78, 1, 1, "", "ExportOCRLocale"]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_ocr_locale.ExportOCRLocale": [[78, 3, 1, "", "BG_BG"], [78, 3, 1, "", "CA_CA"], [78, 3, 1, "", "CS_CZ"], [78, 3, 1, "", "DA_DK"], [78, 3, 1, "", "DE_CH"], [78, 3, 1, "", "DE_DE"], [78, 3, 1, "", "EL_GR"], [78, 3, 1, "", "EN_GB"], [78, 3, 1, "", "EN_US"], [78, 3, 1, "", "ES_ES"], [78, 3, 1, "", "ET_EE"], [78, 3, 1, "", "EU_ES"], [78, 3, 1, "", "FI_FI"], [78, 3, 1, "", "FR_FR"], [78, 3, 1, "", "GL_ES"], [78, 3, 1, "", "HR_HR"], [78, 3, 1, "", "HU_HU"], [78, 3, 1, "", "IT_IT"], [78, 3, 1, "", "IW_IL"], [78, 3, 1, "", "JA_JP"], [78, 3, 1, "", "KO_KR"], [78, 3, 1, "", "LT_LT"], [78, 3, 1, "", "LV_LV"], [78, 3, 1, "", "MK_MK"], [78, 3, 1, "", "MT_MT"], [78, 3, 1, "", "NB_NO"], [78, 3, 1, "", "NL_NL"], [78, 3, 1, "", "NN_NO"], [78, 3, 1, "", "PL_PL"], [78, 3, 1, "", "PT_BR"], [78, 3, 1, "", "PT_PT"], [78, 3, 1, "", "RO_RO"], [78, 3, 1, "", "RU_RU"], [78, 3, 1, "", "SK_SK"], [78, 3, 1, "", "SL_SI"], [78, 3, 1, "", "SR_SR"], [78, 3, 1, "", "SV_SE"], [78, 3, 1, "", "TR_TR"], [78, 3, 1, "", "UK_UA"], [78, 3, 1, "", "ZH_CN"], [78, 3, 1, "", "ZH_HANT"], [78, 2, 1, "", "get_export_ocr_locale"]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params": [[78, 1, 1, "", "ExportPDFParams"]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_params.ExportPDFParams": [[78, 2, 1, "", "get_ocr_lang"], [78, 2, 1, "", "get_target_format"]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format": [[78, 1, 1, "", "ExportPDFTargetFormat"]], "adobe.pdfservices.operation.pdfjobs.params.export_pdf.export_pdf_target_format.ExportPDFTargetFormat": [[78, 3, 1, "", "DOC"], [78, 3, 1, "", "DOCX"], [78, 3, 1, "", "PPTX"], [78, 3, 1, "", "RTF"], [78, 3, 1, "", "XLSX"], [78, 2, 1, "", "get_file_ext"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf": [[78, 0, 0, "-", "extract_element_type"], [78, 0, 0, "-", "extract_pdf_params"], [78, 0, 0, "-", "extract_renditions_element_type"], [78, 0, 0, "-", "table_structure_type"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type": [[78, 1, 1, "", "ExtractElementType"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_element_type.ExtractElementType": [[78, 3, 1, "", "TABLES"], [78, 3, 1, "", "TEXT"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params": [[78, 1, 1, "", "ExtractPDFParams"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_pdf_params.ExtractPDFParams": [[78, 2, 1, "", "get_add_char_info"], [78, 2, 1, "", "get_elements_to_extract"], [78, 2, 1, "", "get_elements_to_extract_renditions"], [78, 2, 1, "", "get_styling_info"], [78, 2, 1, "", "get_table_structure_type"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type": [[78, 1, 1, "", "ExtractRenditionsElementType"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.extract_renditions_element_type.ExtractRenditionsElementType": [[78, 3, 1, "", "FIGURES"], [78, 3, 1, "", "TABLES"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type": [[78, 1, 1, "", "TableStructureType"]], "adobe.pdfservices.operation.pdfjobs.params.extract_pdf.table_structure_type.TableStructureType": [[78, 3, 1, "", "CSV"], [78, 3, 1, "", "XLSX"]], "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf": [[78, 0, 0, "-", "html_to_pdf_params"], [78, 0, 0, "-", "page_layout"]], "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params": [[78, 1, 1, "", "HTMLtoPDFParams"]], "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.html_to_pdf_params.HTMLtoPDFParams": [[78, 2, 1, "", "get_include_header_footer"], [78, 2, 1, "", "get_json"], [78, 2, 1, "", "get_page_layout"]], "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout": [[78, 1, 1, "", "PageLayout"]], "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf.page_layout.PageLayout": [[78, 3, 1, "", "DEFAULT_PAGE_HEIGHT"], [78, 3, 1, "", "DEFAULT_PAGE_WIDTH"], [54, 3, 1, "", "json_hint"], [54, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data": [[78, 0, 0, "-", "import_pdf_form_data_params"]], "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params": [[78, 1, 1, "", "ImportPDFFormDataParams"]], "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params.ImportPDFFormDataParams": [[78, 2, 1, "", "get_json_form_fields_data"], [78, 2, 1, "", "get_json_form_fields_data_string"]], "adobe.pdfservices.operation.pdfjobs.params.insert_pages": [[78, 0, 0, "-", "insert_pages_params"]], "adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params": [[78, 1, 1, "", "InsertPagesParams"]], "adobe.pdfservices.operation.pdfjobs.params.insert_pages.insert_pages_params.InsertPagesParams": [[78, 2, 1, "", "add_pages_to_insert"], [78, 2, 1, "", "get_assets_to_insert"], [78, 2, 1, "", "get_base_asset"]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf": [[78, 0, 0, "-", "ocr_params"], [78, 0, 0, "-", "ocr_supported_locale"], [78, 0, 0, "-", "ocr_supported_type"]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params": [[78, 1, 1, "", "OCRParams"]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_params.OCRParams": [[78, 2, 1, "", "get_ocr_locale"], [78, 2, 1, "", "get_ocr_type"]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale": [[78, 1, 1, "", "OCRSupportedLocale"]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_locale.OCRSupportedLocale": [[78, 3, 1, "", "BG_BG"], [78, 3, 1, "", "CA_CA"], [78, 3, 1, "", "CS_CZ"], [78, 3, 1, "", "DA_DK"], [78, 3, 1, "", "DE_CH"], [78, 3, 1, "", "DE_DE"], [78, 3, 1, "", "EL_GR"], [78, 3, 1, "", "EN_GB"], [78, 3, 1, "", "EN_US"], [78, 3, 1, "", "ES_ES"], [78, 3, 1, "", "ET_EE"], [78, 3, 1, "", "FI_FI"], [78, 3, 1, "", "FR_FR"], [78, 3, 1, "", "HR_HR"], [78, 3, 1, "", "HU_HU"], [78, 3, 1, "", "IT_IT"], [78, 3, 1, "", "IW_IL"], [78, 3, 1, "", "JA_JP"], [78, 3, 1, "", "KO_KR"], [78, 3, 1, "", "LT_LT"], [78, 3, 1, "", "LV_LV"], [78, 3, 1, "", "MK_MK"], [78, 3, 1, "", "MT_MT"], [78, 3, 1, "", "NB_NO"], [78, 3, 1, "", "NL_NL"], [78, 3, 1, "", "NO_NO"], [78, 3, 1, "", "PL_PL"], [78, 3, 1, "", "PT_BR"], [78, 3, 1, "", "RO_RO"], [78, 3, 1, "", "RU_RU"], [78, 3, 1, "", "SK_SK"], [78, 3, 1, "", "SL_SI"], [78, 3, 1, "", "SR_SR"], [78, 3, 1, "", "SV_SE"], [78, 3, 1, "", "TR_TR"], [78, 3, 1, "", "UK_UA"], [78, 3, 1, "", "ZH_CN"], [78, 3, 1, "", "ZH_HK"], [78, 2, 1, "", "get_locale"]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type": [[78, 1, 1, "", "OCRSupportedType"]], "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf.ocr_supported_type.OCRSupportedType": [[78, 3, 1, "", "SEARCHABLE_IMAGE"], [78, 3, 1, "", "SEARCHABLE_IMAGE_EXACT"], [78, 2, 1, "", "get_type"]], "adobe.pdfservices.operation.pdfjobs.params.page_ranges": [[78, 1, 1, "", "PageRanges"]], "adobe.pdfservices.operation.pdfjobs.params.page_ranges.PageRanges": [[78, 2, 1, "", "add_all"], [78, 2, 1, "", "add_all_from"], [78, 2, 1, "", "add_range"], [78, 2, 1, "", "add_single_page"], [78, 2, 1, "", "get_ranges"], [78, 2, 1, "", "is_empty"], [41, 3, 1, "", "json_hint"], [41, 2, 1, "", "to_json"], [41, 2, 1, "", "validate"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker": [[78, 0, 0, "-", "pdf_accessibility_checker_params"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params": [[78, 1, 1, "", "PDFAccessibilityCheckerParams"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_accessibility_checker.pdf_accessibility_checker_params.PDFAccessibilityCheckerParams": [[78, 2, 1, "", "get_page_end"], [78, 2, 1, "", "get_page_start"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_properties": [[78, 0, 0, "-", "pdf_properties_params"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params": [[78, 1, 1, "", "PDFPropertiesParams"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_properties.pdf_properties_params.PDFPropertiesParams": [[78, 2, 1, "", "get_include_page_level_properties"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_services_job_params": [[78, 1, 1, "", "PDFServicesJobParams"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image": [[78, 0, 0, "-", "export_pdf_to_images_output_type"], [78, 0, 0, "-", "export_pdf_to_images_params"], [78, 0, 0, "-", "export_pdf_to_images_target_format"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type": [[78, 1, 1, "", "ExportPDFToImagesOutputType"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_output_type.ExportPDFToImagesOutputType": [[78, 3, 1, "", "LIST_OF_PAGE_IMAGES"], [78, 3, 1, "", "ZIP_OF_PAGE_IMAGES"], [78, 2, 1, "", "get_output_type"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params": [[78, 1, 1, "", "ExportPDFtoImagesParams"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_params.ExportPDFtoImagesParams": [[78, 2, 1, "", "get_export_pdf_to_images_output_type"], [78, 2, 1, "", "get_export_pdf_to_images_target_format"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format": [[78, 1, 1, "", "ExportPDFToImagesTargetFormat"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image.export_pdf_to_images_target_format.ExportPDFToImagesTargetFormat": [[78, 3, 1, "", "JPEG"], [78, 3, 1, "", "PNG"], [78, 2, 1, "", "get_file_ext"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params": [[78, 1, 1, "", "PDFWatermarkParams"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.pdf_watermark_params.PDFWatermarkParams": [[78, 2, 1, "", "get_page_ranges"], [78, 2, 1, "", "get_watermark_appearance"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance": [[78, 1, 1, "", "WatermarkAppearance"]], "adobe.pdfservices.operation.pdfjobs.params.pdf_watermark.watermark_appearance.WatermarkAppearance": [[78, 2, 1, "", "get_appear_on_foreground"], [78, 2, 1, "", "get_opacity"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf": [[78, 0, 0, "-", "content_encryption"], [78, 0, 0, "-", "encryption_algorithm"], [78, 0, 0, "-", "password_protect_params"], [78, 0, 0, "-", "permission"], [78, 0, 0, "-", "permissions"], [78, 0, 0, "-", "protect_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption": [[78, 1, 1, "", "ContentEncryption"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.content_encryption.ContentEncryption": [[78, 3, 1, "", "ALL_CONTENT"], [78, 3, 1, "", "ALL_CONTENT_EXCEPT_METADATA"], [78, 3, 1, "", "ONLY_EMBEDDED_FILES"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm": [[78, 1, 1, "", "EncryptionAlgorithm"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.encryption_algorithm.EncryptionAlgorithm": [[78, 3, 1, "", "AES_128"], [78, 3, 1, "", "AES_256"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params": [[78, 1, 1, "", "PasswordProtectParams"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.password_protect_params.PasswordProtectParams": [[78, 2, 1, "", "get_content_encryption"], [78, 2, 1, "", "get_encryption_algorithm"], [78, 2, 1, "", "get_owner_password"], [78, 2, 1, "", "get_permissions"], [78, 2, 1, "", "get_user_password"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission": [[78, 1, 1, "", "Permission"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permission.Permission": [[78, 3, 1, "", "COPY_CONTENT"], [78, 3, 1, "", "EDIT_ANNOTATIONS"], [78, 3, 1, "", "EDIT_CONTENT"], [78, 3, 1, "", "EDIT_DOCUMENT_ASSEMBLY"], [78, 3, 1, "", "EDIT_FILL_AND_SIGN_FORM_FIELDS"], [78, 3, 1, "", "PRINT_HIGH_QUALITY"], [78, 3, 1, "", "PRINT_LOW_QUALITY"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions": [[78, 1, 1, "", "Permissions"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.permissions.Permissions": [[78, 2, 1, "", "add_permission"], [78, 2, 1, "", "get_values"]], "adobe.pdfservices.operation.pdfjobs.params.protect_pdf.protect_pdf_params": [[78, 1, 1, "", "ProtectPDFParams"]], "adobe.pdfservices.operation.pdfjobs.params.remove_protection": [[78, 0, 0, "-", "remove_protection_params"]], "adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params": [[78, 1, 1, "", "RemoveProtectionParams"]], "adobe.pdfservices.operation.pdfjobs.params.remove_protection.remove_protection_params.RemoveProtectionParams": [[78, 2, 1, "", "get_password"]], "adobe.pdfservices.operation.pdfjobs.params.reorder_pages": [[78, 0, 0, "-", "reorder_pages_params"]], "adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params": [[78, 1, 1, "", "ReorderPagesParams"]], "adobe.pdfservices.operation.pdfjobs.params.reorder_pages.reorder_pages_params.ReorderPagesParams": [[78, 2, 1, "", "get_asset"], [78, 2, 1, "", "get_page_ranges"]], "adobe.pdfservices.operation.pdfjobs.params.replace_pages": [[78, 0, 0, "-", "replace_pages_params"]], "adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params": [[78, 1, 1, "", "ReplacePagesParams"]], "adobe.pdfservices.operation.pdfjobs.params.replace_pages.replace_pages_params.ReplacePagesParams": [[78, 2, 1, "", "add_pages_to_replace"], [78, 2, 1, "", "get_assets_to_replace"], [78, 2, 1, "", "get_base_asset"]], "adobe.pdfservices.operation.pdfjobs.params.rotate_pages": [[78, 0, 0, "-", "angle"], [78, 0, 0, "-", "rotate_pages_params"]], "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle": [[78, 1, 1, "", "Angle"]], "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.angle.Angle": [[78, 3, 1, "", "ANGLE_180"], [78, 3, 1, "", "ANGLE_270"], [78, 3, 1, "", "ANGLE_90"]], "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params": [[78, 1, 1, "", "RotatePagesParams"]], "adobe.pdfservices.operation.pdfjobs.params.rotate_pages.rotate_pages_params.RotatePagesParams": [[78, 2, 1, "", "add_angle_to_rotate"], [78, 2, 1, "", "add_angle_to_rotate_for_page_ranges"], [78, 2, 1, "", "get_page_actions"]], "adobe.pdfservices.operation.pdfjobs.params.split_pdf": [[78, 0, 0, "-", "split_pdf_params"]], "adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params": [[78, 1, 1, "", "SplitPDFParams"]], "adobe.pdfservices.operation.pdfjobs.params.split_pdf.split_pdf_params.SplitPDFParams": [[78, 2, 1, "", "get_file_count"], [78, 2, 1, "", "get_page_count"], [78, 2, 1, "", "get_page_ranges"], [65, 3, 1, "", "json_hint"], [65, 2, 1, "", "to_json"]], "adobe.pdfservices.operation.pdfjobs.result": [[66, 0, 0, "-", "autotag_pdf_result"], [66, 0, 0, "-", "combine_pdf_result"], [66, 0, 0, "-", "compress_pdf_result"], [66, 0, 0, "-", "create_pdf_result"], [66, 0, 0, "-", "delete_pages_result"], [66, 0, 0, "-", "document_merge_result"], [66, 0, 0, "-", "eseal_pdf_result"], [66, 0, 0, "-", "export_pdf_result"], [66, 0, 0, "-", "export_pdf_to_images_result"], [66, 0, 0, "-", "extract_pdf_result"], [66, 0, 0, "-", "html_to_pdf_result"], [66, 0, 0, "-", "insert_pages_result"], [66, 0, 0, "-", "linearize_pdf_result"], [66, 0, 0, "-", "ocr_pdf_result"], [66, 0, 0, "-", "pdf_properties_result"], [66, 0, 0, "-", "pdf_services_job_result"], [66, 0, 0, "-", "protect_pdf_result"], [66, 0, 0, "-", "remove_protection_result"], [66, 0, 0, "-", "reorder_pages_result"], [66, 0, 0, "-", "replace_page_result"], [66, 0, 0, "-", "rotate_pages_result"], [66, 0, 0, "-", "split_pdf_result"]], "adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result": [[79, 1, 1, "", "AutotagPDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.autotag_pdf_result.AutotagPDFResult": [[79, 2, 1, "", "get_report"], [79, 2, 1, "", "get_resource"], [79, 2, 1, "", "get_tagged_pdf"]], "adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result": [[79, 1, 1, "", "CombinePDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.combine_pdf_result.CombinePDFResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result": [[79, 1, 1, "", "CompressPDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.compress_pdf_result.CompressPDFResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.create_pdf_result": [[79, 1, 1, "", "CreatePDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.create_pdf_result.CreatePDFResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.delete_pages_result": [[79, 1, 1, "", "DeletePagesResult"]], "adobe.pdfservices.operation.pdfjobs.result.delete_pages_result.DeletePagesResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.document_merge_result": [[79, 1, 1, "", "DocumentMergePDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.document_merge_result.DocumentMergePDFResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result": [[79, 1, 1, "", "ESealPDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.eseal_pdf_result.ESealPDFResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.export_pdf_form_data_result": [[79, 1, 1, "", "ExportPDFFormDataResult"]], "adobe.pdfservices.operation.pdfjobs.result.export_pdf_form_data_result.ExportPDFFormDataResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.export_pdf_result": [[79, 1, 1, "", "ExportPDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.export_pdf_result.ExportPDFResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result": [[79, 1, 1, "", "ExportPDFtoImagesResult"]], "adobe.pdfservices.operation.pdfjobs.result.export_pdf_to_images_result.ExportPDFtoImagesResult": [[79, 2, 1, "", "get_assets"]], "adobe.pdfservices.operation.pdfjobs.result.extract_pdf_result": [[79, 1, 1, "", "ExtractPDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.extract_pdf_result.ExtractPDFResult": [[79, 2, 1, "", "get_content"], [79, 2, 1, "", "get_content_json"], [79, 2, 1, "", "get_resource"]], "adobe.pdfservices.operation.pdfjobs.result.html_to_pdf_result": [[79, 1, 1, "", "HTMLtoPDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.html_to_pdf_result.HTMLtoPDFResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.import_pdf_form_data_result": [[79, 1, 1, "", "ImportPDFFormDataResult"]], "adobe.pdfservices.operation.pdfjobs.result.import_pdf_form_data_result.ImportPDFFormDataResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.insert_pages_result": [[79, 1, 1, "", "InsertPagesResult"]], "adobe.pdfservices.operation.pdfjobs.result.insert_pages_result.InsertPagesResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.linearize_pdf_result": [[79, 1, 1, "", "LinearizePDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.linearize_pdf_result.LinearizePDFResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.ocr_pdf_result": [[79, 1, 1, "", "OCRPDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.ocr_pdf_result.OCRPDFResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.pdf_accessibility_checker_result": [[79, 1, 1, "", "PDFAccessibilityCheckerResult"]], "adobe.pdfservices.operation.pdfjobs.result.pdf_accessibility_checker_result.PDFAccessibilityCheckerResult": [[79, 2, 1, "", "get_asset"], [79, 2, 1, "", "get_report"]], "adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result": [[79, 1, 1, "", "PDFPropertiesResult"]], "adobe.pdfservices.operation.pdfjobs.result.pdf_properties_result.PDFPropertiesResult": [[79, 2, 1, "", "get_pdf_properties_dict"]], "adobe.pdfservices.operation.pdfjobs.result.pdf_services_job_result": [[79, 1, 1, "", "PDFServicesJobResult"]], "adobe.pdfservices.operation.pdfjobs.result.pdf_watermark_result": [[79, 1, 1, "", "PDFWatermarkResult"]], "adobe.pdfservices.operation.pdfjobs.result.pdf_watermark_result.PDFWatermarkResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result": [[79, 1, 1, "", "ProtectPDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.protect_pdf_result.ProtectPDFResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.remove_protection_result": [[79, 1, 1, "", "RemoveProtectionResult"]], "adobe.pdfservices.operation.pdfjobs.result.remove_protection_result.RemoveProtectionResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result": [[79, 1, 1, "", "ReorderPagesResult"]], "adobe.pdfservices.operation.pdfjobs.result.reorder_pages_result.ReorderPagesResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.replace_page_result": [[79, 1, 1, "", "ReplacePagesResult"]], "adobe.pdfservices.operation.pdfjobs.result.replace_page_result.ReplacePagesResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.rotate_pages_result": [[79, 1, 1, "", "RotatePagesResult"]], "adobe.pdfservices.operation.pdfjobs.result.rotate_pages_result.RotatePagesResult": [[79, 2, 1, "", "get_asset"]], "adobe.pdfservices.operation.pdfjobs.result.split_pdf_result": [[79, 1, 1, "", "SplitPDFResult"]], "adobe.pdfservices.operation.pdfjobs.result.split_pdf_result.SplitPDFResult": [[79, 2, 1, "", "get_asset"], [79, 2, 1, "", "get_assets"]], "adobe.pdfservices.operation.region": [[74, 1, 1, "", "Region"]], "adobe.pdfservices.operation.region.Region": [[74, 3, 1, "", "EU"], [74, 3, 1, "", "US"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "property", "Python property"], "5": ["py", "function", "Python function"], "6": ["py", "exception", "Python exception"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:attribute", "4": "py:property", "5": "py:function", "6": "py:exception"}, "terms": {"": [6, 39, 51, 56, 63, 72, 77, 78], "0": [4, 6, 7, 9, 36, 39, 54, 70, 72, 77, 78], "1": [4, 6, 39, 41, 51, 70, 72, 77, 78], "100": [39, 44, 77, 78], "10000": [4, 33, 70], "11": [39, 54, 77, 78], "127": [4, 6, 70, 72], "128": [39, 60, 77, 78], "144": [44, 78], "15": [39, 77], "150": [39, 77], "180": [64, 78], "2": [39, 77], "200": [39, 44, 77, 78], "20000": [4, 70], "25": 77, "250": [39, 44, 77, 78], "256": [39, 60, 77, 78], "270": [64, 78], "3": [39, 77], "350": [39, 77], "4": [39, 77], "4000": [4, 33, 70], "413": 34, "429": 7, "429001": 34, "429002": 34, "443": [6, 72], "5": [39, 54, 77, 78], "502": 34, "503": 34, "504": 34, "72": [44, 78], "8": [39, 54, 77, 78], "80": [6, 72], "8080": [4, 6, 70, 72], "90": [64, 78], "A": [6, 39, 40, 42, 43, 51, 56, 60, 61, 62, 63, 65, 72, 77, 78], "And": [54, 78], "At": [39, 77], "For": [3, 5, 36, 37, 39, 51, 60, 69, 77, 78], "IT": [46, 47, 48, 52, 57, 78], "If": [2, 36, 42, 51, 54, 58, 74, 78], "In": [39, 51, 77, 78], "It": [2, 6, 36, 66, 72, 74, 77, 79], "NO": [46, 47, 48, 52, 57, 78], "No": [51, 78], "Such": [39, 77], "The": [4, 7, 34, 36, 39, 40, 45, 46, 47, 48, 51, 53, 54, 62, 63, 65, 66, 70, 77, 78, 79], "These": [2, 74], "To": [36, 39, 50, 53, 54, 77, 78], "_0": [39, 77], "_14": [39, 77], "__class__": [2, 74], "__traceback__": 73, "abc": [2, 3, 5, 6, 12, 13, 23, 25, 32, 37, 41, 45, 51, 60, 66, 69, 71, 72, 74, 75, 78, 79], "abcmeta": [2, 74], "about": [5, 39, 42, 50, 71, 77, 78], "abov": [44, 78], "abstract": [2, 3, 5, 6, 32, 45, 51, 66, 69, 71, 72, 74, 78, 79], "accept": 34, "accept_header_nam": [8, 34], "access": [32, 33, 39, 51, 60, 77, 78], "access_token": [32, 39, 51, 77, 78], "accessibilitycheck": 33, "accord": [39, 77], "acrobat": [77, 79], "action": 23, "ad": [41, 50, 51, 77, 78], "add": [4, 41, 43, 50, 53, 56, 60, 70, 77, 78], "add_act": [11, 23], "add_al": [38, 41, 78], "add_all_from": [38, 41, 78], "add_angle_to_rot": [39, 41, 64, 77, 78], "add_angle_to_rotate_for_page_rang": [41, 64, 78], "add_asset": [39, 41, 43, 77, 78], "add_char_info": [53, 78], "add_command": [11, 23], "add_frag": [41, 50, 78], "add_item": [41, 51, 78], "add_pages_to_insert": [39, 41, 56, 77, 78], "add_pages_to_replac": [39, 41, 63, 77, 78], "add_permiss": [41, 60, 78], "add_rang": [38, 39, 41, 77, 78], "add_single_pag": [38, 39, 41, 77, 78], "addit": [4, 42, 51, 60, 70, 77, 78], "addwatermark": 33, "adequ": 7, "adob": [68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79], "ae": [39, 60, 77, 78], "aes_128": [41, 60, 78], "aes_256": [39, 41, 60, 77, 78], "after": [4, 34, 51, 70, 78], "ag": 77, "again": [34, 77], "agreement": [39, 77], "ai": [1, 2, 74], "ajax": [54, 78], "algorithm": [39, 60, 77, 78], "all": [2, 4, 36, 41, 56, 60, 70, 74, 78], "all_cont": [39, 41, 60, 77, 78], "all_content_except_metadata": [41, 60, 78], "allow": [3, 39, 51, 60, 69, 77, 78], "allow_nan": 36, "along": [51, 56, 63, 78], "alreadi": [51, 78], "also": [39, 51, 54, 60, 77, 78], "altern": [39, 77], "an": [2, 3, 4, 5, 6, 7, 33, 34, 36, 37, 39, 40, 42, 43, 44, 49, 51, 66, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79], "angl": [23, 38, 39, 41, 74, 76, 77], "angle_180": [41, 64, 78], "angle_270": [41, 64, 78], "angle_90": [39, 41, 64, 77, 78], "ani": [2, 4, 50, 55, 70, 74, 78], "annot": [51, 78], "api": [2, 3, 4, 7, 8, 32, 34, 51, 67, 69, 70, 73, 77, 78], "app": 34, "appear": [51, 78], "appear_on_foreground": [77, 78], "appearance_item": [38, 41, 78], "appearance_opt": [38, 41, 78], "appearanceitem": [41, 51, 74, 76], "appearanceopt": [41, 51, 74, 76], "appli": [39, 51, 77, 78], "applic": [2, 3, 34, 39, 50, 52, 69, 74, 77, 78], "approv": [51, 78], "ar": [4, 6, 34, 36, 39, 51, 56, 70, 72, 77, 78], "arbitrari": 36, "archiv": [39, 77], "arrai": 36, "as_class": [8, 36], "ascii": 36, "asset": [1, 2, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 33, 35, 36, 39, 40, 43, 56, 62, 63, 66, 74, 77, 78, 79], "asset_1": [39, 77], "asset_2": [39, 77], "asset_id": [9, 12, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 35, 37, 75], "asset_to_insert": [39, 77], "asset_upload_uri_request": [9, 10], "asset_upload_util": [2, 8], "assetid": [12, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 35, 37, 75], "assets_to_insert": 36, "assets_to_replac": 36, "assetuploadurirequest": [10, 11], "assetuploadutil": [8, 36], "assist": [39, 77, 79], "associ": [39, 51, 66, 77, 78, 79], "attach": [51, 78], "attempt": 36, "auth": [1, 2, 8, 69, 77], "auth_factori": [2, 8], "authent": [2, 6, 8, 34, 67, 72, 74], "authenticatorfactori": [8, 32], "authn": [8, 33], "author": [34, 51, 78], "authorization_header_nam": [8, 34], "auto_tag": [8, 33], "autotag": 33, "autotag_operation_nam": [8, 33], "autotag_pdf": [33, 38, 41, 78], "autotag_pdf_external_asset_request": [10, 11], "autotag_pdf_internal_asset_request": [10, 11], "autotag_pdf_job": [2, 38, 77], "autotag_pdf_param": [12, 38, 39, 41, 77, 78], "autotag_pdf_params_payload": [10, 11], "autotag_pdf_result": [2, 38, 79], "autotagpdf": [10, 11], "autotagpdfexternalassetrequest": [11, 12], "autotagpdfinternalassetrequest": [11, 12], "autotagpdfjob": [38, 39, 42, 66, 74, 76, 78, 79], "autotagpdfparam": [12, 39, 41, 42, 74, 76, 77], "autotagpdfparamspayload": [11, 12], "autotagpdfresult": [38, 39, 66, 74, 76, 77], "avail": 34, "background": [51, 78], "bad": 34, "badgatewai": 34, "base": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 69, 70, 71, 72, 74, 75, 77, 78, 79], "base_asset": [36, 39, 56, 63, 77, 78], "base_fil": [39, 77], "base_input_stream": [39, 77], "base_pag": [39, 56, 63, 77, 78], "basi": 36, "basic": [2, 3, 5, 6, 37, 41, 51, 69, 71, 72, 74, 75, 78], "basqu": [52, 78], "bearer": [39, 51, 77, 78], "been": [2, 7, 34, 73, 74], "befor": [54, 78], "behavior": 36, "bg": [46, 47, 48, 52, 57, 78], "bg_bg": [41, 45, 46, 47, 48, 52, 57, 78], "blob": [2, 37, 75], "bmp": [1, 2, 74], "bool": [34, 36, 42, 46, 47, 48, 51, 53, 54, 58, 78], "boolean": [42, 53, 78], "bottom": [51, 78], "bound": [53, 78], "box": [53, 78], "br": [46, 47, 48, 52, 57, 78], "brand": [39, 77], "brazil": [46, 47, 48, 52, 57, 78], "builder": [4, 70], "bulgaria": [46, 47, 48, 52, 57, 78], "bulgarian": [46, 47, 48, 52, 57, 78], "byte": [60, 78], "c": [46, 47, 48, 52, 57, 78], "ca": [46, 47, 48, 52, 57, 78], "ca_ca": [41, 45, 46, 47, 48, 52, 57, 78], "call": [3, 4, 7, 32, 36, 41, 46, 47, 48, 69, 70, 73, 78], "callabl": [34, 36], "callback": [4, 5, 71], "callback_notifier_data": [2, 4, 71], "callbacknotifierdata": [4, 5, 70, 74], "can": [2, 3, 5, 33, 36, 37, 39, 40, 45, 46, 47, 48, 49, 50, 51, 52, 54, 56, 59, 60, 62, 63, 64, 69, 71, 74, 75, 77, 78], "canada": [46, 47, 48, 52, 57, 78], "cannot": [6, 51, 72, 77, 78], "case": [39, 50, 60, 77, 78], "catalan": [46, 47, 48, 52, 57, 78], "caus": 36, "certain": [39, 77], "certif": [51, 78], "certificate_credenti": [39, 77], "certificatecredenti": [51, 78], "ch": [46, 47, 48, 52, 57, 78], "chain": 77, "chang": [51, 78], "charact": [36, 39, 53, 60, 77, 78], "check": [36, 77], "check_circular": 36, "checker": [33, 77, 78], "china": [46, 47, 48, 52, 57, 78], "chines": [46, 47, 48, 52, 57, 78], "circular": 36, "class": [2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 69, 70, 71, 72, 74, 75, 77, 78, 79], "classmethod": [6, 8, 36, 37, 72, 75], "click": [3, 39, 50, 69, 77, 78], "client": [2, 3, 4, 7, 39, 41, 46, 47, 48, 69, 70, 73, 74, 77, 78], "client_config": [1, 2, 8, 32, 70, 74], "client_config_file_path": [4, 70], "client_id": [3, 32, 39, 40, 69, 77], "client_secret": [3, 39, 40, 69, 77], "clientconfig": [2, 4, 8, 32, 74], "clockwis": [64, 78], "close": [2, 39, 40, 74, 77], "cloud_asset": [1, 2, 75], "cloudasset": [2, 8, 37, 39, 40, 74, 77], "cn": [46, 47, 48, 52, 57, 78], "code": [7, 37, 52, 57, 75, 78], "colour": [44, 78], "com": 34, "combin": [33, 39, 43, 77, 78], "combine_pdf": [8, 33, 38, 41, 78], "combine_pdf_external_asset_request": [10, 11], "combine_pdf_internal_asset_request": [10, 11], "combine_pdf_job": [2, 38, 77], "combine_pdf_job_input": [2, 8, 36], "combine_pdf_nam": [8, 33], "combine_pdf_param": [13, 38, 39, 41, 77, 78], "combine_pdf_result": [2, 38, 79], "combinepdf": [10, 11, 33], "combinepdfexternalassetrequest": [11, 13], "combinepdfinternalassetrequest": [11, 13], "combinepdfjob": [38, 39, 43, 66, 74, 76, 78, 79], "combinepdfjobinput": [8, 35, 36, 43, 78], "combinepdfparam": [13, 39, 41, 43, 74, 76, 77], "combinepdfresult": [38, 39, 66, 74, 76, 77], "command": 23, "comment": [60, 78], "commun": [51, 78], "compact": 36, "compar": 36, "complet": [2, 5, 71, 74], "complex": [39, 77], "compli": [39, 77], "compliant": [36, 39, 51, 77, 78], "compress": [33, 39, 44, 77, 78], "compress_pdf": [8, 33, 38, 41, 78], "compress_pdf_external_asset_request": [10, 11], "compress_pdf_internal_asset_request": [10, 11], "compress_pdf_job": [2, 38, 77], "compress_pdf_operation_nam": [8, 33], "compress_pdf_param": [14, 38, 39, 41, 77, 78], "compress_pdf_params_payload": [10, 11], "compress_pdf_result": [2, 38, 79], "compression_level": [14, 38, 41, 78], "compressionlevel": [14, 39, 41, 44, 74, 76, 77], "compresspdf": [10, 11, 33], "compresspdfexternalassetrequest": [11, 14], "compresspdfinternalassetrequest": [11, 14], "compresspdfjob": [38, 39, 44, 66, 74, 76, 78, 79], "compresspdfparam": [14, 39, 41, 44, 74, 76, 77], "compresspdfparamspayload": [11, 14], "compresspdfresult": [38, 39, 66, 74, 76, 77], "config": [1, 2, 67, 74], "configur": [2, 4, 5, 6, 70, 71, 72, 74, 77], "connect": [4, 70], "connect_timeout": [4, 34, 70], "connecttimeout": [4, 70], "consist": [36, 54, 78], "constant": [2, 8], "construct": [2, 3, 4, 5, 6, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 69, 70, 71, 72, 74, 75, 77, 78, 79], "constructor": [36, 52, 54, 78], "contain": [2, 6, 36, 39, 40, 42, 44, 55, 66, 72, 74, 77, 78, 79], "content": [68, 77, 78, 79], "content_encrypt": [38, 39, 41, 77, 78], "content_json": [66, 79], "content_to_encrypt": 27, "content_type_header_nam": [8, 34], "contentencrypt": [39, 41, 60, 74, 76, 77], "contenttoencrypt": 27, "context": [8, 9, 36, 51, 78], "contract": [2, 3, 5, 6, 37, 39, 41, 51, 69, 71, 72, 74, 75, 77, 78], "control": [60, 78], "convei": 77, "convers": [39, 46, 47, 48, 77, 78], "convert": [39, 54, 57, 77, 78], "coordin": [51, 78], "copi": [39, 60, 77, 78], "copy_cont": [41, 60, 78], "correct": 77, "correspond": [39, 45, 77, 78], "could": [36, 39, 77], "couldn": 34, "count": [65, 78], "creat": [2, 4, 6, 33, 39, 42, 44, 45, 46, 47, 48, 49, 51, 72, 74, 77, 78], "create_from": [11, 23], "create_operation_nam": [8, 33], "create_pdf": [8, 33, 38, 41, 78], "create_pdf_external_asset_request": [10, 11], "create_pdf_from_excel_param": [41, 45, 78], "create_pdf_from_ppt_param": [41, 45, 78], "create_pdf_from_word_param": [41, 45, 78], "create_pdf_internal_asset_request": [10, 11], "create_pdf_job": [2, 38, 77], "create_pdf_param": [15, 39, 77], "create_pdf_params_payload": [10, 11], "create_pdf_result": [2, 38, 79], "create_tagged_pdf": [15, 46, 47, 48, 78], "createpdf": [10, 11, 33], "createpdfexternalassetrequest": [11, 15], "createpdffromexcelparam": [45, 46, 74, 76], "createpdffrompptparam": [45, 47, 74, 76], "createpdffromwordparam": [45, 48, 74, 76], "createpdfinternalassetrequest": [11, 15], "createpdfjob": [38, 39, 45, 66, 74, 76, 78, 79], "createpdfparam": [15, 38, 39, 41, 46, 47, 48, 74, 76, 77], "createpdfparamspayload": [11, 15], "createpdfresult": [38, 39, 66, 74, 76, 77], "createtaggedpdf": 15, "creation": [51, 60, 78], "credenti": [1, 2, 6, 7, 8, 32, 34, 39, 40, 51, 72, 73, 74, 77, 78], "credential_id": [39, 51, 77, 78], "croatia": [46, 47, 48, 52, 57, 78], "croatian": [46, 47, 48, 52, 57, 78], "cs_cz": [41, 45, 46, 47, 48, 52, 57, 78], "csc": [51, 78], "csc_auth_context": [38, 39, 41, 77, 78], "csc_credenti": [36, 38, 41, 78], "cscauthcontext": [39, 41, 51, 74, 76, 77], "csccredenti": [36, 39, 41, 51, 74, 76, 77], "css": [39, 77], "csv": [1, 2, 41, 53, 74, 78], "custom": 36, "custom_error_messag": [2, 8], "custom_error_messages_status_code_map": [8, 34], "customernam": [39, 77], "customerrormessag": [8, 33], "customervisit": [39, 77], "cz": [46, 47, 48, 52, 57, 78], "czech": [46, 47, 48, 52, 57, 78], "da": [46, 47, 48, 52, 57, 78], "da_dk": [41, 45, 46, 47, 48, 52, 57, 78], "dai": 36, "danish": [46, 47, 48, 52, 57, 78], "data": [5, 6, 33, 34, 39, 40, 50, 51, 53, 54, 55, 71, 72, 77, 78, 79], "date": [41, 51, 54, 78], "datetim": 32, "dc_app_info_header_kei": [8, 34], "dc_request_id_header_kei": [8, 34], "dcsdk": 34, "dct": 36, "de": [46, 47, 48, 52, 57, 78], "de_ch": [41, 45, 46, 47, 48, 52, 57, 78], "de_d": [41, 45, 46, 47, 48, 52, 57, 78], "debug": 34, "decod": 36, "def": 36, "default": [4, 6, 7, 8, 36, 46, 47, 48, 51, 54, 70, 72, 78], "default_error_cod": [2, 7], "default_page_height": [41, 54, 78], "default_page_width": [41, 54, 78], "default_status_cod": [2, 7], "defaulthead": [8, 34], "defin": [4, 70], "degre": [64, 78], "delet": [2, 8, 23, 33, 34, 39, 49, 51, 60, 74, 77, 78], "delete_act": 23, "delete_asset": [1, 2, 8, 9, 74], "delete_pag": [8, 33, 38, 41, 78], "delete_page_act": [10, 11], "delete_pages_job": [2, 38, 77], "delete_pages_operation_nam": [8, 33], "delete_pages_param": [38, 39, 41, 77, 78], "delete_pages_result": [2, 38, 79], "deletepageact": [11, 23], "deletepagesjob": [38, 39, 49, 66, 74, 76, 78, 79], "deletepagesparam": [39, 41, 49, 74, 76, 77], "deletepagesresult": [38, 66, 74, 76], "demonstr": [40, 77], "denmark": [46, 47, 48, 52, 57, 78], "detail": [2, 7, 74], "determin": [4, 70], "dict": [2, 5, 6, 34, 36, 39, 51, 55, 56, 66, 71, 72, 74, 77, 78, 79], "dictionari": [6, 36, 50, 51, 55, 66, 72, 78, 79], "differ": [52, 56, 78], "digit": [51, 60, 78], "dimens": [54, 78], "distinguish": [51, 78], "distinguished_nam": [41, 51, 78], "dk": [46, 47, 48, 52, 57, 78], "doc": [1, 2, 41, 52, 74, 78], "document": [2, 33, 39, 42, 44, 46, 47, 48, 50, 51, 52, 54, 60, 74, 77, 78, 79], "document_gener": [10, 11], "document_generation_external_asset_request": [10, 11], "document_generation_internal_asset_request": [10, 11], "document_generation_params_payload": [10, 11], "document_languag": [15, 41, 45, 78], "document_level_permiss": [38, 39, 41, 77, 78], "document_merg": 33, "document_merge_job": [2, 38, 50, 77, 78], "document_merge_operation_nam": [8, 33], "document_merge_param": [16, 36, 38, 39, 41, 77, 78], "document_merge_result": [2, 38, 79], "documentgener": 33, "documentgenerationparamspayload": [11, 16], "documentlanguag": [15, 45, 46, 47, 48, 74, 76], "documentlevelpermiss": [39, 41, 51, 74, 76, 77], "documentmerg": [38, 41, 78], "documentmergeexternalassetrequest": [11, 16], "documentmergeinternalassetrequest": [11, 16], "documentmergejob": [38, 39, 50, 66, 74, 76, 78, 79], "documentmergeparam": [16, 36, 39, 41, 50, 74, 76, 77], "documentmergepdfresult": [38, 39, 66, 76, 77, 79], "documentmergeresult": [74, 76], "docx": [1, 2, 39, 41, 50, 52, 74, 77, 78], "doe": [51, 78], "doesn": 7, "dom": [54, 78], "done": [1, 2, 10, 30, 74], "dot": [44, 78], "download": [2, 8, 33, 74], "download_uri": [37, 75], "downloaduri": [37, 75], "downstream": [39, 77], "dpi": [44, 78], "dropbox": [2, 37, 75], "dto": [8, 9], "due": 34, "dure": [32, 36], "dutch": [46, 47, 48, 52, 57, 78], "dynam": [39, 77], "e": [46, 47, 48, 51, 52, 57, 78], "e_seal": [8, 33], "edit": [39, 46, 47, 48, 60, 77, 78], "edit_annot": [41, 60, 78], "edit_cont": [41, 60, 78], "edit_document_assembli": [41, 60, 78], "edit_fill_and_sign_form_field": [41, 60, 78], "ee": [46, 47, 48, 52, 57, 78], "either": [7, 34, 39, 73, 77, 78], "el": [46, 47, 48, 52, 57, 78], "el_gr": [41, 45, 46, 47, 48, 52, 57, 78], "electron": [33, 39, 51, 77, 78], "electronic_seal_job": [39, 77], "electronic_seal_param": [17, 38, 39, 41, 77, 78], "electronics": 33, "electronicsealparam": 51, "element": [36, 39, 51, 53, 54, 77, 78], "elements_to_extract": [19, 39, 53, 77, 78], "elements_to_extract_rendit": [53, 78], "elementstoextract": 19, "elimin": 36, "els": [36, 51, 78], "embed": [60, 78], "empti": [3, 6, 33, 69, 72], "en": [46, 47, 48, 52, 57, 78], "en_gb": [41, 45, 46, 47, 48, 52, 57, 78], "en_u": [41, 45, 46, 47, 48, 52, 57, 78], "enabl": [39, 60, 77, 78], "encapsul": [2, 4, 5, 6, 37, 66, 70, 71, 72, 74, 75, 79], "enclos": [66, 79], "encod": 36, "encount": [2, 74], "encrypt": [39, 60, 77, 78], "encryption_algorithm": [27, 36, 38, 39, 41, 77, 78], "encryptionalgorithm": [27, 36, 39, 41, 60, 74, 76, 77], "end": [35, 39, 41, 77, 78], "enforce_typ": [2, 8], "english": [46, 47, 48, 52, 57, 78], "enhanc": [39, 77], "ensur": [36, 77], "ensure_ascii": 36, "entiti": 34, "entri": [2, 74], "enum": [2, 5, 6, 30, 33, 34, 37, 39, 44, 46, 47, 48, 50, 51, 52, 53, 57, 59, 60, 64, 71, 72, 74, 75, 77, 78], "enumer": [2, 33, 34, 74], "environ": [39, 77], "err_msg": 36, "error": [2, 7, 31, 51, 73, 74, 78], "error_cod": [2, 7, 8, 34], "error_messag": 8, "error_respons": 31, "error_response_handl": 34, "es_": [41, 45, 46, 47, 48, 52, 57, 78], "escap": 36, "eseal": [38, 41, 78], "eseal_job": [2, 38, 77], "eseal_pdf": 33, "eseal_pdf_external_asset_request": [10, 11], "eseal_pdf_internal_asset_request": [10, 11], "eseal_pdf_nam": [8, 33], "eseal_pdf_result": [2, 38, 79], "esealpdf": [10, 11], "esealpdfexternalassetrequest": [11, 17], "esealpdfinternalassetrequest": [11, 17], "esealpdfresult": [38, 39, 66, 74, 76, 77], "establish": [4, 70], "estonia": [46, 47, 48, 52, 57, 78], "estonian": [46, 47, 48, 52, 57, 78], "et": [46, 47, 48, 52, 57, 78], "et_e": [41, 45, 46, 47, 48, 52, 57, 78], "eu": [1, 2, 4, 33, 52, 70, 74, 78], "eu_": [41, 52, 78], "eu_uri": [8, 33], "europ": [2, 74], "european": [52, 78], "ew1": 33, "exampl": [36, 39, 77], "excel": [2, 41, 45, 74, 78], "except": [1, 2, 36, 60, 67, 74, 78], "execut": [2, 74], "execution_context": [1, 2], "executioncontext": [2, 8, 9, 36], "exhaust": [2, 7, 34, 73, 74], "exist": [39, 51, 77, 78], "expired_at": [8, 32], "expired_in_m": 32, "expiri": 32, "export": [33, 39, 52, 53, 59, 77, 78], "export_ocr_local": [38, 41, 78], "export_pdf": [8, 33, 38, 41, 78], "export_pdf_external_asset_request": [10, 11], "export_pdf_form_data": [8, 33], "export_pdf_form_data_job": [40, 77], "export_pdf_form_data_operation_nam": [8, 33], "export_pdf_form_data_result": 79, "export_pdf_internal_asset_request": [10, 11], "export_pdf_job": [2, 38, 77], "export_pdf_operation_nam": [8, 33], "export_pdf_param": [18, 38, 39, 41, 77, 78], "export_pdf_params_payload": [10, 11], "export_pdf_result": [2, 38, 79], "export_pdf_target_format": [38, 41, 78], "export_pdf_to_imag": [8, 33], "export_pdf_to_images_job": [2, 38, 77], "export_pdf_to_images_output_typ": [38, 39, 41, 77, 78], "export_pdf_to_images_param": [26, 38, 39, 41, 77, 78], "export_pdf_to_images_result": [2, 38, 79], "export_pdf_to_images_target_format": [38, 39, 41, 77, 78], "exportocrlocal": [41, 52, 74, 76], "exportpdf": [10, 11, 33], "exportpdfexternalassetrequest": [11, 18], "exportpdfformdatajob": [40, 74, 76, 79], "exportpdfformdataparam": [74, 76], "exportpdfformdataresult": [40, 74, 76, 77], "exportpdfinternalassetrequest": [11, 18], "exportpdfjob": [38, 39, 52, 66, 74, 76, 78, 79], "exportpdfparam": [18, 39, 41, 52, 74, 76, 77], "exportpdfparamspayload": [11, 18], "exportpdfresult": [38, 39, 66, 74, 76, 77], "exportpdftargetformat": [39, 41, 52, 74, 76, 77], "exportpdftoimagesjob": [38, 39, 59, 66, 74, 76, 78, 79], "exportpdftoimagesoutputtyp": [39, 41, 59, 74, 76, 77], "exportpdftoimagesparam": [26, 39, 41, 59, 74, 76, 77], "exportpdftoimagesresult": [38, 39, 66, 74, 76, 77], "exportpdftoimagestargetformat": [39, 41, 59, 74, 76, 77], "extens": [1, 2, 52, 59, 74, 78], "extern": [33, 37, 39, 40, 66, 75, 77, 79], "external_asset": [1, 2, 35, 75], "external_storage_typ": [1, 2, 75], "externalasset": [2, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 29, 37, 39, 74, 77], "externalstoragetyp": [2, 37, 74], "extract": [33, 39, 40, 53, 60, 66, 77, 78, 79], "extract_element_typ": [38, 41, 78], "extract_operation_nam": [8, 33], "extract_pdf": [8, 10, 11, 33, 38, 41, 78], "extract_pdf_external_asset_request": [10, 11], "extract_pdf_internal_asset_request": [10, 11], "extract_pdf_job": [2, 38, 77], "extract_pdf_param": [19, 38, 39, 41, 77, 78], "extract_pdf_params_payload": [10, 11], "extract_pdf_result": [2, 38, 79], "extract_renditions_element_typ": [38, 41, 78], "extracted_form_data": [40, 77], "extractelementtyp": [39, 41, 53, 74, 76, 77], "extractpdf": 33, "extractpdfexternalassetrequest": [11, 19], "extractpdfinternalassetrequest": [11, 19], "extractpdfjob": [38, 39, 53, 66, 74, 76, 78, 79], "extractpdfparam": [19, 39, 41, 53, 74, 76, 77], "extractpdfparamspayload": [11, 19], "extractpdfresult": [38, 39, 66, 74, 76, 77], "extractrenditionselementtyp": [41, 53, 74, 76], "factori": [45, 78], "fail": [1, 2, 10, 30, 74], "failur": [7, 32, 34], "fals": [34, 36, 42, 46, 47, 48, 53, 54, 58, 78], "favorite_movi": 77, "featur": [39, 77], "fetch": [39, 77], "fi": [46, 47, 48, 52, 57, 78], "fi_fi": [41, 45, 46, 47, 48, 52, 57, 78], "fidel": [39, 77], "field": [51, 55, 77, 78], "field_loc": [36, 38, 39, 41, 77, 78], "field_nam": [39, 51, 77, 78], "field_opt": [36, 38, 39, 41, 77, 78], "fieldloc": [36, 39, 41, 51, 74, 76, 77], "fieldopt": [36, 39, 41, 51, 74, 76, 77], "figur": [41, 53, 78], "file": [4, 6, 33, 34, 39, 40, 41, 44, 52, 54, 56, 58, 59, 60, 63, 65, 66, 70, 72, 77, 78, 79], "file_1": [39, 77], "file_2": [39, 77], "file_count": [36, 65, 78], "file_ext": [52, 78], "file_input_stream": [39, 77], "file_path": 36, "file_to_insert": [39, 77], "file_util": [2, 8], "filecount": 65, "fill": [51, 55, 60, 78], "find": 77, "finland": [46, 47, 48, 52, 57, 78], "finnish": [46, 47, 48, 52, 57, 78], "first": [39, 77], "fix": [77, 79], "flag": [51, 78], "float": [36, 54, 78], "folder": [39, 77], "follow": [39, 77], "footer": [54, 78], "foreground": 78, "form": [6, 33, 39, 40, 51, 55, 60, 72, 77, 78, 79], "form_data": 77, "form_fil": [39, 41, 51, 77, 78], "form_filling_and_annot": [41, 51, 78], "format": [6, 39, 40, 50, 51, 52, 53, 59, 72, 77, 78, 79], "fr": [46, 47, 48, 52, 57, 78], "fr_fr": [41, 45, 46, 47, 48, 52, 57, 78], "fragment": [16, 38, 41, 74, 76], "franc": [46, 47, 48, 52, 57, 78], "free": 34, "french": [46, 47, 48, 52, 57, 78], "from": [2, 6, 39, 40, 41, 44, 49, 51, 52, 53, 57, 60, 61, 66, 72, 74, 77, 78, 79], "from_fil": [2, 4, 70], "from_json": [4, 6, 30, 31, 72], "func": 36, "function": [2, 36, 74], "further": [39, 77], "galician": [52, 78], "gatewai": 34, "gb": [46, 47, 48, 52, 57, 78], "gener": [39, 42, 50, 66, 77, 78, 79], "generate_report": [12, 42, 78], "generatereport": 12, "generic_can_not_be_non": [8, 33], "generic_can_not_be_none_or_empti": [8, 33], "german": [46, 47, 48, 52, 57, 78], "germani": [46, 47, 48, 52, 57, 78], "get": [2, 3, 4, 6, 8, 34, 36, 37, 39, 54, 58, 69, 72, 74, 75, 77, 78], "get_access_token": [41, 51, 78], "get_act": [11, 23], "get_add_char_info": [41, 53, 78], "get_api_kei": [8, 32], "get_appear_on_foreground": 78, "get_appearance_item": [41, 51], "get_appearance_opt": [41, 51, 78], "get_asset": [8, 35, 38, 39, 40, 41, 62, 66, 77, 78, 79], "get_asset_id": [2, 37, 75], "get_assets_to_combin": [41, 43, 78], "get_assets_to_insert": [41, 56, 78], "get_assets_to_replac": [41, 63, 78], "get_authent": [8, 32], "get_base_asset": [41, 56, 63, 78], "get_bottom": [41, 51, 78], "get_char_bound": 19, "get_client_id": [2, 3, 8, 32, 69], "get_client_secret": [2, 3, 69], "get_cod": [30, 31], "get_command": [11, 23], "get_compression_level": [41, 44, 78], "get_connect_timeout": [2, 4, 70], "get_cont": [1, 2, 8, 38, 39, 40, 66, 74, 77, 79], "get_content_encrypt": [41, 60, 78], "get_content_json": [38, 66, 79], "get_create_tagged_pdf": [41, 45, 46, 47, 48], "get_credenti": [4, 6, 72], "get_credential_id": [41, 51, 78], "get_csc_auth_context": [41, 51, 78], "get_default_uri": [8, 33], "get_document_languag": [41, 45, 46, 47, 48, 78], "get_download_uri": [2, 8, 9, 37, 75], "get_elements_to_extract": [41, 53, 78], "get_elements_to_extract_rendit": [41, 53, 78], "get_encryption_algorithm": [41, 60, 78], "get_end": [8, 35], "get_endpoint": [8, 33], "get_error_respons": [30, 31], "get_export_ocr_local": [41, 52, 78], "get_export_pdf_to_images_output_typ": [41, 59, 78], "get_export_pdf_to_images_target_format": [41, 59, 78], "get_external_storage_typ": [2, 37, 75], "get_field_loc": [41, 51, 78], "get_field_nam": [41, 51, 78], "get_file_count": [41, 65, 78], "get_file_ext": [41, 52, 59, 78], "get_file_path": [8, 36], "get_format": [41, 50, 78], "get_frag": [41, 50, 78], "get_fragments_list": [41, 50, 78], "get_from_extens": [1, 2, 74], "get_generate_report": [41, 42, 78], "get_header_info": [8, 33], "get_host": [4, 6, 72], "get_include_header_foot": [41, 54, 78], "get_include_page_level_properti": [41, 58, 78], "get_input_stream": [2, 37, 40, 75, 77], "get_job_result": [1, 2, 8, 39, 40, 74, 77], "get_job_statu": [1, 2, 8, 74], "get_json": [41, 54, 78], "get_json_data_for_merg": [41, 50, 78], "get_json_form_fields_data": [41, 55, 78], "get_json_form_fields_data_str": [41, 55, 78], "get_left": [41, 51, 78], "get_length": [11, 23], "get_local": [41, 57, 78], "get_messag": [30, 31], "get_mime_typ": [2, 37, 75], "get_ocr_lang": [41, 52, 78], "get_ocr_local": [41, 57, 78], "get_ocr_typ": [41, 57, 78], "get_opac": 78, "get_output_format": [41, 50, 78], "get_output_typ": [41, 59, 78], "get_owner_password": [41, 60, 78], "get_page_act": [41, 64, 78], "get_page_count": [41, 65, 78], "get_page_end": 78, "get_page_layout": [41, 54, 78], "get_page_numb": [41, 51, 78], "get_page_rang": [8, 11, 23, 35, 41, 49, 62, 65, 78], "get_page_start": 78, "get_password": [4, 6, 41, 51, 61, 72, 78], "get_pdf_properties_dict": [38, 66, 79], "get_pdf_services_uri": [2, 4], "get_permiss": [41, 60, 78], "get_pin": [41, 51, 78], "get_port": [4, 6, 72], "get_port_based_on_schem": [4, 6], "get_provider_nam": [41, 51, 78], "get_proxy_schem": [4, 6, 72], "get_proxy_server_config": [2, 4, 70], "get_rang": [38, 41, 78], "get_read_timeout": [2, 4, 70], "get_report": [38, 66, 77, 79], "get_request_tracking_id_from_respons": [8, 34], "get_resourc": [38, 39, 66, 77, 79], "get_respons": [8, 9], "get_result": [1, 2, 39, 40, 74, 77], "get_retry_interv": [1, 2, 74], "get_right": [41, 51, 78], "get_rotation_angl": [11, 23], "get_seal_appearance_opt": [41, 51, 78], "get_seal_certificate_credenti": [41, 51, 78], "get_seal_field_opt": [41, 51, 78], "get_shift_head": [41, 42, 78], "get_signature_format": [41, 51, 78], "get_start": [8, 35], "get_statu": [1, 2, 30, 31, 74], "get_styling_info": [41, 53, 78], "get_table_structure_typ": [41, 53, 78], "get_tagged_pdf": [38, 39, 66, 77, 79], "get_target_format": [41, 52, 78], "get_token": [8, 32], "get_token_typ": [41, 51, 78], "get_top": [41, 51, 78], "get_tsa_basic_auth_credenti": [41, 51, 78], "get_typ": [11, 23, 41, 57, 78], "get_upload_uri": [8, 9], "get_uri": [2, 37, 75], "get_uri_for_region": [8, 33], "get_url": [41, 51, 78], "get_user_password": [41, 60, 78], "get_usernam": [4, 6, 41, 51, 72, 78], "get_valu": [1, 2, 41, 60, 74, 78], "get_vis": [41, 51, 78], "get_watermark_appear": 78, "getcharbound": 19, "getenv": [39, 40, 77], "getformdata": 33, "gif": [1, 2, 74], "given": [2, 49, 74, 78], "gl": [52, 78], "gl_e": [41, 52, 78], "go": 34, "gr": [46, 47, 48, 52, 57, 78], "grayscal": [44, 78], "greater": [6, 72], "greec": [46, 47, 48, 52, 57, 78], "greek": [46, 47, 48, 52, 57, 78], "guarante": [36, 39, 77], "ha": [2, 7, 34, 73, 74, 78], "handl": 32, "handle_api_failur": [8, 34], "handle_error_respons": [8, 9], "handle_ims_failur": [8, 32], "handle_service_api_error_respons": [8, 34], "handle_service_usage_failur": [8, 34], "handle_upload_asset_failur": [8, 34], "hant": [52, 78], "have": [2, 39, 74, 77], "head": [42, 78], "header": [2, 5, 34, 54, 71, 74, 78], "hebrew": [46, 47, 48, 52, 57, 78], "height": [54, 78], "here": [3, 39, 50, 69, 77, 78], "hidden": [44, 78], "high": [39, 41, 44, 60, 77, 78], "hk": [46, 47, 48, 57, 78], "hong": [46, 47, 48, 57, 78], "host": [4, 6, 51, 70, 72, 78], "how": [40, 77], "howev": [39, 77], "hr": [46, 47, 48, 52, 57, 78], "hr_hr": [41, 45, 46, 47, 48, 52, 57, 78], "html": [1, 2, 33, 39, 54, 74, 77, 78], "html_to_pdf": [8, 33, 38, 41, 78], "html_to_pdf_external_asset_request": [10, 11], "html_to_pdf_internal_asset_request": [10, 11], "html_to_pdf_job": [2, 38, 77], "html_to_pdf_operation_nam": [8, 33], "html_to_pdf_param": [20, 38, 39, 41, 77, 78], "html_to_pdf_params_payload": [10, 11], "html_to_pdf_result": [2, 38, 79], "htmltopdf": [10, 11, 33], "htmltopdfexternalassetrequest": [11, 20], "htmltopdfinternalassetrequest": [11, 20], "htmltopdfjob": [38, 39, 54, 66, 74, 76, 78, 79], "htmltopdfparam": [20, 39, 41, 54, 74, 76, 77], "htmltopdfparamspayload": [11, 20], "htmltopdfresult": [38, 39, 66, 74, 76, 77], "http": [2, 4, 6, 7, 8, 33, 70, 72], "http_client": [2, 8], "http_connect_timeout": [8, 33], "http_method": [2, 8], "http_port": [4, 6, 72], "http_read_timeout": [8, 33], "http_request": [2, 8], "httpmethod": [8, 34], "httprequest": [8, 34], "https_port": [4, 6, 72], "hu": [46, 47, 48, 52, 57, 78], "hu_hu": [41, 45, 46, 47, 48, 52, 57, 78], "human": 77, "hungari": [46, 47, 48, 52, 57, 78], "hungarian": [46, 47, 48, 52, 57, 78], "i": [2, 4, 6, 7, 33, 34, 36, 39, 40, 46, 47, 48, 51, 54, 56, 60, 66, 70, 72, 73, 74, 77, 78, 79], "id": [3, 7, 34, 51, 69, 78], "ignor": [51, 78], "il": [46, 47, 48, 52, 57, 78], "illustr": [2, 74], "im": [32, 33], "imag": [2, 33, 39, 44, 51, 53, 59, 74, 77, 78], "image_source_path": [39, 77], "implement": [2, 6, 36, 72, 74], "import": [33, 55, 77, 78, 79], "import_job": 77, "import_param": 77, "import_pdf_form_data": [8, 33, 38, 41, 77, 78], "import_pdf_form_data_job": 77, "import_pdf_form_data_operation_nam": [8, 33], "import_pdf_form_data_param": [38, 41, 77, 78], "import_pdf_form_data_result": [77, 79], "importpdfformdatajob": [55, 74, 76, 78, 79], "importpdfformdataparam": [41, 55, 74, 76, 77], "importpdfformdataresult": [74, 76, 77], "impos": [2, 74], "in_progress": [1, 2, 10, 30, 74], "inch": [44, 54, 78], "includ": [54, 58, 60, 78], "include_header_foot": [20, 39, 54, 77, 78], "include_page_level_properti": [24, 39, 58, 77, 78], "include_styl": 19, "includeheaderfoot": [20, 54, 78], "includestyl": 19, "inclus": [41, 78], "incom": 36, "increment": [39, 77], "indd": [1, 2, 74], "indent": 36, "indesign": [2, 74], "index": [39, 41, 67, 77, 78], "individu": [2, 74], "infin": 36, "infinit": 36, "info": 34, "inform": [39, 42, 51, 53, 77, 78], "initi": [54, 77, 78], "inlin": [39, 77], "input": [2, 6, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 33, 35, 37, 39, 40, 46, 47, 48, 53, 56, 57, 58, 63, 66, 72, 74, 75, 77, 78, 79], "input_asset": [12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 39, 40, 56, 63, 77, 78], "input_asset_id": [14, 18, 19, 20, 21, 22, 23, 26, 28], "input_document_asset_id": 17, "input_form": 77, "input_stream": [2, 8, 9, 37, 39, 40, 74, 75, 77], "input_stream_1": [39, 77], "input_stream_2": [39, 77], "input_stream_to_insert": [39, 77], "input_url": [20, 39, 77], "inputdocumentassetid": 17, "inputurl": 20, "insert": [33, 36, 39, 56, 60, 63, 77, 78], "insert_pag": [8, 33, 38, 41, 78], "insert_pages_job": [2, 38, 77], "insert_pages_operation_nam": [8, 33], "insert_pages_param": [38, 39, 41, 77, 78], "insert_pages_result": [2, 38, 79], "insertpagesjob": [38, 39, 56, 66, 74, 76, 78, 79], "insertpagesparam": [39, 41, 56, 74, 76, 77], "insertpagespdfjob": [39, 77], "insertpagesresult": [38, 39, 66, 74, 76, 77], "instanc": [2, 3, 4, 5, 6, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 59, 60, 61, 62, 63, 65, 66, 69, 70, 71, 72, 74, 75, 77, 78, 79], "instanti": [51, 78], "int": [2, 4, 6, 31, 35, 36, 41, 51, 56, 63, 65, 70, 72, 74, 78], "integ": [36, 78], "integr": 34, "integration_service_usage_limit_reached_error_messag": [8, 34], "intend": [41, 46, 47, 48, 51, 54, 60, 78], "intern": [1, 2, 5, 6, 37, 41, 46, 47, 48, 51, 54, 66, 75, 78, 79], "internal_client_config": [1, 2], "interv": [2, 74], "invalid": 33, "invalid_input_asset": [8, 33], "invalid_output_asset": [8, 33], "invoic": [39, 77], "invok": [53, 56, 78], "involv": [40, 77], "io": [1, 2, 33, 36, 43, 56, 63, 67, 74, 78], "is_blank": [8, 36], "is_empti": [11, 23, 38, 41, 78], "is_ims_api_cal": 34, "is_ims_cal": 34, "is_user_password": 36, "israel": [46, 47, 48, 52, 57, 78], "it_it": [41, 45, 46, 47, 48, 52, 57, 78], "itali": [46, 47, 48, 52, 57, 78], "italian": [46, 47, 48, 52, 57, 78], "item": [36, 51, 78], "item_separ": 36, "iter": 36, "its": [2, 37, 44, 50, 57, 74, 75, 78], "iw": [46, 47, 48, 52, 57, 78], "iw_il": [41, 45, 46, 47, 48, 52, 57, 78], "j": [54, 78], "ja": [46, 47, 48, 52, 57, 78], "ja_jp": [41, 45, 46, 47, 48, 52, 57, 78], "japan": [46, 47, 48, 52, 57, 78], "japanes": [46, 47, 48, 52, 57, 78], "javascript": [36, 44, 54, 78], "job": [2, 38, 50, 53, 57, 64, 66, 67, 74, 78, 79], "job_error_respons": [10, 30], "job_statu": [9, 10], "joberrorrespons": [30, 31], "jobstatu": [10, 30], "jp": [46, 47, 48, 52, 57, 78], "jp2k": [44, 78], "jpeg": [1, 2, 39, 41, 44, 59, 74, 77, 78], "jpg": [1, 2, 74], "json": [1, 2, 4, 5, 6, 20, 34, 36, 37, 39, 40, 50, 53, 54, 55, 58, 66, 70, 72, 74, 77, 78, 79], "json_data": [6, 72], "json_data_for_merg": [16, 39, 50, 77, 78], "json_form_fields_data": [55, 77, 78], "json_hint": [2, 4, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 35, 37, 38, 41, 54, 65], "json_hint_encod": [2, 8], "json_str": 31, "json_txt_content_typ": [8, 34], "jsondataformerg": 16, "jsonencod": 36, "jsonhintdecod": [8, 36], "jsonhintencod": [8, 36], "kane": [39, 77], "kei": [2, 4, 5, 6, 32, 34, 36, 37, 39, 40, 42, 43, 44, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 65, 70, 71, 72, 74, 75, 77, 78], "key_separ": 36, "kingdom": [46, 47, 48, 52, 57, 78], "know": [39, 50, 77, 78], "known": [39, 77], "ko": [46, 47, 48, 52, 57, 78], "ko_kr": [41, 45, 46, 47, 48, 52, 57, 78], "kong": [46, 47, 48, 57, 78], "korea": [46, 47, 48, 52, 57, 78], "korean": [46, 47, 48, 52, 57, 78], "kr": [46, 47, 48, 52, 57, 78], "label": [41, 51, 78], "languag": [46, 47, 48, 52, 57, 78], "larg": 34, "last": [39, 41, 77, 78], "later": 34, "latin": [39, 60, 77, 78], "latvia": [46, 47, 48, 52, 57, 78], "latvian": [46, 47, 48, 52, 57, 78], "layer": [44, 78], "layout": [54, 78], "least": [39, 77], "leav": [2, 74], "left": [51, 78], "length": [60, 78], "let": 36, "level": [36, 39, 44, 51, 52, 53, 58, 77, 78], "li": [2, 74], "like": [36, 39, 77], "limit": [2, 7, 34, 73, 74], "linear": [33, 39, 77], "linearize_pdf": [8, 33], "linearize_pdf_external_asset_request": [10, 11], "linearize_pdf_internal_asset_request": [10, 11], "linearize_pdf_job": [2, 38, 77], "linearize_pdf_operation_nam": [8, 33], "linearize_pdf_result": [2, 38, 79], "linearizepdf": [10, 11, 33], "linearizepdfexternalassetrequest": [11, 21], "linearizepdfinternalassetrequest": [11, 21], "linearizepdfjob": [38, 39, 66, 74, 76, 79], "linearizepdfresult": [38, 39, 66, 74, 76, 77], "link": [77, 79], "list": [2, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 34, 36, 39, 43, 50, 51, 53, 59, 60, 66, 74, 77, 78, 79], "list_of_page_imag": [39, 41, 59, 77, 78], "listofpageimag": [59, 78], "lithuania": [46, 47, 48, 52, 57, 78], "lithuanian": [46, 47, 48, 52, 57, 78], "local": [39, 46, 47, 48, 52, 57, 77, 78], "locat": [8, 9, 34, 39, 40, 51, 77, 78], "location_header_nam": [8, 34], "low": [41, 44, 60, 78], "lt": [46, 47, 48, 52, 57, 78], "lt_lt": [41, 45, 46, 47, 48, 52, 57, 78], "lv": [46, 47, 48, 52, 57, 78], "lv_lv": [41, 45, 46, 47, 48, 52, 57, 78], "m": [2, 74], "macedonia": [46, 47, 48, 52, 57, 78], "macedonian": [46, 47, 48, 52, 57, 78], "machin": 77, "mai": [39, 77], "main": [39, 77], "make": [39, 54, 77, 78], "malta": [46, 47, 48, 52, 57, 78], "maltes": [46, 47, 48, 52, 57, 78], "mandatori": [39, 77], "manipul": [54, 78], "manual": [77, 79], "map": [5, 51, 56, 63, 71, 78], "mark": 77, "marker": [45, 60, 78], "market": [39, 77], "match": [55, 78], "maximum": [60, 78], "mean": 77, "mechan": [54, 78], "media": [2, 37, 39, 45, 50, 52, 59, 74, 75, 77, 78], "media_typ": [8, 9, 10, 11], "mediatyp": [11, 39, 40, 77], "medium": [41, 44, 78], "meet": [39, 77], "member": 36, "merg": [33, 39, 50, 77, 78], "merge_docu": [8, 33], "messag": [7, 8, 34], "metadata": [44, 60, 78], "method": [2, 36, 45, 56, 74, 77, 78], "might": [54, 78], "miller": [39, 77], "millisecond": [4, 70], "mime": [2, 37, 74, 75], "mime_typ": [1, 2, 37, 39, 40, 74, 75, 77], "minut": 32, "mk": [46, 47, 48, 52, 57, 78], "mk_mk": [41, 45, 46, 47, 48, 52, 57, 78], "modif": [51, 78], "modul": [67, 68], "more": [39, 50, 77, 78], "most": 36, "msword": [2, 52, 74, 78], "mt": [46, 47, 48, 52, 57, 78], "mt_mt": [41, 45, 46, 47, 48, 52, 57, 78], "multipl": [39, 56, 77, 78], "must": [39, 54, 77, 78], "name": [6, 39, 41, 51, 54, 55, 72, 77, 78], "nan": 36, "nb": [46, 47, 48, 52, 57, 78], "nb_no": [41, 45, 46, 47, 48, 52, 57, 78], "need": [39, 42, 77, 78], "neg": 36, "netherland": [46, 47, 48, 52, 57, 78], "network": [2, 7, 39, 73, 74, 77], "new": [2, 39, 40, 41, 42, 43, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 74, 77, 78, 79], "newlin": 36, "nl": [46, 47, 48, 52, 57, 78], "nl_nl": [41, 45, 46, 47, 48, 52, 57, 78], "nn": [52, 78], "nn_no": [41, 52, 78], "no_changes_allow": [41, 51, 78], "no_no": [41, 45, 46, 47, 48, 57, 78], "non": [36, 39, 77], "none": [2, 3, 4, 5, 6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 32, 33, 34, 35, 36, 37, 39, 40, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 59, 60, 62, 63, 64, 65, 69, 70, 71, 72, 74, 75, 77, 78], "norwai": [46, 47, 48, 52, 57, 78], "norwegian": [46, 47, 48, 52, 57, 78], "note": [46, 47, 48, 77, 78], "notif": [2, 74], "notifi": [2, 4, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 70, 74], "notifier_config": [2, 4, 27, 71], "notifier_data": [2, 4, 71], "notifier_typ": [2, 4, 71], "notifierconfig": [2, 4, 5, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 70, 74], "notifierdata": [4, 5, 70, 74], "notifiertyp": [4, 5, 70, 74], "notify_config_list": [2, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 74], "number": [4, 6, 39, 51, 54, 56, 63, 70, 72, 77, 78], "nynorsk": [52, 78], "o": [36, 39, 40, 77], "oauth": 32, "obj": 36, "object": [2, 4, 5, 6, 8, 9, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 43, 50, 51, 54, 56, 58, 60, 63, 66, 70, 71, 72, 74, 75, 77, 78, 79], "object_util": [2, 8], "objectutil": [8, 36], "ocr": [8, 33, 39, 52, 57, 77, 78], "ocr_lang": [18, 22, 52, 78], "ocr_local": [57, 78], "ocr_param": [22, 38, 41, 78], "ocr_pdf": [33, 38, 41, 78], "ocr_pdf_external_asset_request": [10, 11], "ocr_pdf_internal_asset_request": [10, 11], "ocr_pdf_job": [2, 38, 57, 66, 77, 78, 79], "ocr_pdf_operation_nam": [8, 33], "ocr_pdf_param": [22, 39, 77], "ocr_pdf_params_payload": [10, 11], "ocr_pdf_result": [2, 38, 79], "ocr_supported_local": [38, 41, 78], "ocr_supported_typ": [38, 41, 78], "ocr_typ": [22, 57, 78], "ocrjob": [57, 78], "ocrlang": [18, 22], "ocrparam": [22, 39, 41, 57, 74, 76, 77], "ocrparamspayload": [11, 22], "ocrpdf": [10, 11], "ocrpdfexternalassetrequest": [11, 22], "ocrpdfinternalassetrequest": [11, 22], "ocrpdfjob": [38, 39, 57, 66, 74, 76, 78, 79], "ocrpdfresult": [38, 39, 66, 74, 76, 77], "ocrsupportedlocal": [39, 41, 57, 74, 76, 77], "ocrsupportedtyp": [41, 57, 74, 76], "ocrtyp": 22, "off": 77, "offic": [46, 47, 48, 78], "officedocu": [2, 50, 52, 74, 78], "one": [39, 77], "onli": [33, 36, 39, 40, 46, 47, 48, 51, 60, 77, 78], "only_embedded_fil": [41, 60, 78], "onto": [39, 77], "op": 34, "opac": [77, 78], "open": [39, 40, 60, 77, 78], "openxmlformat": [2, 50, 52, 74, 78], "oper": [0, 1, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79], "operation_endpoint": [8, 9], "operation_header_info": [8, 9], "operation_header_info_endpoint_map": [2, 8], "operation_result_temp_directori": [8, 33], "operationexcept": [2, 8], "operationheaderinfoendpointmap": [8, 33], "optim": [39, 77], "option": [2, 4, 5, 6, 37, 39, 40, 42, 43, 44, 46, 47, 48, 50, 51, 52, 53, 54, 56, 57, 58, 60, 65, 70, 71, 72, 74, 75, 77, 78], "option_on": 77, "option_thre": 77, "option_two": 77, "order": [39, 77], "otherwis": [36, 54, 78], "our": 34, "output": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 29, 33, 36, 39, 40, 42, 44, 50, 51, 53, 59, 66, 77, 78, 79], "output_asset": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 29, 39, 40, 77], "output_fil": [40, 77], "output_file_path": [40, 77], "output_filled_form": 77, "output_format": [16, 38, 39, 41, 77, 78], "output_typ": 26, "outputformat": [16, 39, 41, 50, 74, 76, 77], "outputtyp": [26, 59, 78], "overload": 34, "owner": [51, 60, 78], "owner_password": [60, 78], "packag": 68, "pade": [41, 51, 78], "page": [33, 39, 41, 49, 51, 54, 56, 58, 60, 62, 63, 64, 65, 67, 77, 78], "page_act": [10, 11, 36], "page_action_command": [10, 11], "page_count": [36, 39, 65, 77, 78], "page_end": 78, "page_height": [39, 54, 77, 78], "page_layout": [20, 38, 39, 41, 77, 78], "page_level": 24, "page_manipulation_external_asset_request": [10, 11], "page_manipulation_internal_asset_request": [10, 11], "page_manipulation_params_payload": [10, 11], "page_numb": [39, 51, 77, 78], "page_rang": [2, 8, 23, 36, 38, 39, 43, 49, 56, 62, 63, 64, 65, 77, 78], "page_ranges_for_delet": [39, 77], "page_start": 78, "page_width": [39, 54, 77, 78], "pageact": [11, 23, 36, 64, 78], "pageactioncommand": [11, 23], "pagecount": 65, "pageheight": 54, "pagelayout": [20, 39, 41, 54, 74, 76, 77], "pagelevel": 24, "pagemanipul": [10, 11, 33], "pagemanipulationexternalassetrequest": [11, 23], "pagemanipulationinternalassetrequest": [11, 23], "pagemanipulationparamspayload": [11, 23], "pagerang": [8, 23, 35, 36, 38, 39, 41, 43, 49, 56, 62, 63, 64, 65, 74, 76, 77], "pages_to_reord": [39, 77], "pagewidth": 54, "paid": 34, "param": [2, 8, 12, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 26, 27, 28, 29, 36, 38, 74, 76, 77], "paramet": [2, 3, 4, 5, 6, 37, 39, 40, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 69, 70, 71, 72, 74, 75, 77, 78, 79], "particular": [2, 74], "pass": 36, "password": [4, 6, 28, 36, 39, 51, 60, 61, 70, 72, 77, 78], "password_protect": 27, "password_protect_param": [38, 41, 78], "passwordprotect": 27, "passwordprotectparam": [27, 39, 41, 60, 74, 76, 77], "path": [4, 70, 77], "path_util": [2, 8], "pathlib": 77, "pdf": [1, 2, 3, 4, 32, 33, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 74, 77, 78, 79], "pdf_accessibility_check": [8, 33, 78], "pdf_accessibility_checker_job": 77, "pdf_accessibility_checker_operation_nam": [8, 33], "pdf_accessibility_checker_param": [77, 78], "pdf_accessibility_checker_result": 79, "pdf_electronic_seal_param": 36, "pdf_file": [39, 77], "pdf_properti": [8, 10, 11, 33, 38, 41, 78], "pdf_properties_dict": [66, 79], "pdf_properties_external_asset_request": [10, 11], "pdf_properties_internal_asset_request": [10, 11], "pdf_properties_job": [2, 38, 77], "pdf_properties_operation_nam": [8, 33], "pdf_properties_param": [24, 38, 39, 41, 77, 78], "pdf_properties_params_payload": [10, 11], "pdf_properties_result": [2, 38, 39, 77, 79], "pdf_servic": [0, 1, 39, 40, 74, 77], "pdf_services_api": [2, 8, 10, 11, 30, 33], "pdf_services_api_request": [10, 11], "pdf_services_api_respons": [10, 30], "pdf_services_client_id": [39, 40, 77], "pdf_services_client_secret": [39, 40, 77], "pdf_services_help": [1, 2], "pdf_services_job": [0, 1, 74], "pdf_services_job_param": [2, 38, 78], "pdf_services_job_result": [2, 38, 79], "pdf_services_job_statu": [0, 1, 74], "pdf_services_job_status_respons": [0, 1, 74], "pdf_services_media_typ": [0, 1, 74, 77], "pdf_services_respons": [0, 1, 39, 40, 74, 77], "pdf_services_uri": [2, 8], "pdf_to_imag": [33, 38, 41, 78], "pdf_to_image_external_asset_request": [10, 11], "pdf_to_image_internal_asset_request": [10, 11], "pdf_to_image_params_payload": [10, 11], "pdf_to_images_operation_nam": [8, 33], "pdf_watermark": [8, 33, 78, 79], "pdf_watermark_job": 77, "pdf_watermark_operation_nam": [8, 33], "pdf_watermark_param": [77, 78], "pdf_watermark_result": [77, 79], "pdfaccessibilitycheckerjob": [74, 76, 78, 79], "pdfaccessibilitycheckerparam": [74, 76, 77], "pdfaccessibilitycheckerresult": [74, 76, 77], "pdfelectronicsealjob": [38, 39, 51, 66, 74, 76, 78, 79], "pdfelectronicsealparam": [17, 36, 39, 41, 51, 74, 76, 77], "pdfjob": [1, 2, 77, 78, 79], "pdfproperti": 33, "pdfpropertiesexternalassetrequest": [11, 24], "pdfpropertiesinternalassetrequest": [11, 24], "pdfpropertiesjob": [38, 39, 58, 66, 74, 76, 78, 79], "pdfpropertiesparam": [24, 39, 41, 58, 74, 76, 77], "pdfpropertiesparamspayload": [11, 24], "pdfpropertiesresult": [38, 39, 66, 74, 76, 77], "pdfservic": [0, 68, 69, 70, 71, 72, 73, 75, 77, 78, 79], "pdfservicesapi": [8, 9], "pdfservicesapirequest": [8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "pdfservicesapirespons": [30, 31], "pdfserviceshelp": [2, 8], "pdfservicesjob": [1, 2, 5, 37, 39, 40, 41, 66, 67, 71, 75, 77, 78, 79], "pdfservicesjobparam": [38, 41, 42, 43, 44, 45, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 74, 76], "pdfservicesjobresult": [2, 38, 66, 74, 76], "pdfservicesjobstatu": [1, 2, 67], "pdfservicesjobstatusrespons": [1, 2, 67], "pdfservicesmediatyp": [1, 2, 39, 67, 77], "pdfservicesrespons": [1, 2, 8, 67], "pdfservicesuri": [8, 33], "pdftoimag": [10, 11, 33], "pdftoimageparamspayload": [11, 26], "pdftoimagesexternalassetrequest": [11, 26], "pdftoimagesinternalassetrequest": [11, 26], "pdftoolsapi_err_quota": 34, "pdftoolsapi_hom": 34, "pdfwatermarkjob": [74, 76, 78, 79], "pdfwatermarkparam": [74, 76, 77], "pdfwatermarkresult": [74, 76, 77], "per": [39, 44, 77, 78], "percentag": 78, "perform": [2, 39, 51, 74, 77, 78], "permiss": [27, 38, 41, 51, 74, 76], "permit": [51, 78], "photoshop": [2, 74], "pin": [39, 51, 77, 78], "pkcs7": [41, 51, 78], "pl": [46, 47, 48, 52, 57, 78], "pl_pl": [41, 45, 46, 47, 48, 52, 57, 78], "place": 36, "placement": 78, "plain": [2, 34, 74], "platform": [8, 33], "platform_api_request": [8, 9], "pleas": [34, 46, 47, 48, 78], "png": [1, 2, 39, 41, 59, 74, 77, 78], "point": [2, 74], "poland": [46, 47, 48, 52, 57, 78], "polish": [46, 47, 48, 52, 57, 78], "poll": [2, 74], "polling_timeout_status_cod": [8, 9], "polling_url": [2, 74], "port": [4, 6, 70, 72], "portugues": [46, 47, 48, 52, 57, 78], "possibl": [6, 72], "post": [8, 34], "powerpoint": [2, 74], "ppt": [1, 2, 41, 45, 74, 78], "pptx": [1, 2, 41, 52, 74, 78], "pre": [54, 78], "prefer": [46, 47, 48, 78], "present": [2, 51, 52, 74, 78], "presentationml": [2, 52, 74, 78], "pretti": 36, "prevent": 36, "princip": [3, 32, 69], "principl": 32, "print": [36, 39, 44, 60, 77, 78], "print_high_qu": [41, 60, 78], "print_low_qu": [41, 60, 78], "pro": [77, 79], "problem": [77, 79], "process": [2, 40, 50, 74, 77, 78], "process_request": [8, 34], "produc": [39, 77], "progress": [2, 74], "properli": 77, "properti": [2, 7, 8, 11, 33, 39, 44, 58, 66, 74, 77, 78, 79], "propos": [39, 77], "protect": [33, 39, 61, 77, 78], "protect_pdf": [8, 10, 11, 33, 38, 41, 78], "protect_pdf_external_asset_request": [10, 11], "protect_pdf_internal_asset_request": [10, 11], "protect_pdf_job": [2, 38, 77], "protect_pdf_nam": [8, 33], "protect_pdf_param": [27, 36, 38, 39, 41, 77, 78], "protect_pdf_params_payload": [10, 11], "protect_pdf_result": [2, 38, 79], "protectpdf": 33, "protectpdfexternalassetrequest": [11, 27], "protectpdfinternalassetrequest": [11, 27], "protectpdfjob": [38, 39, 60, 66, 74, 76, 78, 79], "protectpdfparam": [36, 39, 41, 60, 74, 76, 77], "protectpdfparamspayload": [11, 27], "protectpdfresult": [38, 39, 66, 74, 76, 77], "provid": [6, 33, 39, 50, 51, 72, 77, 78], "provider_nam": [39, 51, 77, 78], "proxi": [2, 4, 34, 70, 74], "proxy_authentication_credenti": [2, 4, 72], "proxy_config_map": [4, 6], "proxy_schem": [2, 4, 72], "proxy_server_config": [2, 4, 70, 72], "proxyauthenticationcredenti": [4, 6, 70, 74], "proxyschem": [4, 6, 70, 74], "proxyserverconfig": [4, 6, 34, 70, 74], "psd": [1, 2, 74], "pt": [46, 47, 48, 52, 57, 78], "pt_br": [41, 45, 46, 47, 48, 52, 57, 78], "pt_pt": [41, 52, 78], "put": [8, 34], "py": [50, 78], "python": 77, "qualiti": [44, 60, 78], "quota": [2, 7, 34, 73, 74], "quota_error_messag": [8, 34], "rais": [2, 36, 74], "rang": [39, 41, 56, 62, 63, 77, 78], "rb": [39, 40, 77], "reach": [2, 7, 34, 73, 74], "read": [4, 39, 40, 70, 77], "read_conf_file_cont": [8, 36], "read_timeout": [4, 34, 70], "readabl": [39, 77], "reader": [39, 77], "readtimeout": [4, 70], "rearrang": [39, 77], "recurs": 36, "recursionerror": 36, "reduc": [39, 44, 77, 78], "refer": [36, 39, 54, 67, 77, 78], "refresh": [2, 32, 74], "refresh_download_uri": [1, 2, 8, 74], "refresh_token": [8, 32], "region": [0, 1, 4, 33, 46, 47, 48, 67, 70, 78], "region_uri_map": [8, 33], "regress": 36, "relat": [51, 78], "remain": 32, "remedi": [39, 77], "remov": [33, 39, 61, 77, 78], "remove_protect": [8, 10, 11, 33, 38, 41, 78], "remove_protection_extenal_asset_request": [10, 11], "remove_protection_internal_asset_request": [10, 11], "remove_protection_job": [2, 38, 77], "remove_protection_operation_nam": [8, 33], "remove_protection_param": [28, 38, 39, 41, 77, 78], "remove_protection_params_payload": [10, 11], "remove_protection_result": [2, 38, 79], "removeprotect": 33, "removeprotectionexternalassetrequest": [11, 28], "removeprotectioninternalassetrequest": [11, 28], "removeprotectionjob": [38, 39, 61, 66, 74, 76, 78, 79], "removeprotectionparam": [28, 39, 41, 61, 74, 76, 77], "removeprotectionparamspayload": [11, 28], "removeprotectionresult": [38, 39, 66, 74, 76, 77], "rendit": [53, 78], "renditions_to_extract": 19, "renditionstoextract": 19, "reorder": [33, 62, 78], "reorder_pag": [8, 33, 38, 41, 78], "reorder_pages_job": [2, 38, 77], "reorder_pages_operation_nam": [8, 33], "reorder_pages_param": [38, 39, 41, 77, 78], "reorder_pages_result": [2, 38, 79], "reorderpagesjob": [38, 39, 62, 66, 74, 76, 78, 79], "reorderpagesparam": [39, 41, 62, 74, 76, 77], "reorderpagesresult": [38, 39, 66, 74, 76, 77], "replac": [33, 39, 63, 77, 78], "replace_pag": [8, 33, 38, 41, 78], "replace_page_result": [2, 38, 79], "replace_pages_job": [2, 38, 77], "replace_pages_operation_nam": [8, 33], "replace_pages_param": [38, 39, 41, 77, 78], "replacepagesjob": [38, 39, 63, 66, 74, 76, 78, 79], "replacepagesparam": [39, 41, 63, 74, 76, 77], "replacepagesresult": [38, 39, 66, 74, 76, 77], "report": [39, 42, 66, 77, 78, 79], "report_asset": 77, "report_error_cod": 8, "repres": [2, 3, 5, 6, 7, 37, 39, 40, 41, 46, 47, 48, 50, 51, 52, 54, 57, 59, 60, 64, 66, 69, 71, 72, 74, 75, 77, 78, 79], "represent": [2, 5, 36, 37, 44, 50, 51, 54, 57, 74, 75, 78], "republ": [46, 47, 48, 52, 57, 78], "request": [4, 7, 9, 10, 33, 34, 54, 70, 78], "request_header_const": [2, 8], "request_kei": [2, 8, 34], "request_tracking_id": [2, 7, 8], "requestentitytoolarg": 34, "requestkei": [8, 33], "requir": [39, 51, 54, 60, 77, 78], "require_not_nul": [8, 36], "resolut": [44, 78], "resourc": [66, 79], "respons": [2, 4, 9, 10, 32, 34, 70, 74], "response_util": [2, 8], "responseutil": [8, 34], "restrict": [2, 39, 74, 77], "result": [2, 7, 38, 39, 50, 53, 54, 58, 60, 73, 74, 76, 77, 78], "result_asset": [39, 40, 77], "result_typ": [2, 8, 74], "retri": [2, 34, 74], "retriev": [40, 54, 77, 78], "retryabl": 34, "return": [2, 3, 4, 5, 6, 7, 36, 37, 39, 40, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 69, 70, 72, 73, 74, 75, 77, 78, 79], "rev": [8, 36], "rfc3161": [51, 78], "rfc3161_tsa_opt": [38, 41, 78], "rfc3161tsaoption": [41, 51, 74, 76], "right": [51, 78], "ro": [46, 47, 48, 52, 57, 78], "ro_ro": [41, 45, 46, 47, 48, 52, 57, 78], "romania": [46, 47, 48, 52, 57, 78], "romanian": [46, 47, 48, 52, 57, 78], "rotat": [23, 39, 60, 64, 77, 78], "rotate_act": 23, "rotate_pag": [8, 33, 38, 41, 78], "rotate_page_act": [10, 11], "rotate_pages_job": [2, 38, 64, 77, 78], "rotate_pages_operation_nam": [8, 33], "rotate_pages_param": [38, 39, 41, 77, 78], "rotate_pages_result": [2, 38, 79], "rotatepageact": [11, 23], "rotatepagesjob": [38, 39, 64, 66, 74, 76, 78, 79], "rotatepagesparam": [39, 41, 64, 74, 76, 77], "rotatepagesresult": [38, 39, 66, 74, 76, 77], "rotation_angl": 23, "rtf": [1, 2, 41, 52, 74, 78], "ru": [46, 47, 48, 52, 57, 78], "ru_ru": [41, 45, 46, 47, 48, 52, 57, 78], "russia": [46, 47, 48, 52, 57, 78], "russian": [46, 47, 48, 52, 57, 78], "s3": [2, 37, 75], "same": [51, 56, 78], "sampl": [39, 40, 77], "save": [40, 77], "scheme": [4, 6, 70, 72], "screen": [39, 77], "script": [54, 78], "sdk": [2, 5, 6, 37, 40, 41, 46, 47, 48, 51, 54, 74, 77, 78], "sdk_result": 33, "sdkexcept": [2, 7, 74], "se": [46, 47, 48, 52, 57, 78], "seal": [33, 39, 51, 77, 78], "seal_appearance_opt": [51, 78], "seal_certificate_credenti": [39, 51, 77, 78], "seal_field_nam": [39, 77], "seal_field_opt": [39, 51, 77, 78], "seal_imag": [41, 51, 78], "seal_image_asset": [17, 39, 77], "seal_image_asset_id": 17, "seal_image_fil": [39, 77], "seal_image_input_stream": [39, 77], "seal_opt": 17, "seal_page_numb": [39, 77], "seal_signature_format": [51, 78], "seal_vis": [39, 77], "sealimageassetid": 17, "sealopt": 17, "search": 67, "searchabl": [39, 57, 77, 78], "searchable_imag": [41, 57, 78], "searchable_image_exact": [41, 57, 78], "second": [2, 74], "secret": [3, 69], "secur": [39, 60, 77, 78], "see": [43, 44, 65, 77, 78], "self": [36, 73], "send": [4, 70], "sensibl": 36, "sent": 32, "separ": 36, "serbia": [46, 47, 48, 52, 57, 78], "serbian": [46, 47, 48, 52, 57, 78], "serial": 36, "serializ": 36, "server": [4, 6, 32, 34, 70, 72], "servic": [2, 3, 4, 7, 32, 33, 34, 40, 51, 69, 73, 74, 77, 78], "service_const": [2, 8], "service_principal_authent": [2, 8], "service_principal_configur": [8, 32], "service_principal_credenti": [1, 2, 69, 77], "service_token_authent": [2, 8], "service_token_credenti": [2, 8], "service_usage_exception_status_code_429001_str": [8, 34], "service_usage_exception_status_code_429002_str": [8, 34], "service_usage_limit_reached_error_messag": [8, 34], "serviceapiexcept": [2, 7, 74], "serviceconst": [8, 33], "serviceprincipalauthent": [8, 32], "serviceprincipalcredenti": [2, 3, 32, 39, 40, 74, 77], "servicetokenauthent": [8, 32], "servicetokencredenti": [8, 32], "serviceunavaibal": 34, "serviceusageerror": [7, 73], "serviceusageexcept": [2, 7, 74], "session_token": [2, 8, 33], "session_token_request_id_header_kei": [8, 34], "sessiontoken": [8, 32], "set": [2, 4, 33, 39, 40, 44, 46, 47, 48, 51, 52, 54, 60, 64, 70, 73, 74, 77, 78], "set_client_id": [8, 32], "set_output": 77, "set_output_valid": [8, 33], "set_param": 77, "set_token": [8, 32], "setformdata": 33, "sharepoint": [2, 37, 75], "sheet": [2, 52, 74, 78], "shift": [42, 78], "shift_head": [12, 42, 78], "shifthead": 12, "should": [6, 36, 51, 55, 72, 78], "si": [46, 47, 48, 52, 57, 78], "side": [2, 7, 73, 74], "signatur": [51, 60, 78], "signature1": [39, 77], "signature_format": [38, 41, 78], "signatureformat": [41, 51, 74, 76], "simpl": [6, 72], "simpli": [36, 39, 77], "singl": [39, 41, 77, 78], "size": [39, 44, 77, 78], "sk": [46, 47, 48, 52, 57, 78], "sk_sk": [41, 45, 46, 47, 48, 52, 57, 78], "skip": 36, "skipkei": 36, "sl": [46, 47, 48, 52, 57, 78], "sl_si": [41, 45, 46, 47, 48, 52, 57, 78], "slovak": [46, 47, 48, 52, 57, 78], "slovakia": [46, 47, 48, 52, 57, 78], "slovenia": [46, 47, 48, 52, 57, 78], "slovenian": [46, 47, 48, 52, 57, 78], "smaller": [39, 77], "some": [34, 39, 77], "sometim": 34, "sort": 36, "sort_kei": 36, "sourc": [39, 40, 45, 52, 54, 59, 77, 78], "source_path": [39, 40, 77], "source_path_1": [39, 77], "source_path_2": [39, 77], "spain": [46, 47, 48, 52, 57, 78], "spanish": [46, 47, 48, 52, 57, 78], "specif": [2, 36, 39, 74, 77], "specifi": [5, 6, 36, 39, 42, 44, 51, 53, 56, 64, 71, 72, 77, 78], "split": [33, 39, 65, 77, 78], "split_pdf": [8, 33, 38, 41, 78], "split_pdf_external_asset_request": [10, 11], "split_pdf_internal_asset_request": [10, 11], "split_pdf_job": [2, 38, 77], "split_pdf_operation_nam": [8, 33], "split_pdf_param": [29, 38, 39, 41, 77, 78], "split_pdf_params_payload": [10, 11], "split_pdf_result": [2, 38, 79], "splitopt": 29, "splitpdf": [10, 11, 33], "splitpdfexternalassetrequest": [11, 29], "splitpdfinternalassetrequest": [11, 29], "splitpdfjob": [38, 39, 65, 66, 74, 76, 78, 79], "splitpdfparam": [29, 39, 41, 65, 74, 76, 77], "splitpdfparamspayload": [11, 29], "splitpdfresult": [38, 39, 66, 74, 76, 77], "spreadsheetml": [2, 52, 74, 78], "sr": [46, 47, 48, 52, 57, 78], "sr_sr": [41, 45, 46, 47, 48, 52, 57, 78], "src": [54, 78], "stack": 34, "stamp": [51, 78], "standard": [39, 77], "star": 77, "start": [34, 35, 41, 78], "state": [46, 47, 48, 52, 57, 78], "static": [2, 9, 23, 31, 32, 33, 34, 36, 39, 74, 77], "statu": [2, 7, 8, 30, 31, 33, 74], "status_cod": [2, 7, 8], "status_pol": [8, 9], "storag": [2, 37, 74, 75], "storage_api": [2, 8], "storage_typ": [37, 75], "storageapi": [8, 9], "store": [37, 51, 75, 78], "str": [2, 3, 4, 5, 6, 8, 9, 11, 12, 14, 16, 17, 18, 19, 21, 22, 23, 24, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 39, 51, 54, 55, 60, 61, 66, 69, 70, 71, 72, 74, 75, 77, 78, 79], "stream": [2, 37, 74, 75], "stream_asset": [1, 2, 36, 39, 40, 75, 77], "stream_asset_list": 8, "stream_report": 77, "streamasset": [2, 8, 36, 37, 39, 40, 74, 77], "string": [2, 5, 6, 36, 37, 39, 44, 50, 51, 55, 57, 60, 66, 72, 74, 75, 77, 78, 79], "string_util": [2, 8], "stringutil": [8, 36], "structur": [4, 39, 44, 53, 70, 77, 78], "style": [53, 78], "styling_info": [53, 78], "subclass": 36, "submit": [1, 2, 39, 40, 74, 77], "submit_job": [2, 8, 9], "submodul": [0, 1, 10, 38], "subpackag": 68, "subtyp": [51, 78], "success_status_cod": 34, "sufia": 77, "summar": 77, "suppli": [54, 78], "support": [2, 6, 36, 39, 44, 46, 47, 48, 50, 51, 52, 53, 57, 59, 60, 72, 74, 77, 78], "sv": [46, 47, 48, 52, 57, 78], "sv_se": [41, 45, 46, 47, 48, 52, 57, 78], "svg": [1, 2, 74], "sweden": [46, 47, 48, 52, 57, 78], "swedish": [46, 47, 48, 52, 57, 78], "switzerland": [46, 47, 48, 52, 57, 78], "t": [7, 34, 36], "tabl": [39, 41, 53, 77, 78], "table_output_format": 19, "table_structure_typ": [38, 41, 78], "tableoutputformat": 19, "tablestructuretyp": [41, 53, 74, 76], "tabular": [53, 78], "tag": [39, 42, 46, 47, 48, 66, 77, 78, 79], "tagged_pdf": [66, 79], "take": 36, "target": [52, 55, 59, 78], "target_format": [18, 26, 39, 52, 77, 78], "targetformat": [18, 26], "tb": 73, "technologi": [39, 77], "templat": [39, 50, 51, 60, 77, 78], "test": 36, "text": [2, 34, 39, 41, 52, 53, 54, 74, 77, 78], "textual": [53, 78], "than": [6, 72], "thei": 77, "thi": [2, 3, 4, 5, 6, 7, 34, 36, 37, 39, 40, 41, 44, 45, 46, 47, 48, 50, 51, 52, 54, 56, 57, 59, 60, 66, 69, 70, 71, 72, 74, 75, 77, 78, 79], "those": [39, 77], "thrown": [2, 7, 51, 73, 74, 78], "tif": [1, 2, 74], "tiff": [1, 2, 74], "till": 32, "time": [32, 51, 56, 78], "time_to_expir": [8, 32], "timeout": [4, 34, 70], "timestamp": [51, 78], "titl": [54, 78], "to_dict": [41, 51], "to_json": [2, 4, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 37, 38, 41, 54, 65], "token": [8, 32, 51, 78], "token_endpoint": [8, 32], "token_typ": [39, 51, 77, 78], "too": 34, "top": [39, 51, 77, 78], "tr": [46, 47, 48, 52, 57, 78], "tr_tr": [41, 45, 46, 47, 48, 52, 57, 78], "track": 7, "tradit": [52, 78], "trial": 34, "true": [36, 39, 42, 51, 54, 58, 77, 78], "trust": [51, 78], "try": [34, 36], "tsa": [51, 78], "tsa_basic_auth_credenti": [38, 41, 78], "tsa_opt": [38, 41, 78], "tsabasicauthcredenti": [41, 51, 74, 76], "tsaoption": [41, 51, 74, 76], "tsp": [51, 78], "tupl": 36, "turkei": [46, 47, 48, 52, 57, 78], "turkish": [46, 47, 48, 52, 57, 78], "txt": [1, 2, 74], "type": [2, 3, 4, 5, 6, 34, 36, 37, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 69, 70, 71, 72, 74, 75, 77, 78, 79], "typeerror": 36, "typic": [7, 73], "u": [1, 2, 4, 33, 46, 47, 48, 52, 57, 70, 74, 78], "ua": [39, 46, 47, 48, 52, 57, 77, 78], "ue1": 33, "uk": [46, 47, 48, 52, 57, 78], "uk_ua": [41, 45, 46, 47, 48, 52, 57, 78], "ukrain": [46, 47, 48, 52, 57, 78], "ukrainian": [46, 47, 48, 52, 57, 78], "underli": [7, 73], "unicod": [39, 60, 77, 78], "unit": [46, 47, 48, 52, 57, 78], "unknown": 7, "until": [4, 70], "up": [2, 34, 74], "upgrad": 34, "upload": [1, 2, 8, 33, 39, 40, 74, 77], "upload_asset": [1, 2, 8, 39, 74, 77], "upload_asset_list": [2, 74], "upload_to_cloud": [8, 9], "uri": [2, 4, 8, 9, 33, 37, 74, 75], "url": [2, 5, 34, 39, 51, 71, 74, 77, 78], "us": [2, 3, 4, 5, 6, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 69, 70, 71, 72, 74, 75, 77, 78, 79], "us_uri": [8, 33], "usag": [2, 7, 34, 39, 40, 73, 74, 77], "user": [5, 44, 60, 71, 78], "user_password": [39, 60, 77, 78], "usernam": [4, 6, 51, 70, 72, 78], "username_password_credenti": [2, 4, 72], "usernamepasswordcredenti": [4, 6, 70, 74], "util": [2, 8, 74], "valid": [2, 4, 8, 35, 38, 41, 74], "validate_asset_with_page_opt": [8, 36], "validate_csc_credenti": [8, 36], "validate_document_merge_param": [8, 36], "validate_execution_context": [8, 36], "validate_field_loc": [8, 36], "validate_field_opt": [8, 36], "validate_insert_asset_input": [8, 36], "validate_page_opt": [8, 36], "validate_page_rang": [8, 36], "validate_page_ranges_overlap": [8, 36], "validate_password": [8, 36], "validate_password_to_remove_protect": [8, 36], "validate_pdf_electronic_seal_param": [8, 36], "validate_protect_pdf_param": [8, 36], "validate_replace_files_input": [8, 36], "validate_rotate_page_act": [8, 36], "validate_split_pdf_operation_param": [8, 36], "validation_util": [2, 8], "validationutil": [8, 36], "valu": [2, 4, 5, 6, 7, 30, 33, 34, 37, 39, 40, 42, 43, 44, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 64, 65, 70, 71, 72, 74, 75, 77, 78], "valueerror": 36, "variou": [2, 39, 74, 77], "verifi": 77, "version": 36, "via": [39, 77], "view": [60, 78], "visibl": [39, 51, 77, 78], "visit": 34, "vnd": [2, 50, 52, 74, 78], "wa": [53, 66, 78, 79], "wait": [4, 70], "war": 77, "water": 77, "watermark": [33, 77, 78, 79], "watermark_appear": [77, 78], "watermark_asset": 77, "watermarkappear": [74, 76, 77], "wb": [40, 77], "wcag": [39, 77], "web": [39, 77], "well": [33, 39, 40, 77], "when": [7, 33, 39, 40, 73, 77], "where": [41, 54, 78], "whether": [42, 46, 47, 48, 53, 78], "which": [36, 39, 42, 51, 52, 56, 59, 63, 77, 78], "while": [2, 39, 74, 77], "whitespac": 36, "width": [54, 78], "with_traceback": [73, 74], "within": [34, 45, 78], "word": [39, 41, 45, 77, 78], "wordprocessingml": [2, 50, 52, 74, 78], "would": 36, "write": [40, 77], "www": 34, "x": [2, 34, 74], "x_api_key_header_nam": [8, 34], "x_dcsdk_ops_info_header_nam": [8, 34], "x_request_id": [8, 9], "xl": [1, 2, 74], "xlsx": [1, 2, 41, 52, 53, 74, 78], "xml": [2, 74], "ye": 77, "you": 36, "your": [3, 69], "zh": [46, 47, 48, 52, 57, 78], "zh_cn": [41, 45, 46, 47, 48, 52, 57, 78], "zh_hant": [41, 52, 78], "zh_hk": [41, 45, 46, 47, 48, 57, 78], "zip": [1, 2, 39, 59, 66, 74, 77, 78, 79], "zip_of_page_imag": [41, 59, 78], "zipofpageimag": [59, 78]}, "titles": ["adobe package", "adobe.pdfservices package", "adobe.pdfservices.operation package", "adobe.pdfservices.operation.auth package", "adobe.pdfservices.operation.config package", "adobe.pdfservices.operation.config.notifier package", "adobe.pdfservices.operation.config.proxy package", "adobe.pdfservices.operation.exception package", "adobe.pdfservices.operation.internal package", "adobe.pdfservices.operation.internal.api package", "adobe.pdfservices.operation.internal.api.dto package", "adobe.pdfservices.operation.internal.api.dto.request package", "adobe.pdfservices.operation.internal.api.dto.request.autotagpdf package", "adobe.pdfservices.operation.internal.api.dto.request.combinepdf package", "adobe.pdfservices.operation.internal.api.dto.request.compresspdf package", "adobe.pdfservices.operation.internal.api.dto.request.createpdf package", "adobe.pdfservices.operation.internal.api.dto.request.document_generation package", "adobe.pdfservices.operation.internal.api.dto.request.esealpdf package", "adobe.pdfservices.operation.internal.api.dto.request.exportpdf package", "adobe.pdfservices.operation.internal.api.dto.request.extract_pdf package", "adobe.pdfservices.operation.internal.api.dto.request.htmltopdf package", "adobe.pdfservices.operation.internal.api.dto.request.linearizepdf package", "adobe.pdfservices.operation.internal.api.dto.request.ocrpdf package", "adobe.pdfservices.operation.internal.api.dto.request.pagemanipulation package", "adobe.pdfservices.operation.internal.api.dto.request.pdf_properties package", "adobe.pdfservices.operation.internal.api.dto.request.pdf_services_api package", "adobe.pdfservices.operation.internal.api.dto.request.pdftoimage package", "adobe.pdfservices.operation.internal.api.dto.request.protect_pdf package", "adobe.pdfservices.operation.internal.api.dto.request.remove_protection package", "adobe.pdfservices.operation.internal.api.dto.request.splitpdf package", "adobe.pdfservices.operation.internal.api.dto.response package", "adobe.pdfservices.operation.internal.api.dto.response.pdf_services_api package", "adobe.pdfservices.operation.internal.auth package", "adobe.pdfservices.operation.internal.constants package", "adobe.pdfservices.operation.internal.http package", "adobe.pdfservices.operation.internal.params package", "adobe.pdfservices.operation.internal.util package", "adobe.pdfservices.operation.io package", "adobe.pdfservices.operation.pdfjobs package", "adobe.pdfservices.operation.pdfjobs.jobs package", "adobe.pdfservices.operation.pdfjobs.jobs.export\\_pdf\\_form\\_data package", "adobe.pdfservices.operation.pdfjobs.params package", "adobe.pdfservices.operation.pdfjobs.params.autotag_pdf package", "adobe.pdfservices.operation.pdfjobs.params.combine_pdf package", "adobe.pdfservices.operation.pdfjobs.params.compress_pdf package", "adobe.pdfservices.operation.pdfjobs.params.create_pdf package", "adobe.pdfservices.operation.pdfjobs.params.create_pdf.excel package", "adobe.pdfservices.operation.pdfjobs.params.create_pdf.ppt package", "adobe.pdfservices.operation.pdfjobs.params.create_pdf.word package", "adobe.pdfservices.operation.pdfjobs.params.delete_pages package", "adobe.pdfservices.operation.pdfjobs.params.documentmerge package", "adobe.pdfservices.operation.pdfjobs.params.eseal package", "adobe.pdfservices.operation.pdfjobs.params.export_pdf package", "adobe.pdfservices.operation.pdfjobs.params.extract_pdf package", "adobe.pdfservices.operation.pdfjobs.params.html_to_pdf package", "adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data package", "adobe.pdfservices.operation.pdfjobs.params.insert_pages package", "adobe.pdfservices.operation.pdfjobs.params.ocr_pdf package", "adobe.pdfservices.operation.pdfjobs.params.pdf_properties package", "adobe.pdfservices.operation.pdfjobs.params.pdf_to_image package", "adobe.pdfservices.operation.pdfjobs.params.protect_pdf package", "adobe.pdfservices.operation.pdfjobs.params.remove_protection package", "adobe.pdfservices.operation.pdfjobs.params.reorder_pages package", "adobe.pdfservices.operation.pdfjobs.params.replace_pages package", "adobe.pdfservices.operation.pdfjobs.params.rotate_pages package", "adobe.pdfservices.operation.pdfjobs.params.split_pdf package", "adobe.pdfservices.operation.pdfjobs.result package", "Welcome to pdfservices-sdk\u2019s documentation!", "src", "Authentication", "Config", "Notifier Config", "Proxy Config", "Exceptions", "API Reference", "IO", "PDF Jobs", "Jobs", "Params", "Result"], "titleterms": {"": 67, "_data": 40, "_form": 40, "_job": 40, "_pdf": 40, "adob": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66], "angl": [64, 78], "api": [9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 74], "appearance_item": 51, "appearance_opt": 51, "appearanceitem": 78, "appearanceopt": 78, "asset": [37, 75], "asset_upload_uri_request": 11, "asset_upload_util": 36, "auth": [3, 32], "auth_factori": 32, "authent": [32, 69], "autotag_pdf": 42, "autotag_pdf_external_asset_request": 12, "autotag_pdf_internal_asset_request": 12, "autotag_pdf_job": 39, "autotag_pdf_param": 42, "autotag_pdf_params_payload": 12, "autotag_pdf_result": 66, "autotagpdf": 12, "autotagpdfjob": 77, "autotagpdfparam": 78, "autotagpdfresult": 79, "callback_notifier_data": 5, "callbacknotifierdata": 71, "client_config": 4, "clientconfig": 70, "cloud_asset": 37, "cloudasset": 75, "combine_pdf": 43, "combine_pdf_external_asset_request": 13, "combine_pdf_internal_asset_request": 13, "combine_pdf_job": 39, "combine_pdf_job_input": 35, "combine_pdf_param": 43, "combine_pdf_result": 66, "combinepdf": 13, "combinepdfjob": 77, "combinepdfparam": 78, "combinepdfresult": 79, "compress_pdf": 44, "compress_pdf_external_asset_request": 14, "compress_pdf_internal_asset_request": 14, "compress_pdf_job": 39, "compress_pdf_param": 44, "compress_pdf_params_payload": 14, "compress_pdf_result": 66, "compression_level": 44, "compressionlevel": 78, "compresspdf": 14, "compresspdfjob": 77, "compresspdfparam": 78, "compresspdfresult": 79, "config": [4, 5, 6, 70, 71, 72], "constant": 33, "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 74], "content_encrypt": 60, "contentencrypt": 78, "create_pdf": [45, 46, 47, 48], "create_pdf_external_asset_request": 15, "create_pdf_from_excel_param": 46, "create_pdf_from_ppt_param": 47, "create_pdf_from_word_param": 48, "create_pdf_internal_asset_request": 15, "create_pdf_job": 39, "create_pdf_params_payload": 15, "create_pdf_result": 66, "createpdf": 15, "createpdffromexcelparam": 78, "createpdffrompptparam": 78, "createpdffromwordparam": 78, "createpdfjob": 77, "createpdfparam": [45, 78], "createpdfresult": 79, "credenti": [3, 69], "csc_auth_context": 51, "csc_credenti": 51, "cscauthcontext": 78, "csccredenti": 78, "custom_error_messag": 33, "delete_pag": 49, "delete_page_act": 23, "delete_pages_job": 39, "delete_pages_param": 49, "delete_pages_result": 66, "deletepagesjob": 77, "deletepagesparam": 78, "deletepagesresult": 79, "document": 67, "document_gener": 16, "document_generation_external_asset_request": 16, "document_generation_internal_asset_request": 16, "document_generation_params_payload": 16, "document_languag": [46, 47, 48], "document_level_permiss": 51, "document_merge_job": 39, "document_merge_param": 50, "document_merge_result": 66, "documentlanguag": 78, "documentlevelpermiss": 78, "documentmerg": 50, "documentmergejob": 77, "documentmergeparam": 78, "documentmergeresult": 79, "dto": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31], "electronic_seal_param": 51, "encryption_algorithm": 60, "encryptionalgorithm": 78, "enforce_typ": 36, "eseal": 51, "eseal_job": 39, "eseal_pdf_external_asset_request": 17, "eseal_pdf_internal_asset_request": 17, "eseal_pdf_result": 66, "esealpdf": 17, "esealpdfresult": 79, "excel": 46, "except": [7, 8, 73], "execution_context": 8, "export": 40, "export_ocr_local": 52, "export_pdf": 52, "export_pdf_external_asset_request": 18, "export_pdf_internal_asset_request": 18, "export_pdf_job": 39, "export_pdf_param": 52, "export_pdf_params_payload": 18, "export_pdf_result": 66, "export_pdf_target_format": 52, "export_pdf_to_images_job": 39, "export_pdf_to_images_output_typ": 59, "export_pdf_to_images_param": 59, "export_pdf_to_images_result": 66, "export_pdf_to_images_target_format": 59, "exportocrlocal": 78, "exportpdf": 18, "exportpdfformdatajob": 77, "exportpdfformdataparam": 78, "exportpdfformdataresult": 79, "exportpdfjob": 77, "exportpdfparam": 78, "exportpdfresult": 79, "exportpdftargetformat": 78, "exportpdftoimagesjob": 77, "exportpdftoimagesoutputtyp": 78, "exportpdftoimagesparam": 78, "exportpdftoimagesresult": 79, "exportpdftoimagestargetformat": 78, "external_asset": 37, "external_storage_typ": 37, "externalasset": 75, "externalstoragetyp": 75, "extract_element_typ": 53, "extract_pdf": [19, 53], "extract_pdf_external_asset_request": 19, "extract_pdf_internal_asset_request": 19, "extract_pdf_job": 39, "extract_pdf_param": 53, "extract_pdf_params_payload": 19, "extract_pdf_result": 66, "extract_renditions_element_typ": 53, "extractelementtyp": 78, "extractpdfjob": 77, "extractpdfparam": 78, "extractpdfresult": 79, "extractrenditionselementtyp": 78, "field_loc": 51, "field_opt": 51, "fieldloc": 78, "fieldopt": 78, "file_util": 36, "fragment": [50, 78], "html_to_pdf": 54, "html_to_pdf_external_asset_request": 20, "html_to_pdf_internal_asset_request": 20, "html_to_pdf_job": 39, "html_to_pdf_param": 54, "html_to_pdf_params_payload": 20, "html_to_pdf_result": 66, "htmltopdf": 20, "htmltopdfjob": 77, "htmltopdfparam": 78, "htmltopdfresult": 79, "http": 34, "http_client": 34, "http_method": 34, "http_request": 34, "import_pdf_form_data": 55, "import_pdf_form_data_param": 55, "importpdfformdatajob": 77, "importpdfformdataparam": 78, "importpdfformdataresult": 79, "indic": 67, "insert_pag": 56, "insert_pages_job": 39, "insert_pages_param": 56, "insert_pages_result": 66, "insertpagesjob": 77, "insertpagesparam": 78, "insertpagesresult": 79, "intern": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36], "internal_client_config": 8, "io": [37, 75], "job": [39, 40, 76, 77], "job_error_respons": 31, "job_statu": 30, "json_hint_encod": 36, "linearize_pdf_external_asset_request": 21, "linearize_pdf_internal_asset_request": 21, "linearize_pdf_job": 39, "linearize_pdf_result": 66, "linearizepdf": 21, "linearizepdfjob": 77, "linearizepdfresult": 79, "modul": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66], "notifi": [5, 71], "notifier_config": 5, "notifier_data": 5, "notifier_typ": 5, "notifierconfig": 71, "notifierdata": 71, "notifiertyp": 71, "object_util": 36, "ocr_param": 57, "ocr_pdf": 57, "ocr_pdf_external_asset_request": 22, "ocr_pdf_internal_asset_request": 22, "ocr_pdf_job": 39, "ocr_pdf_params_payload": 22, "ocr_pdf_result": 66, "ocr_supported_local": 57, "ocr_supported_typ": 57, "ocrparam": 78, "ocrpdf": 22, "ocrpdfjob": 77, "ocrpdfresult": 79, "ocrsupportedlocal": 78, "ocrsupportedtyp": 78, "oper": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66], "operation_header_info_endpoint_map": 33, "output_format": 50, "outputformat": 78, "packag": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66], "page_act": 23, "page_action_command": 23, "page_layout": 54, "page_manipulation_external_asset_request": 23, "page_manipulation_internal_asset_request": 23, "page_manipulation_params_payload": 23, "page_rang": [35, 41], "pagelayout": 78, "pagemanipul": 23, "pagerang": 78, "param": [35, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 78], "password_protect_param": 60, "passwordprotectparam": 78, "path_util": 36, "pdf": 76, "pdf_properti": [24, 58], "pdf_properties_external_asset_request": 24, "pdf_properties_internal_asset_request": 24, "pdf_properties_job": 39, "pdf_properties_param": 58, "pdf_properties_params_payload": 24, "pdf_properties_result": 66, "pdf_servic": 2, "pdf_services_api": [9, 25, 31], "pdf_services_api_request": 25, "pdf_services_api_respons": 31, "pdf_services_help": 8, "pdf_services_job": 2, "pdf_services_job_param": 41, "pdf_services_job_result": 66, "pdf_services_job_statu": 2, "pdf_services_job_status_respons": 2, "pdf_services_media_typ": 2, "pdf_services_respons": 2, "pdf_services_uri": 33, "pdf_to_imag": 59, "pdf_to_image_external_asset_request": 26, "pdf_to_image_internal_asset_request": 26, "pdf_to_image_params_payload": 26, "pdfaccessibilitycheckerjob": 77, "pdfaccessibilitycheckerparam": 78, "pdfaccessibilitycheckerresult": 79, "pdfelectronicsealjob": 77, "pdfelectronicsealparam": 78, "pdfjob": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66], "pdfpropertiesjob": 77, "pdfpropertiesparam": 78, "pdfpropertiesresult": 79, "pdfservic": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 74], "pdfservicesjob": 74, "pdfservicesjobparam": 78, "pdfservicesjobresult": 79, "pdfservicesjobstatu": 74, "pdfservicesjobstatusrespons": 74, "pdfservicesmediatyp": 74, "pdfservicesrespons": 74, "pdftoimag": 26, "pdfwatermarkjob": 77, "pdfwatermarkparam": 78, "pdfwatermarkresult": 79, "permiss": [60, 78], "ppt": 47, "protect_pdf": [27, 60], "protect_pdf_external_asset_request": 27, "protect_pdf_internal_asset_request": 27, "protect_pdf_job": 39, "protect_pdf_param": 60, "protect_pdf_params_payload": 27, "protect_pdf_result": 66, "protectpdfjob": 77, "protectpdfparam": 78, "protectpdfresult": 79, "proxi": [6, 72], "proxy_authentication_credenti": 6, "proxy_schem": 6, "proxy_server_config": 6, "proxyauthenticationcredenti": 72, "proxyschem": 72, "proxyserverconfig": 72, "refer": 74, "region": [2, 74], "remove_protect": [28, 61], "remove_protection_extenal_asset_request": 28, "remove_protection_internal_asset_request": 28, "remove_protection_job": 39, "remove_protection_param": 61, "remove_protection_params_payload": 28, "remove_protection_result": 66, "removeprotectionjob": 77, "removeprotectionparam": 78, "removeprotectionresult": 79, "reorder_pag": 62, "reorder_pages_job": 39, "reorder_pages_param": 62, "reorder_pages_result": 66, "reorderpagesjob": 77, "reorderpagesparam": 78, "reorderpagesresult": 79, "replace_pag": 63, "replace_page_result": 66, "replace_pages_job": 39, "replace_pages_param": 63, "replacepagesjob": 77, "replacepagesparam": 78, "replacepagesresult": 79, "request": [11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "request_header_const": 34, "request_kei": 33, "respons": [30, 31], "response_util": 34, "result": [66, 79], "rfc3161_tsa_opt": 51, "rfc3161tsaoption": 78, "rotate_pag": 64, "rotate_page_act": 23, "rotate_pages_job": 39, "rotate_pages_param": 64, "rotate_pages_result": 66, "rotatepagesjob": 77, "rotatepagesparam": 78, "rotatepagesresult": 79, "sdk": 67, "sdkexcept": 73, "service_const": 33, "service_principal_authent": 32, "service_principal_credenti": 3, "service_token_authent": 32, "service_token_credenti": 32, "serviceapiexcept": 73, "serviceprincipalcredenti": 69, "serviceusageexcept": 73, "session_token": 32, "signature_format": 51, "signatureformat": 78, "split_pdf": 65, "split_pdf_external_asset_request": 29, "split_pdf_internal_asset_request": 29, "split_pdf_job": 39, "split_pdf_param": 65, "split_pdf_params_payload": 29, "split_pdf_result": 66, "splitpdf": 29, "splitpdfjob": 77, "splitpdfparam": 78, "splitpdfresult": 79, "src": 68, "storage_api": 9, "stream_asset": 37, "streamasset": 75, "string_util": 36, "submodul": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66], "subpackag": [0, 1, 2, 4, 8, 9, 10, 11, 30, 38, 41, 45], "tabl": 67, "table_structure_typ": 53, "tablestructuretyp": 78, "tsa_basic_auth_credenti": 51, "tsa_opt": 51, "tsabasicauthcredenti": 78, "tsaoption": 78, "username_password_credenti": 6, "usernamepasswordcredenti": 72, "util": 36, "validation_util": 36, "watermarkappear": 78, "welcom": 67, "word": 48}})
\ No newline at end of file
diff --git a/docs/apidocs/latest b/docs/apidocs/latest
index 2582ddd..ef8d756 120000
--- a/docs/apidocs/latest
+++ b/docs/apidocs/latest
@@ -1 +1 @@
-4.1.1
\ No newline at end of file
+4.2.0
\ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
index a96f0c8..3c2e415 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1 @@
-pdfservices-sdk==4.1.1
\ No newline at end of file
+pdfservices-sdk==4.2.0
\ No newline at end of file
diff --git a/src/exportpdfformdata/export_pdf_form_data.py b/src/exportpdfformdata/export_pdf_form_data.py
new file mode 100644
index 0000000..870f72b
--- /dev/null
+++ b/src/exportpdfformdata/export_pdf_form_data.py
@@ -0,0 +1,75 @@
+#!/usr/bin/env python3
+
+"""
+Copyright 2024 Adobe
+All Rights Reserved.
+
+NOTICE: Adobe permits you to use, modify, and distribute this file in
+accordance with the terms of the Adobe license agreement accompanying it.
+"""
+
+import logging
+import os
+from datetime import datetime
+
+from adobe.pdfservices.operation.auth.service_principal_credentials import ServicePrincipalCredentials
+from adobe.pdfservices.operation.exception.exceptions import ServiceApiException, ServiceUsageException, SdkException
+from adobe.pdfservices.operation.pdf_services import PDFServices
+from adobe.pdfservices.operation.pdf_services_media_type import PDFServicesMediaType
+from adobe.pdfservices.operation.pdfjobs.jobs.export_pdf_form_data_job import ExportPDFFormDataJob
+from adobe.pdfservices.operation.pdfjobs.result.export_pdf_form_data_result import ExportPDFFormDataResult
+
+# Initialize the logger
+logging.basicConfig(level=logging.INFO)
+
+
+class ExportPDFFormData:
+ def __init__(self):
+ try:
+ file = open('../resources/exportPdfFormDataInput.pdf', 'rb')
+ input_stream = file.read()
+ file.close()
+
+ # Initial setup, create credentials instance
+ credentials = ServicePrincipalCredentials(
+ client_id=os.getenv('PDF_SERVICES_CLIENT_ID'),
+ client_secret=os.getenv('PDF_SERVICES_CLIENT_SECRET')
+ )
+
+ # Creates a PDF Services instance
+ pdf_services = PDFServices(credentials=credentials)
+
+ # Creates an asset(s) from source file(s) and upload
+ input_asset = pdf_services.upload(input_stream=input_stream,
+ mime_type=PDFServicesMediaType.PDF)
+
+ # Creates a new job instance
+ export_pdf_form_data_job = ExportPDFFormDataJob(input_asset=input_asset)
+
+ # Submit the job and gets the job result
+ location = pdf_services.submit(export_pdf_form_data_job)
+ pdf_services_response = pdf_services.get_job_result(location, ExportPDFFormDataResult)
+
+ # Get content from the resulting asset(s)
+ result_asset = pdf_services_response.get_result().get_asset()
+ stream_asset = pdf_services.get_content(result_asset)
+
+ # Creates an output stream and copy stream asset's content to it
+ output_file_path = self.create_output_file_path()
+ with open(output_file_path, "wb") as file:
+ file.write(stream_asset.get_input_stream())
+
+ except (ServiceApiException, ServiceUsageException, SdkException) as e:
+ logging.exception(f'Exception encountered while executing operation: {e}')
+
+ # Generates a string containing a directory structure and file name for the output file
+ @staticmethod
+ def create_output_file_path() -> str:
+ now = datetime.now()
+ time_stamp = now.strftime("%Y-%m-%dT%H-%M-%S")
+ os.makedirs("../../output/ExportPDFFormData", exist_ok=True)
+ return f"../../output/ExportPDFFormData/export{time_stamp}.json"
+
+
+if __name__ == "__main__":
+ ExportPDFFormData()
\ No newline at end of file
diff --git a/src/importpdfformdata/import_pdf_form_data.py b/src/importpdfformdata/import_pdf_form_data.py
new file mode 100644
index 0000000..1d64153
--- /dev/null
+++ b/src/importpdfformdata/import_pdf_form_data.py
@@ -0,0 +1,94 @@
+#!/usr/bin/env python3
+
+"""
+Copyright 2024 Adobe
+All Rights Reserved.
+
+NOTICE: Adobe permits you to use, modify, and distribute this file in
+accordance with the terms of the Adobe license agreement accompanying it.
+"""
+
+import logging
+import os
+from datetime import datetime
+from pathlib import Path
+
+from adobe.pdfservices.operation.auth.service_principal_credentials import ServicePrincipalCredentials
+from adobe.pdfservices.operation.config.client_config import ClientConfig
+from adobe.pdfservices.operation.exception.exceptions import ServiceApiException, ServiceUsageException, SdkException
+from adobe.pdfservices.operation.pdf_services import PDFServices
+from adobe.pdfservices.operation.pdf_services_media_type import PDFServicesMediaType
+from adobe.pdfservices.operation.pdfjobs.jobs.import_pdf_form_data_job import ImportPDFFormDataJob
+from adobe.pdfservices.operation.pdfjobs.params.import_pdf_form_data.import_pdf_form_data_params import ImportPDFFormDataParams
+from adobe.pdfservices.operation.pdfjobs.result.import_pdf_form_data_result import ImportPDFFormDataResult
+
+# Initialize the logger
+logging.basicConfig(level=logging.INFO)
+
+
+class ImportPDFFormData:
+ def __init__(self):
+ try:
+ file = open('../resources/importPdfFormDataInput.pdf', 'rb')
+ input_stream = file.read()
+ file.close()
+
+ # Initial setup, create credentials instance
+ credentials = ServicePrincipalCredentials(
+ client_id=os.getenv('PDF_SERVICES_CLIENT_ID'),
+ client_secret=os.getenv('PDF_SERVICES_CLIENT_SECRET')
+ )
+
+ # Creates a PDF Services instance
+ pdf_services = PDFServices(credentials=credentials)
+
+ # Creates an asset(s) from source file(s) and upload
+ input_asset = pdf_services.upload(input_stream=input_stream,
+ mime_type=PDFServicesMediaType.PDF)
+
+ # Form data to be imported
+ form_data = {
+ "option_two": "Yes",
+ "option_one": "Yes",
+ "name": "garvit",
+ "option_three": "Off",
+ "age": "24",
+ "favorite_movie": "Star Wars Again",
+ }
+
+ # Create parameters for the job
+ import_pdf_form_data_params = ImportPDFFormDataParams(json_form_fields_data=form_data)
+
+ # Creates a new job instance
+ import_pdf_form_data_job = ImportPDFFormDataJob(input_asset=input_asset)
+
+ # Set the parameters for the job
+ import_pdf_form_data_job.set_params(import_pdf_form_data_params)
+
+ # Submit the job and gets the job result
+ location = pdf_services.submit(import_pdf_form_data_job)
+ pdf_services_response = pdf_services.get_job_result(location, ImportPDFFormDataResult)
+
+ # Get content from the resulting asset(s)
+ result_asset = pdf_services_response.get_result().get_asset()
+ stream_asset = pdf_services.get_content(result_asset)
+
+ # Creates an output stream and copy stream asset's content to it
+ output_file_path = self.create_output_file_path()
+ with open(output_file_path, "wb") as file:
+ file.write(stream_asset.get_input_stream())
+
+ except (ServiceApiException, ServiceUsageException, SdkException) as e:
+ logging.exception(f'Exception encountered while executing operation: {e}')
+
+ # Generates a string containing a directory structure and file name for the output file
+ @staticmethod
+ def create_output_file_path() -> str:
+ now = datetime.now()
+ time_stamp = now.strftime("%Y-%m-%dT%H-%M-%S")
+ os.makedirs("../../output/ImportPDFFormData", exist_ok=True)
+ return f"../../output/ImportPDFFormData/import{time_stamp}.pdf"
+
+
+if __name__ == "__main__":
+ ImportPDFFormData()
\ No newline at end of file
diff --git a/src/resources/exportPdfFormDataInput.pdf b/src/resources/exportPdfFormDataInput.pdf
new file mode 100644
index 0000000..47b4bce
Binary files /dev/null and b/src/resources/exportPdfFormDataInput.pdf differ
diff --git a/src/resources/importPdfFormDataInput.pdf b/src/resources/importPdfFormDataInput.pdf
new file mode 100644
index 0000000..ffd57d2
Binary files /dev/null and b/src/resources/importPdfFormDataInput.pdf differ