blob: f199bfafa3963da997a24cd7532d7ac01634466b [file] [log] [blame]
Bu Sun Kim65020912020-05-20 12:08:20 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="apigee_v1.html">Apigee API</a> . <a href="apigee_v1.organizations.html">organizations</a> . <a href="apigee_v1.organizations.sharedflows.html">sharedflows</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="apigee_v1.organizations.sharedflows.deployments.html">deployments()</a></code>
79</p>
80<p class="firstline">Returns the deployments Resource.</p>
81
82<p class="toc_element">
83 <code><a href="apigee_v1.organizations.sharedflows.revisions.html">revisions()</a></code>
84</p>
85<p class="firstline">Returns the revisions Resource.</p>
86
87<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070088 <code><a href="#close">close()</a></code></p>
89<p class="firstline">Close httplib2 connections.</p>
90<p class="toc_element">
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -080091 <code><a href="#create">create(parent, action=None, body=None, name=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070092<p class="firstline">Uploads a ZIP-formatted shared flow configuration bundle to an organization. If the shared flow already exists, this creates a new revision of it. If the shared flow does not exist, this creates it. Once imported, the shared flow revision must be deployed before it can be accessed at runtime. The size limit of a shared flow bundle is 15 MB.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070093<p class="toc_element">
94 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070095<p class="firstline">Deletes a shared flow and all it's revisions. The shared flow must be undeployed before you can delete it.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070096<p class="toc_element">
97 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
98<p class="firstline">Gets a shared flow by name, including a list of its revisions.</p>
99<p class="toc_element">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800100 <code><a href="#list">list(parent, includeMetaData=None, includeRevisions=None, x__xgafv=None)</a></code></p>
Bu Sun Kim65020912020-05-20 12:08:20 -0700101<p class="firstline">Lists all shared flows in the organization.</p>
102<h3>Method Details</h3>
103<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700104 <code class="details" id="close">close()</code>
105 <pre>Close httplib2 connections.</pre>
106</div>
107
108<div class="method">
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800109 <code class="details" id="create">create(parent, action=None, body=None, name=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700110 <pre>Uploads a ZIP-formatted shared flow configuration bundle to an organization. If the shared flow already exists, this creates a new revision of it. If the shared flow does not exist, this creates it. Once imported, the shared flow revision must be deployed before it can be accessed at runtime. The size limit of a shared flow bundle is 15 MB.
Bu Sun Kim65020912020-05-20 12:08:20 -0700111
112Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700113 parent: string, Required. The name of the parent organization under which to create the shared flow. Must be of the form: `organizations/{organization_id}` (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700114 body: object, The request body.
115 The object takes the form of:
116
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700117{ # Message that represents an arbitrary HTTP body. It should only be used for payload formats that can&#x27;t be represented as JSON, such as raw binary or an HTML page. This message can be used both in streaming and non-streaming API methods in the request as well as the response. It can be used as a top-level request field, which is convenient if one wants to extract parameters from either the URL or HTTP template into the request fields and also want access to the raw HTTP body. Example: message GetResourceRequest { // A unique request id. string request_id = 1; // The raw HTTP body is bound to this field. google.api.HttpBody http_body = 2; } service ResourceService { rpc GetResource(GetResourceRequest) returns (google.api.HttpBody); rpc UpdateResource(google.api.HttpBody) returns (google.protobuf.Empty); } Example with streaming methods: service CaldavService { rpc GetCalendar(stream google.api.HttpBody) returns (stream google.api.HttpBody); rpc UpdateCalendar(stream google.api.HttpBody) returns (stream google.api.HttpBody); } Use of this type only changes how the request and response bodies are handled, all other features will continue to work unchanged.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800118 &quot;contentType&quot;: &quot;A String&quot;, # The HTTP Content-Type header value specifying the content type of the body.
119 &quot;data&quot;: &quot;A String&quot;, # The HTTP request/response body as raw binary.
120 &quot;extensions&quot;: [ # Application specific response metadata. Must be set in the first response for streaming APIs.
121 {
122 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
123 },
124 ],
125}
Bu Sun Kim65020912020-05-20 12:08:20 -0700126
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800127 action: string, Required. Must be set to either `import` or `validate`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800128 name: string, Required. The name to give the shared flow
Bu Sun Kim65020912020-05-20 12:08:20 -0700129 x__xgafv: string, V1 error format.
130 Allowed values
131 1 - v1 error format
132 2 - v2 error format
133
134Returns:
135 An object of the form:
136
137 { # The metadata describing a shared flow revision.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800138 &quot;configurationVersion&quot;: { # Version of the API proxy configuration schema. Currently, only 4.0 is supported. # The version of the configuration schema to which this shared flow conforms. The only supported value currently is majorVersion 4 and minorVersion 0. This setting may be used in the future to enable evolution of the shared flow format.
139 &quot;majorVersion&quot;: 42, # Major version of the API proxy configuration schema.
140 &quot;minorVersion&quot;: 42, # Minor version of the API proxy configuration schema.
141 },
142 &quot;contextInfo&quot;: &quot;A String&quot;, # A textual description of the shared flow revision.
143 &quot;createdAt&quot;: &quot;A String&quot;, # Time at which this shared flow revision was created, in milliseconds since epoch.
144 &quot;description&quot;: &quot;A String&quot;, # Description of the shared flow revision.
145 &quot;displayName&quot;: &quot;A String&quot;, # The human readable name of this shared flow.
146 &quot;entityMetaDataAsProperties&quot;: { # A Key-Value map of metadata about this shared flow revision.
147 &quot;a_key&quot;: &quot;A String&quot;,
148 },
149 &quot;lastModifiedAt&quot;: &quot;A String&quot;, # Time at which this shared flow revision was most recently modified, in milliseconds since epoch.
150 &quot;name&quot;: &quot;A String&quot;, # The resource ID of the parent shared flow.
151 &quot;policies&quot;: [ # A list of policy names included in this shared flow revision.
152 &quot;A String&quot;,
153 ],
154 &quot;resourceFiles&quot;: { # List of resource files. # The resource files included in this shared flow revision.
155 &quot;resourceFile&quot;: [ # List of resource files.
156 { # Metadata about a resource file.
157 &quot;name&quot;: &quot;A String&quot;, # ID of the resource file.
158 &quot;type&quot;: &quot;A String&quot;, # Resource file type. {{ resource_file_type }}
159 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800160 ],
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800161 },
162 &quot;resources&quot;: [ # A list of the resources included in this shared flow revision formatted as &quot;{type}://{name}&quot;.
163 &quot;A String&quot;,
164 ],
165 &quot;revision&quot;: &quot;A String&quot;, # The resource ID of this revision.
166 &quot;sharedFlows&quot;: [ # A list of the shared flow names included in this shared flow revision.
167 &quot;A String&quot;,
168 ],
169 &quot;type&quot;: &quot;A String&quot;, # The string &quot;Application&quot;
170}</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700171</div>
172
173<div class="method">
174 <code class="details" id="delete">delete(name, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700175 <pre>Deletes a shared flow and all it&#x27;s revisions. The shared flow must be undeployed before you can delete it.
Bu Sun Kim65020912020-05-20 12:08:20 -0700176
177Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700178 name: string, Required. shared flow name of the form: `organizations/{organization_id}/sharedflows/{shared_flow_id}` (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700179 x__xgafv: string, V1 error format.
180 Allowed values
181 1 - v1 error format
182 2 - v2 error format
183
184Returns:
185 An object of the form:
186
187 { # The metadata describing a shared flow
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800188 &quot;latestRevisionId&quot;: &quot;A String&quot;, # The id of the most recently created revision for this shared flow.
189 &quot;metaData&quot;: { # Metadata common to many entities in this API. # Metadata describing the shared flow.
190 &quot;createdAt&quot;: &quot;A String&quot;, # Time at which the API proxy was created, in milliseconds since epoch.
191 &quot;lastModifiedAt&quot;: &quot;A String&quot;, # Time at which the API proxy was most recently modified, in milliseconds since epoch.
192 &quot;subType&quot;: &quot;A String&quot;, # The type of entity described
193 },
194 &quot;name&quot;: &quot;A String&quot;, # The ID of the shared flow.
195 &quot;revision&quot;: [ # A list of revisions of this shared flow.
196 &quot;A String&quot;,
197 ],
198}</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700199</div>
200
201<div class="method">
202 <code class="details" id="get">get(name, x__xgafv=None)</code>
203 <pre>Gets a shared flow by name, including a list of its revisions.
204
205Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700206 name: string, Required. The name of the shared flow to get. Must be of the form: `organizations/{organization_id}/sharedflows/{shared_flow_id}` (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700207 x__xgafv: string, V1 error format.
208 Allowed values
209 1 - v1 error format
210 2 - v2 error format
211
212Returns:
213 An object of the form:
214
215 { # The metadata describing a shared flow
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800216 &quot;latestRevisionId&quot;: &quot;A String&quot;, # The id of the most recently created revision for this shared flow.
217 &quot;metaData&quot;: { # Metadata common to many entities in this API. # Metadata describing the shared flow.
218 &quot;createdAt&quot;: &quot;A String&quot;, # Time at which the API proxy was created, in milliseconds since epoch.
219 &quot;lastModifiedAt&quot;: &quot;A String&quot;, # Time at which the API proxy was most recently modified, in milliseconds since epoch.
220 &quot;subType&quot;: &quot;A String&quot;, # The type of entity described
221 },
222 &quot;name&quot;: &quot;A String&quot;, # The ID of the shared flow.
223 &quot;revision&quot;: [ # A list of revisions of this shared flow.
224 &quot;A String&quot;,
225 ],
226}</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700227</div>
228
229<div class="method">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800230 <code class="details" id="list">list(parent, includeMetaData=None, includeRevisions=None, x__xgafv=None)</code>
Bu Sun Kim65020912020-05-20 12:08:20 -0700231 <pre>Lists all shared flows in the organization.
232
233Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700234 parent: string, Required. The name of the parent organization under which to get shared flows. Must be of the form: `organizations/{organization_id}` (required)
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700235 includeMetaData: boolean, Indicates whether to include shared flow metadata in the response.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800236 includeRevisions: boolean, Indicates whether to include a list of revisions in the response.
Bu Sun Kim65020912020-05-20 12:08:20 -0700237 x__xgafv: string, V1 error format.
238 Allowed values
239 1 - v1 error format
240 2 - v2 error format
241
242Returns:
243 An object of the form:
244
245 {
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800246 &quot;sharedFlows&quot;: [
247 { # The metadata describing a shared flow
248 &quot;latestRevisionId&quot;: &quot;A String&quot;, # The id of the most recently created revision for this shared flow.
249 &quot;metaData&quot;: { # Metadata common to many entities in this API. # Metadata describing the shared flow.
250 &quot;createdAt&quot;: &quot;A String&quot;, # Time at which the API proxy was created, in milliseconds since epoch.
251 &quot;lastModifiedAt&quot;: &quot;A String&quot;, # Time at which the API proxy was most recently modified, in milliseconds since epoch.
252 &quot;subType&quot;: &quot;A String&quot;, # The type of entity described
Bu Sun Kim65020912020-05-20 12:08:20 -0700253 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800254 &quot;name&quot;: &quot;A String&quot;, # The ID of the shared flow.
255 &quot;revision&quot;: [ # A list of revisions of this shared flow.
256 &quot;A String&quot;,
257 ],
258 },
259 ],
260}</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700261</div>
262
263</body></html>