Skip to content

Commit

Permalink
Python SDK minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
paras-n committed Mar 6, 2024
1 parent 4515648 commit 40480cf
Show file tree
Hide file tree
Showing 48 changed files with 683 additions and 213 deletions.
Binary file modified docs/build/doctrees/adobe.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/adobe.pdfservices.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/adobe.pdfservices.operation.auth.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/adobe.pdfservices.operation.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/adobe.pdfservices.operation.exception.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/adobe.pdfservices.operation.io.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/adobe.pdfservices.operation.pdfops.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified docs/build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/build/doctrees/index.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/modules.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/reference/index.doctree
Binary file not shown.
123 changes: 123 additions & 0 deletions docs/build/html/_static/_sphinx_javascript_frameworks_compat.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
/* Compatability shim for jQuery and underscores.js.
*
* Copyright Sphinx contributors
* Released under the two clause BSD licence
*/

/**
* small helper function to urldecode strings
*
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL
*/
jQuery.urldecode = function(x) {
if (!x) {
return x
}
return decodeURIComponent(x.replace(/\+/g, ' '));
};

/**
* small helper function to urlencode strings
*/
jQuery.urlencode = encodeURIComponent;

/**
* This function returns the parsed url parameters of the
* current request. Multiple values per key are supported,
* it will always return arrays of strings for the value parts.
*/
jQuery.getQueryParameters = function(s) {
if (typeof s === 'undefined')
s = document.location.search;
var parts = s.substr(s.indexOf('?') + 1).split('&');
var result = {};
for (var i = 0; i < parts.length; i++) {
var tmp = parts[i].split('=', 2);
var key = jQuery.urldecode(tmp[0]);
var value = jQuery.urldecode(tmp[1]);
if (key in result)
result[key].push(value);
else
result[key] = [value];
}
return result;
};

/**
* highlight a given string on a jquery object by wrapping it in
* span elements with the given class name.
*/
jQuery.fn.highlightText = function(text, className) {
function highlight(node, addItems) {
if (node.nodeType === 3) {
var val = node.nodeValue;
var pos = val.toLowerCase().indexOf(text);
if (pos >= 0 &&
!jQuery(node.parentNode).hasClass(className) &&
!jQuery(node.parentNode).hasClass("nohighlight")) {
var span;
var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg");
if (isInSVG) {
span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
} else {
span = document.createElement("span");
span.className = className;
}
span.appendChild(document.createTextNode(val.substr(pos, text.length)));
node.parentNode.insertBefore(span, node.parentNode.insertBefore(
document.createTextNode(val.substr(pos + text.length)),
node.nextSibling));
node.nodeValue = val.substr(0, pos);
if (isInSVG) {
var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
var bbox = node.parentElement.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": node.parentNode,
"target": rect});
}
}
}
else if (!jQuery(node).is("button, select, textarea")) {
jQuery.each(node.childNodes, function() {
highlight(this, addItems);
});
}
}
var addItems = [];
var result = this.each(function() {
highlight(this, addItems);
});
for (var i = 0; i < addItems.length; ++i) {
jQuery(addItems[i].parent).before(addItems[i].target);
}
return result;
};

/*
* backward compatibility for jQuery.browser
* This will be supported until firefox bug is fixed.
*/
if (!jQuery.browser) {
jQuery.uaMatch = function(ua) {
ua = ua.toLowerCase();

var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
/(webkit)[ \/]([\w.]+)/.exec(ua) ||
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
/(msie) ([\w.]+)/.exec(ua) ||
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) ||
[];

return {
browser: match[ 1 ] || "",
version: match[ 2 ] || "0"
};
};
jQuery.browser = {};
jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true;
}
2 changes: 1 addition & 1 deletion docs/build/html/_static/css/theme.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/build/html/_static/jquery.js

Large diffs are not rendered by default.

63 changes: 37 additions & 26 deletions docs/build/html/adobe.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
<!DOCTYPE html>
<html class="writer-html5" lang="en" >
<html class="writer-html5" lang="en">
<head>
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>adobe package &mdash; pdfservices-sdk documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/css/theme.css" />
<link rel="stylesheet" type="text/css" href="_static/custom.css" />


