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="artifactregistry_v1beta1.html">Artifact Registry API</a> . <a href="artifactregistry_v1beta1.projects.html">projects</a> . <a href="artifactregistry_v1beta1.projects.locations.html">locations</a> . <a href="artifactregistry_v1beta1.projects.locations.repositories.html">repositories</a> . <a href="artifactregistry_v1beta1.projects.locations.repositories.packages.html">packages</a> . <a href="artifactregistry_v1beta1.projects.locations.repositories.packages.versions.html">versions</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="#delete">delete(name, force=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Deletes a version and all of its content. The returned operation will complete once the version has been deleted.</p>
83<p class="toc_element">
84  <code><a href="#get">get(name, view=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Gets a version</p>
86<p class="toc_element">
87  <code><a href="#list">list(parent, orderBy=None, pageSize=None, pageToken=None, view=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Lists versions.</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<h3>Method Details</h3>
93<div class="method">
94    <code class="details" id="close">close()</code>
95  <pre>Close httplib2 connections.</pre>
96</div>
97
98<div class="method">
99    <code class="details" id="delete">delete(name, force=None, x__xgafv=None)</code>
100  <pre>Deletes a version and all of its content. The returned operation will complete once the version has been deleted.
101
102Args:
103  name: string, The name of the version to delete. (required)
104  force: boolean, By default, a version that is tagged may not be deleted. If force=true, the version and any tags pointing to the version are deleted.
105  x__xgafv: string, V1 error format.
106    Allowed values
107      1 - v1 error format
108      2 - v2 error format
109
110Returns:
111  An object of the form:
112
113    { # This resource represents a long-running operation that is the result of a network API call.
114  &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.
115  &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.
116    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
117    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
118      {
119        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
120      },
121    ],
122    &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.
123  },
124  &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.
125    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
126  },
127  &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}`.
128  &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`.
129    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
130  },
131}</pre>
132</div>
133
134<div class="method">
135    <code class="details" id="get">get(name, view=None, x__xgafv=None)</code>
136  <pre>Gets a version
137
138Args:
139  name: string, The name of the version to retrieve. (required)
140  view: string, The view that should be returned in the response.
141    Allowed values
142      VERSION_VIEW_UNSPECIFIED - The default / unset value. The API will default to the BASIC view.
143      BASIC - Includes basic information about the version, but not any related tags.
144      FULL - Include everything.
145  x__xgafv: string, V1 error format.
146    Allowed values
147      1 - v1 error format
148      2 - v2 error format
149
150Returns:
151  An object of the form:
152
153    { # The body of a version resource. A version resource represents a collection of components, such as files and other data. This may correspond to a version in many package management schemes.
154  &quot;createTime&quot;: &quot;A String&quot;, # The time when the version was created.
155  &quot;description&quot;: &quot;A String&quot;, # Optional. Description of the version, as specified in its metadata.
156  &quot;name&quot;: &quot;A String&quot;, # The name of the version, for example: &quot;projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/art1&quot;. If the package or version ID parts contain slashes, the slashes are escaped.
157  &quot;relatedTags&quot;: [ # Output only. A list of related tags. Will contain up to 100 tags that reference this version.
158    { # Tags point to a version and represent an alternative name that can be used to access the version.
159      &quot;name&quot;: &quot;A String&quot;, # The name of the tag, for example: &quot;projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/tag1&quot;. If the package part contains slashes, the slashes are escaped. The tag part can only have characters in [a-zA-Z0-9\-._~:@], anything else must be URL encoded.
160      &quot;version&quot;: &quot;A String&quot;, # The name of the version the tag refers to, for example: &quot;projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/sha256:5243811&quot;
161    },
162  ],
163  &quot;updateTime&quot;: &quot;A String&quot;, # The time when the version was last updated.
164}</pre>
165</div>
166
167<div class="method">
168    <code class="details" id="list">list(parent, orderBy=None, pageSize=None, pageToken=None, view=None, x__xgafv=None)</code>
169  <pre>Lists versions.
170
171Args:
172  parent: string, The name of the parent resource whose versions will be listed. (required)
173  orderBy: string, Optional. Sorting field and order
174  pageSize: integer, The maximum number of versions to return.
175  pageToken: string, The next_page_token value returned from a previous list request, if any.
176  view: string, The view that should be returned in the response.
177    Allowed values
178      VERSION_VIEW_UNSPECIFIED - The default / unset value. The API will default to the BASIC view.
179      BASIC - Includes basic information about the version, but not any related tags.
180      FULL - Include everything.
181  x__xgafv: string, V1 error format.
182    Allowed values
183      1 - v1 error format
184      2 - v2 error format
185
186Returns:
187  An object of the form:
188
189    { # The response from listing versions.
190  &quot;nextPageToken&quot;: &quot;A String&quot;, # The token to retrieve the next page of versions, or empty if there are no more versions to return.
191  &quot;versions&quot;: [ # The versions returned.
192    { # The body of a version resource. A version resource represents a collection of components, such as files and other data. This may correspond to a version in many package management schemes.
193      &quot;createTime&quot;: &quot;A String&quot;, # The time when the version was created.
194      &quot;description&quot;: &quot;A String&quot;, # Optional. Description of the version, as specified in its metadata.
195      &quot;name&quot;: &quot;A String&quot;, # The name of the version, for example: &quot;projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/art1&quot;. If the package or version ID parts contain slashes, the slashes are escaped.
196      &quot;relatedTags&quot;: [ # Output only. A list of related tags. Will contain up to 100 tags that reference this version.
197        { # Tags point to a version and represent an alternative name that can be used to access the version.
198          &quot;name&quot;: &quot;A String&quot;, # The name of the tag, for example: &quot;projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/tag1&quot;. If the package part contains slashes, the slashes are escaped. The tag part can only have characters in [a-zA-Z0-9\-._~:@], anything else must be URL encoded.
199          &quot;version&quot;: &quot;A String&quot;, # The name of the version the tag refers to, for example: &quot;projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/sha256:5243811&quot;
200        },
201      ],
202      &quot;updateTime&quot;: &quot;A String&quot;, # The time when the version was last updated.
203    },
204  ],
205}</pre>
206</div>
207
208<div class="method">
209    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
210  <pre>Retrieves the next page of results.
211
212Args:
213  previous_request: The request for the previous page. (required)
214  previous_response: The response from the request for the previous page. (required)
215
216Returns:
217  A request object that you can call &#x27;execute()&#x27; on to request the next
218  page. Returns None if there are no more items in the collection.
219    </pre>
220</div>
221
222</body></html>