blob: 91fa14f86b707265f1b5dd5c6dbfb066dc75f091 [file] [log] [blame]
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -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="dataflow_v1b3.html">Dataflow API</a> . <a href="dataflow_v1b3.projects.html">projects</a> . <a href="dataflow_v1b3.projects.templateVersions.html">templateVersions</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -080081 <code><a href="#list">list(parent, pageToken=None, pageSize=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070082<p class="firstline">List TemplateVersions using project_id and an optional display_name field. List all the TemplateVersions in the Template if display set. List all the TemplateVersions in the Project if display_name not set.</p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070083<p class="toc_element">
84 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
85<p class="firstline">Retrieves the next page of results.</p>
86<h3>Method Details</h3>
87<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070088 <code class="details" id="close">close()</code>
89 <pre>Close httplib2 connections.</pre>
90</div>
91
92<div class="method">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -080093 <code class="details" id="list">list(parent, pageToken=None, pageSize=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070094 <pre>List TemplateVersions using project_id and an optional display_name field. List all the TemplateVersions in the Template if display set. List all the TemplateVersions in the Project if display_name not set.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070095
96Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070097 parent: string, parent includes project_id, and display_name is optional. List by project_id(pid1) and display_name(tid1). Format: projects/{pid1}/catalogTemplates/{tid1} List by project_id(pid1). Format: projects/{pid1} (required)
Yoshi Automation Botc2228be2020-11-24 15:48:03 -080098 pageToken: string, The page token, received from a previous ListTemplateVersions call. Provide this to retrieve the subsequent page.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -080099 pageSize: integer, The maximum number of TemplateVersions to return per page.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700100 x__xgafv: string, V1 error format.
101 Allowed values
102 1 - v1 error format
103 2 - v2 error format
104
105Returns:
106 An object of the form:
107
108 { # Respond a list of TemplateVersions.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800109 &quot;nextPageToken&quot;: &quot;A String&quot;, # A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700110 &quot;templateVersions&quot;: [ # A list of TemplateVersions.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700111 { # ///////////////////////////////////////////////////////////////////////////// //// Template Catalog is used to organize user TemplateVersions. //// TemplateVersions that have the same project_id and display_name are //// belong to the same Template. //// Templates with the same project_id belong to the same Project. //// TemplateVersion may have labels and multiple labels are allowed. //// Duplicated labels in the same `TemplateVersion` are not allowed. //// TemplateVersion may have tags and multiple tags are allowed. Duplicated //// tags in the same `Template` are not allowed!
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800112 &quot;displayName&quot;: &quot;A String&quot;, # A customized name for Template. Multiple TemplateVersions per Template.
113 &quot;createTime&quot;: &quot;A String&quot;, # Creation time of this TemplateVersion.
114 &quot;versionId&quot;: &quot;A String&quot;, # An auto generated version_id for TemplateVersion.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700115 &quot;tags&quot;: [ # Alias for version_id, helps locate a TemplateVersion.
116 &quot;A String&quot;,
117 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800118 &quot;labels&quot;: { # Labels for the Template Version. Labels can be duplicate within Template.
119 &quot;a_key&quot;: &quot;A String&quot;,
120 },
121 &quot;type&quot;: &quot;A String&quot;, # Either LEGACY or FLEX. This should match with the type of artifact.
122 &quot;description&quot;: &quot;A String&quot;, # Template description from the user.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700123 &quot;artifact&quot;: { # Job information for templates. # Job graph and metadata if it is a legacy Template. Container image path and metadata if it is flex Template.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800124 &quot;jobGraphGcsPath&quot;: &quot;A String&quot;, # job_graph_gcs_path set for legacy Template.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700125 &quot;containerSpec&quot;: { # Container Spec. # Container image path set for flex Template.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700126 &quot;defaultEnvironment&quot;: { # The environment values to be set at runtime for flex template. # Default runtime environment for the job.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700127 &quot;maxWorkers&quot;: 42, # The maximum number of Google Compute Engine instances to be made available to your pipeline during execution, from 1 to 1000.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800128 &quot;subnetwork&quot;: &quot;A String&quot;, # Subnetwork to which VMs will be assigned, if desired. You can specify a subnetwork using either a complete URL or an abbreviated path. Expected to be of the form &quot;https://www.googleapis.com/compute/v1/projects/HOST_PROJECT_ID/regions/REGION/subnetworks/SUBNETWORK&quot; or &quot;regions/REGION/subnetworks/SUBNETWORK&quot;. If the subnetwork is located in a Shared VPC network, you must use the complete URL.
129 &quot;ipConfiguration&quot;: &quot;A String&quot;, # Configuration for VM IPs.
130 &quot;tempLocation&quot;: &quot;A String&quot;, # The Cloud Storage path to use for temporary files. Must be a valid Cloud Storage URL, beginning with `gs://`.
131 &quot;workerZone&quot;: &quot;A String&quot;, # The Compute Engine zone (https://cloud.google.com/compute/docs/regions-zones/regions-zones) in which worker processing should occur, e.g. &quot;us-west1-a&quot;. Mutually exclusive with worker_region. If neither worker_region nor worker_zone is specified, a zone in the control plane&#x27;s region is chosen based on available capacity. If both `worker_zone` and `zone` are set, `worker_zone` takes precedence.
132 &quot;enableStreamingEngine&quot;: True or False, # Whether to enable Streaming Engine for the job.
133 &quot;network&quot;: &quot;A String&quot;, # Network to which VMs will be assigned. If empty or unspecified, the service will use the network &quot;default&quot;.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700134 &quot;additionalExperiments&quot;: [ # Additional experiment flags for the job.
135 &quot;A String&quot;,
136 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800137 &quot;serviceAccountEmail&quot;: &quot;A String&quot;, # The email address of the service account to run the job as.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700138 &quot;additionalUserLabels&quot;: { # Additional user labels to be specified for the job. Keys and values must follow the restrictions specified in the [labeling restrictions](https://cloud.google.com/compute/docs/labeling-resources#restrictions) page. An object containing a list of &quot;key&quot;: value pairs. Example: { &quot;name&quot;: &quot;wrench&quot;, &quot;mass&quot;: &quot;1kg&quot;, &quot;count&quot;: &quot;3&quot; }.
139 &quot;a_key&quot;: &quot;A String&quot;,
140 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800141 &quot;zone&quot;: &quot;A String&quot;, # The Compute Engine [availability zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones) for launching worker instances to run your pipeline. In the future, worker_zone will take precedence.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800142 &quot;workerRegion&quot;: &quot;A String&quot;, # The Compute Engine region (https://cloud.google.com/compute/docs/regions-zones/regions-zones) in which worker processing should occur, e.g. &quot;us-west1&quot;. Mutually exclusive with worker_zone. If neither worker_region nor worker_zone is specified, default to the control plane&#x27;s region.
143 &quot;numWorkers&quot;: 42, # The initial number of Google Compute Engine instances for the job.
144 &quot;kmsKeyName&quot;: &quot;A String&quot;, # Name for the Cloud KMS key for the job. Key format is: projects//locations//keyRings//cryptoKeys/
145 &quot;machineType&quot;: &quot;A String&quot;, # The machine type to use for the job. Defaults to the value from the template if not specified.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700146 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800147 &quot;sdkInfo&quot;: { # SDK Information. # Required. SDK info of the Flex Template.
148 &quot;language&quot;: &quot;A String&quot;, # Required. The SDK Language.
149 &quot;version&quot;: &quot;A String&quot;, # Optional. The SDK version.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700150 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800151 &quot;metadata&quot;: { # Metadata describing a template. # Metadata describing a template including description and validation rules.
152 &quot;parameters&quot;: [ # The parameters for the template.
153 { # Metadata for a specific parameter.
154 &quot;regexes&quot;: [ # Optional. Regexes that the parameter must match.
155 &quot;A String&quot;,
156 ],
157 &quot;label&quot;: &quot;A String&quot;, # Required. The label to display for the parameter.
158 &quot;paramType&quot;: &quot;A String&quot;, # Optional. The type of the parameter. Used for selecting input picker.
159 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the parameter.
160 &quot;isOptional&quot;: True or False, # Optional. Whether the parameter is optional. Defaults to false.
161 &quot;helpText&quot;: &quot;A String&quot;, # Required. The help text to display for the parameter.
162 },
163 ],
164 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the template.
165 &quot;description&quot;: &quot;A String&quot;, # Optional. A description of the template.
166 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700167 &quot;image&quot;: &quot;A String&quot;, # Name of the docker container image. E.g., gcr.io/project/some-image
168 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800169 &quot;metadata&quot;: { # Metadata describing a template. # Metadata set for legacy Template.
170 &quot;parameters&quot;: [ # The parameters for the template.
171 { # Metadata for a specific parameter.
172 &quot;regexes&quot;: [ # Optional. Regexes that the parameter must match.
173 &quot;A String&quot;,
174 ],
175 &quot;label&quot;: &quot;A String&quot;, # Required. The label to display for the parameter.
176 &quot;paramType&quot;: &quot;A String&quot;, # Optional. The type of the parameter. Used for selecting input picker.
177 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the parameter.
178 &quot;isOptional&quot;: True or False, # Optional. Whether the parameter is optional. Defaults to false.
179 &quot;helpText&quot;: &quot;A String&quot;, # Required. The help text to display for the parameter.
180 },
181 ],
182 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the template.
183 &quot;description&quot;: &quot;A String&quot;, # Optional. A description of the template.
184 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700185 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800186 &quot;projectId&quot;: &quot;A String&quot;, # A unique project_id. Multiple Templates per Project.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700187 },
188 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700189 }</pre>
190</div>
191
192<div class="method">
193 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
194 <pre>Retrieves the next page of results.
195
196Args:
197 previous_request: The request for the previous page. (required)
198 previous_response: The response from the request for the previous page. (required)
199
200Returns:
201 A request object that you can call &#x27;execute()&#x27; on to request the next
202 page. Returns None if there are no more items in the collection.
203 </pre>
204</div>
205
206</body></html>