<!--[if lt IE 9]>
<script src="_static/js/html5shiv.min.js"></script>
<![endif]-->

<script src="_static/jquery.js"></script>
<script src="_static/_sphinx_javascript_frameworks_compat.js"></script>
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/sphinx_highlight.js"></script>
Expand Down Expand Up @@ -47,6 +51,8 @@
<li class="toctree-l5"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.client_config.ClientConfig.Builder.build"><code class="docutils literal notranslate"><span class="pre">ClientConfig.Builder.build()</span></code></a></li>
<li class="toctree-l5"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.client_config.ClientConfig.Builder.from_file"><code class="docutils literal notranslate"><span class="pre">ClientConfig.Builder.from_file()</span></code></a></li>
<li class="toctree-l5"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.client_config.ClientConfig.Builder.with_connect_timeout"><code class="docutils literal notranslate"><span class="pre">ClientConfig.Builder.with_connect_timeout()</span></code></a></li>
<li class="toctree-l5"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.client_config.ClientConfig.Builder.with_pdf_services_uri"><code class="docutils literal notranslate"><span class="pre">ClientConfig.Builder.with_pdf_services_uri()</span></code></a></li>
<li class="toctree-l5"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.client_config.ClientConfig.Builder.with_processing_timeout"><code class="docutils literal notranslate"><span class="pre">ClientConfig.Builder.with_processing_timeout()</span></code></a></li>
<li class="toctree-l5"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.client_config.ClientConfig.Builder.with_read_timeout"><code class="docutils literal notranslate"><span class="pre">ClientConfig.Builder.with_read_timeout()</span></code></a></li>
<li class="toctree-l5"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.client_config.ClientConfig.Builder.with_region"><code class="docutils literal notranslate"><span class="pre">ClientConfig.Builder.with_region()</span></code></a></li>
</ul>
Expand All @@ -56,20 +62,11 @@
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="reference/index.html#clientconfigbuilder">ClientConfigBuilder</a><ul>
<li class="toctree-l3"><a class="reference internal" href="reference/index.html#id0"><code class="docutils literal notranslate"><span class="pre">Builder</span></code></a><ul>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id1"><code class="docutils literal notranslate"><span class="pre">Builder.build()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id2"><code class="docutils literal notranslate"><span class="pre">Builder.from_file()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id3"><code class="docutils literal notranslate"><span class="pre">Builder.with_connect_timeout()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id4"><code class="docutils literal notranslate"><span class="pre">Builder.with_read_timeout()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id5"><code class="docutils literal notranslate"><span class="pre">Builder.with_region()</span></code></a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="reference/index.html#clientconfigbuilder">ClientConfigBuilder</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/index.html#credentials">Credentials</a><ul>
<li class="toctree-l3"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.auth.credentials.Credentials"><code class="docutils literal notranslate"><span class="pre">Credentials</span></code></a><ul>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.auth.credentials.Credentials.service_account_credentials_builder"><code class="docutils literal notranslate"><span class="pre">Credentials.service_account_credentials_builder()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.auth.credentials.Credentials.service_principal_credentials_builder"><code class="docutils literal notranslate"><span class="pre">Credentials.service_principal_credentials_builder()</span></code></a></li>
</ul>
</li>
</ul>
Expand Down Expand Up @@ -116,7 +113,18 @@
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="reference/index.html#autotagpdfoperation">AutotagPDFOperation</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/index.html#autotagpdfoperation">AutotagPDFOperation</a><ul>
<li class="toctree-l3"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.pdfops.autotag_pdf_operation.AutotagPDFOperation"><code class="docutils literal notranslate"><span class="pre">AutotagPDFOperation</span></code></a><ul>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.pdfops.autotag_pdf_operation.AutotagPDFOperation.SUPPORTED_SOURCE_MEDIA_TYPES"><code class="docutils literal notranslate"><span class="pre">AutotagPDFOperation.SUPPORTED_SOURCE_MEDIA_TYPES</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.pdfops.autotag_pdf_operation.AutotagPDFOperation.create_new"><code class="docutils literal notranslate"><span class="pre">AutotagPDFOperation.create_new()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.pdfops.autotag_pdf_operation.AutotagPDFOperation.execute"><code class="docutils literal notranslate"><span class="pre">AutotagPDFOperation.execute()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.pdfops.autotag_pdf_operation.AutotagPDFOperation.get_options"><code class="docutils literal notranslate"><span class="pre">AutotagPDFOperation.get_options()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.pdfops.autotag_pdf_operation.AutotagPDFOperation.set_input"><code class="docutils literal notranslate"><span class="pre">AutotagPDFOperation.set_input()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.pdfops.autotag_pdf_operation.AutotagPDFOperation.set_options"><code class="docutils literal notranslate"><span class="pre">AutotagPDFOperation.set_options()</span></code></a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="reference/index.html#autotagpdfoptions">AutotagPDFOptions</a><ul>
<li class="toctree-l3"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.pdfops.options.autotagpdf.autotag_pdf_options.AutotagPDFOptions"><code class="docutils literal notranslate"><span class="pre">AutotagPDFOptions</span></code></a><ul>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.pdfops.options.autotagpdf.autotag_pdf_options.AutotagPDFOptions.Builder"><code class="docutils literal notranslate"><span class="pre">AutotagPDFOptions.Builder</span></code></a><ul>
Expand Down Expand Up @@ -187,19 +195,22 @@
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="reference/index.html#serviceaccountcredentialsbuilder">ServiceAccountCredentialsBuilder</a><ul>
<li class="toctree-l3"><a class="reference internal" href="reference/index.html#id6"><code class="docutils literal notranslate"><span class="pre">Builder</span></code></a><ul>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id7"><code class="docutils literal notranslate"><span class="pre">Builder.build()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id8"><code class="docutils literal notranslate"><span class="pre">Builder.from_file()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id9"><code class="docutils literal notranslate"><span class="pre">Builder.with_account_id()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id10"><code class="docutils literal notranslate"><span class="pre">Builder.with_client_id()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id11"><code class="docutils literal notranslate"><span class="pre">Builder.with_client_secret()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id12"><code class="docutils literal notranslate"><span class="pre">Builder.with_organization_id()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#id13"><code class="docutils literal notranslate"><span class="pre">Builder.with_private_key()</span></code></a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/index.html#serviceaccountcredentialsbuilder">ServiceAccountCredentialsBuilder</a></li>
<li class="toctree-l2"><a class="reference internal" href="reference/index.html#serviceprincipalcredentials">ServicePrincipalCredentials</a><ul>
<li class="toctree-l3"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.auth.service_principal_credentials.ServicePrincipalCredentials"><code class="docutils literal notranslate"><span class="pre">ServicePrincipalCredentials</span></code></a><ul>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.auth.service_principal_credentials.ServicePrincipalCredentials.Builder"><code class="docutils literal notranslate"><span class="pre">ServicePrincipalCredentials.Builder</span></code></a><ul>
<li class="toctree-l5"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.auth.service_principal_credentials.ServicePrincipalCredentials.Builder.build"><code class="docutils literal notranslate"><span class="pre">ServicePrincipalCredentials.Builder.build()</span></code></a></li>
<li class="toctree-l5"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.auth.service_principal_credentials.ServicePrincipalCredentials.Builder.with_client_id"><code class="docutils literal notranslate"><span class="pre">ServicePrincipalCredentials.Builder.with_client_id()</span></code></a></li>
<li class="toctree-l5"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.auth.service_principal_credentials.ServicePrincipalCredentials.Builder.with_client_secret"><code class="docutils literal notranslate"><span class="pre">ServicePrincipalCredentials.Builder.with_client_secret()</span></code></a></li>
</ul>
</li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.auth.service_principal_credentials.ServicePrincipalCredentials.client_id"><code class="docutils literal notranslate"><span class="pre">ServicePrincipalCredentials.client_id</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="reference/index.html#adobe.pdfservices.operation.auth.service_principal_credentials.ServicePrincipalCredentials.client_secret"><code class="docutils literal notranslate"><span class="pre">ServicePrincipalCredentials.client_secret</span></code></a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="reference/index.html#serviceprincipalcredentialsbuilder">ServicePrincipalCredentialsBuilder</a></li>
</ul>
</li>
</ul>
Expand Down
Loading

0 comments on commit 40480cf

Please sign in to comment.