1<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="metastore_v1alpha.html">Dataproc Metastore API</a> . <a href="metastore_v1alpha.projects.html">projects</a> . <a href="metastore_v1alpha.projects.locations.html">locations</a> . <a href="metastore_v1alpha.projects.locations.services.html">services</a> . <a href="metastore_v1alpha.projects.locations.services.metadataImports.html">metadataImports</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
81  <code><a href="#create">create(parent, body=None, metadataImportId=None, requestId=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Creates a new MetadataImport in a given project and location.</p>
83<p class="toc_element">
84  <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
85<p class="firstline">Gets details of a single import.</p>
86<p class="toc_element">
87  <code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Lists imports in a service.</p>
89<p class="toc_element">
90  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<p class="toc_element">
93  <code><a href="#patch">patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)</a></code></p>
94<p class="firstline">Updates a single import. Only the description field of MetadataImport is supported to be updated.</p>
95<h3>Method Details</h3>
96<div class="method">
97    <code class="details" id="close">close()</code>
98  <pre>Close httplib2 connections.</pre>
99</div>
100
101<div class="method">
102    <code class="details" id="create">create(parent, body=None, metadataImportId=None, requestId=None, x__xgafv=None)</code>
103  <pre>Creates a new MetadataImport in a given project and location.
104
105Args:
106  parent: string, Required. The relative resource name of the service in which to create a metastore import, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}. (required)
107  body: object, The request body.
108    The object takes the form of:
109
110{ # A metastore resource that imports metadata.
111  &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import was started.
112  &quot;databaseDump&quot;: { # A specification of the location of and metadata about a database dump from a relational database management system. # Immutable. A database dump from a pre-existing metastore&#x27;s database.
113    &quot;databaseType&quot;: &quot;A String&quot;, # The type of the database.
114    &quot;gcsUri&quot;: &quot;A String&quot;, # A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://.
115    &quot;sourceDatabase&quot;: &quot;A String&quot;, # The name of the source database.
116    &quot;type&quot;: &quot;A String&quot;, # Optional. The type of the database dump. If unspecified, defaults to MYSQL.
117  },
118  &quot;description&quot;: &quot;A String&quot;, # The description of the metadata import.
119  &quot;endTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import finished.
120  &quot;name&quot;: &quot;A String&quot;, # Immutable. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}.
121  &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the metadata import.
122  &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import was last updated.
123}
124
125  metadataImportId: string, Required. The ID of the metadata import, which is used as the final component of the metadata import&#x27;s name.This value must be between 1 and 64 characters long, begin with a letter, end with a letter or number, and consist of alpha-numeric ASCII characters or hyphens.
126  requestId: string, Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
127  x__xgafv: string, V1 error format.
128    Allowed values
129      1 - v1 error format
130      2 - v2 error format
131
132Returns:
133  An object of the form:
134
135    { # This resource represents a long-running operation that is the result of a network API call.
136  &quot;done&quot;: True or False, # If the value is false, it means the operation is still in progress. If true, the operation is completed, and either error or response is available.
137  &quot;error&quot;: { # The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC (https://github.com/grpc). Each Status message contains three pieces of data: error code, error message, and error details.You can find out more about this error model and how to work with it in the API Design Guide (https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
138    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
139    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
140      {
141        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
142      },
143    ],
144    &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
145  },
146  &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
147    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
148  },
149  &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the name should be a resource name ending with operations/{unique_id}.
150  &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as Delete, the response is google.protobuf.Empty. If the original method is standard Get/Create/Update, the response should be the resource. For other methods, the response should have the type XxxResponse, where Xxx is the original method name. For example, if the original method name is TakeSnapshot(), the inferred response type is TakeSnapshotResponse.
151    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
152  },
153}</pre>
154</div>
155
156<div class="method">
157    <code class="details" id="get">get(name, x__xgafv=None)</code>
158  <pre>Gets details of a single import.
159
160Args:
161  name: string, Required. The relative resource name of the metadata import to retrieve, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{import_id}. (required)
162  x__xgafv: string, V1 error format.
163    Allowed values
164      1 - v1 error format
165      2 - v2 error format
166
167Returns:
168  An object of the form:
169
170    { # A metastore resource that imports metadata.
171  &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import was started.
172  &quot;databaseDump&quot;: { # A specification of the location of and metadata about a database dump from a relational database management system. # Immutable. A database dump from a pre-existing metastore&#x27;s database.
173    &quot;databaseType&quot;: &quot;A String&quot;, # The type of the database.
174    &quot;gcsUri&quot;: &quot;A String&quot;, # A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://.
175    &quot;sourceDatabase&quot;: &quot;A String&quot;, # The name of the source database.
176    &quot;type&quot;: &quot;A String&quot;, # Optional. The type of the database dump. If unspecified, defaults to MYSQL.
177  },
178  &quot;description&quot;: &quot;A String&quot;, # The description of the metadata import.
179  &quot;endTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import finished.
180  &quot;name&quot;: &quot;A String&quot;, # Immutable. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}.
181  &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the metadata import.
182  &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import was last updated.
183}</pre>
184</div>
185
186<div class="method">
187    <code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
188  <pre>Lists imports in a service.
189
190Args:
191  parent: string, Required. The relative resource name of the service whose metadata imports to list, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports. (required)
192  filter: string, Optional. The filter to apply to list results.
193  orderBy: string, Optional. Specify the ordering of results as described in Sorting Order (https://cloud.google.com/apis/design/design_patterns#sorting_order). If not specified, the results will be sorted in the default order.
194  pageSize: integer, Optional. The maximum number of imports to return. The response may contain less than the maximum number. If unspecified, no more than 500 imports are returned. The maximum value is 1000; values above 1000 are changed to 1000.
195  pageToken: string, Optional. A page token, received from a previous DataprocMetastore.ListServices call. Provide this token to retrieve the subsequent page.To retrieve the first page, supply an empty page token.When paginating, other parameters provided to DataprocMetastore.ListServices must match the call that provided the page token.
196  x__xgafv: string, V1 error format.
197    Allowed values
198      1 - v1 error format
199      2 - v2 error format
200
201Returns:
202  An object of the form:
203
204    { # Response message for DataprocMetastore.ListMetadataImports.
205  &quot;metadataImports&quot;: [ # The imports in the specified service.
206    { # A metastore resource that imports metadata.
207      &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import was started.
208      &quot;databaseDump&quot;: { # A specification of the location of and metadata about a database dump from a relational database management system. # Immutable. A database dump from a pre-existing metastore&#x27;s database.
209        &quot;databaseType&quot;: &quot;A String&quot;, # The type of the database.
210        &quot;gcsUri&quot;: &quot;A String&quot;, # A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://.
211        &quot;sourceDatabase&quot;: &quot;A String&quot;, # The name of the source database.
212        &quot;type&quot;: &quot;A String&quot;, # Optional. The type of the database dump. If unspecified, defaults to MYSQL.
213      },
214      &quot;description&quot;: &quot;A String&quot;, # The description of the metadata import.
215      &quot;endTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import finished.
216      &quot;name&quot;: &quot;A String&quot;, # Immutable. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}.
217      &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the metadata import.
218      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import was last updated.
219    },
220  ],
221  &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.
222  &quot;unreachable&quot;: [ # Locations that could not be reached.
223    &quot;A String&quot;,
224  ],
225}</pre>
226</div>
227
228<div class="method">
229    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
230  <pre>Retrieves the next page of results.
231
232Args:
233  previous_request: The request for the previous page. (required)
234  previous_response: The response from the request for the previous page. (required)
235
236Returns:
237  A request object that you can call &#x27;execute()&#x27; on to request the next
238  page. Returns None if there are no more items in the collection.
239    </pre>
240</div>
241
242<div class="method">
243    <code class="details" id="patch">patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)</code>
244  <pre>Updates a single import. Only the description field of MetadataImport is supported to be updated.
245
246Args:
247  name: string, Immutable. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}. (required)
248  body: object, The request body.
249    The object takes the form of:
250
251{ # A metastore resource that imports metadata.
252  &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import was started.
253  &quot;databaseDump&quot;: { # A specification of the location of and metadata about a database dump from a relational database management system. # Immutable. A database dump from a pre-existing metastore&#x27;s database.
254    &quot;databaseType&quot;: &quot;A String&quot;, # The type of the database.
255    &quot;gcsUri&quot;: &quot;A String&quot;, # A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://.
256    &quot;sourceDatabase&quot;: &quot;A String&quot;, # The name of the source database.
257    &quot;type&quot;: &quot;A String&quot;, # Optional. The type of the database dump. If unspecified, defaults to MYSQL.
258  },
259  &quot;description&quot;: &quot;A String&quot;, # The description of the metadata import.
260  &quot;endTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import finished.
261  &quot;name&quot;: &quot;A String&quot;, # Immutable. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}.
262  &quot;state&quot;: &quot;A String&quot;, # Output only. The current state of the metadata import.
263  &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time when the metadata import was last updated.
264}
265
266  requestId: string, Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
267  updateMask: string, Required. A field mask used to specify the fields to be overwritten in the metadata import resource by the update. Fields specified in the update_mask are relative to the resource (not to the full request). A field is overwritten if it is in the mask.
268  x__xgafv: string, V1 error format.
269    Allowed values
270      1 - v1 error format
271      2 - v2 error format
272
273Returns:
274  An object of the form:
275
276    { # This resource represents a long-running operation that is the result of a network API call.
277  &quot;done&quot;: True or False, # If the value is false, it means the operation is still in progress. If true, the operation is completed, and either error or response is available.
278  &quot;error&quot;: { # The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC (https://github.com/grpc). Each Status message contains three pieces of data: error code, error message, and error details.You can find out more about this error model and how to work with it in the API Design Guide (https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
279    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
280    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
281      {
282        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
283      },
284    ],
285    &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
286  },
287  &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
288    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
289  },
290  &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the name should be a resource name ending with operations/{unique_id}.
291  &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as Delete, the response is google.protobuf.Empty. If the original method is standard Get/Create/Update, the response should be the resource. For other methods, the response should have the type XxxResponse, where Xxx is the original method name. For example, if the original method name is TakeSnapshot(), the inferred response type is TakeSnapshotResponse.
292    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
293  },
294}</pre>
295</div>
296
297</body></html>