blob: 331e4365c0a32dfa083efd69f87647291f55f308 [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="run_v1beta1.html">Cloud Run API</a> . <a href="run_v1beta1.namespaces.html">namespaces</a> . <a href="run_v1beta1.namespaces.customresourcedefinitions.html">customresourcedefinitions</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
79<p class="firstline">Rpc to get information about a CustomResourceDefinition.</p>
80<h3>Method Details</h3>
81<div class="method">
82 <code class="details" id="get">get(name, x__xgafv=None)</code>
83 <pre>Rpc to get information about a CustomResourceDefinition.
84
85Args:
86 name: string, The name of the CustomResourceDefinition being retrieved. If needed,
87replace {namespace_id} with the project ID. (required)
88 x__xgafv: string, V1 error format.
89 Allowed values
90 1 - v1 error format
91 2 - v2 error format
92
93Returns:
94 An object of the form:
95
96 { # CustomResourceDefinition represents a resource that should be exposed on the
97 # API server. Its name MUST be in the format
98 # &lt;.spec.name&gt;.&lt;.spec.group&gt;.
99 &quot;apiVersion&quot;: &quot;A String&quot;, # The API version for this call such as &quot;k8s.apiextensions.io/v1beta1&quot;.
100 &quot;spec&quot;: { # CustomResourceDefinitionSpec describes how a user wants their resource to # Spec describes how the user wants the resources to appear
101 # appear
102 &quot;validation&quot;: { # CustomResourceValidation is a list of validation methods for CustomResources. # Validation describes the validation methods for CustomResources
103 # +optional
104 &quot;openAPIV3Schema&quot;: { # JSONSchemaProps is a JSON-Schema following Specification Draft 4 # OpenAPIV3Schema is the OpenAPI v3 schema to be validated against.
105 # +optional
106 # (http://json-schema.org/).
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700107 &quot;description&quot;: &quot;A String&quot;,
108 &quot;example&quot;: { # JSON represents any valid JSON value.
109 # These types are supported: bool, int64, float64, string, []interface{},
110 # map[string]interface{} and nil.
111 &quot;raw&quot;: &quot;A String&quot;,
112 },
113 &quot;default&quot;: { # JSON represents any valid JSON value.
114 # These types are supported: bool, int64, float64, string, []interface{},
115 # map[string]interface{} and nil.
116 &quot;raw&quot;: &quot;A String&quot;,
117 },
118 &quot;allOf&quot;: [
119 # Object with schema name: JSONSchemaProps
120 ],
121 &quot;maxLength&quot;: &quot;A String&quot;,
122 &quot;maxProperties&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700123 &quot;multipleOf&quot;: 3.14,
124 &quot;maximum&quot;: 3.14,
125 &quot;items&quot;: { # JSONSchemaPropsOrArray represents a value that can either be a
126 # JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization
127 # purposes.
128 &quot;jsonSchemas&quot;: [
129 # Object with schema name: JSONSchemaProps
130 ],
131 &quot;schema&quot;: # Object with schema name: JSONSchemaProps
132 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700133 &quot;externalDocs&quot;: { # ExternalDocumentation allows referencing an external resource for extended
134 # documentation.
Bu Sun Kim65020912020-05-20 12:08:20 -0700135 &quot;description&quot;: &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700136 &quot;url&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700137 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700138 &quot;schema&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700139 &quot;id&quot;: &quot;A String&quot;,
140 &quot;minimum&quot;: 3.14,
141 &quot;properties&quot;: {
142 &quot;a_key&quot;: # Object with schema name: JSONSchemaProps
143 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700144 &quot;pattern&quot;: &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700145 &quot;ref&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700146 &quot;format&quot;: &quot;A String&quot;,
147 &quot;minLength&quot;: &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700148 &quot;type&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700149 &quot;dependencies&quot;: {
150 &quot;a_key&quot;: { # JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700151 &quot;schema&quot;: # Object with schema name: JSONSchemaProps
Bu Sun Kim65020912020-05-20 12:08:20 -0700152 &quot;property&quot;: [
153 &quot;A String&quot;,
154 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700155 },
156 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700157 &quot;not&quot;: # Object with schema name: JSONSchemaProps
158 &quot;minProperties&quot;: &quot;A String&quot;,
159 &quot;exclusiveMaximum&quot;: True or False,
160 &quot;patternProperties&quot;: {
161 &quot;a_key&quot;: # Object with schema name: JSONSchemaProps
162 },
163 &quot;additionalProperties&quot;: { # JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value.
164 # Defaults to true for the boolean property.
165 &quot;allows&quot;: True or False,
166 &quot;schema&quot;: # Object with schema name: JSONSchemaProps
167 },
168 &quot;maxItems&quot;: &quot;A String&quot;,
169 &quot;exclusiveMinimum&quot;: True or False,
170 &quot;additionalItems&quot;: { # JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value.
171 # Defaults to true for the boolean property.
172 &quot;allows&quot;: True or False,
173 &quot;schema&quot;: # Object with schema name: JSONSchemaProps
174 },
175 &quot;oneOf&quot;: [
176 # Object with schema name: JSONSchemaProps
177 ],
178 &quot;required&quot;: [
179 &quot;A String&quot;,
180 ],
181 &quot;minItems&quot;: &quot;A String&quot;,
182 &quot;title&quot;: &quot;A String&quot;,
183 &quot;definitions&quot;: {
184 &quot;a_key&quot;: # Object with schema name: JSONSchemaProps
185 },
186 &quot;enum&quot;: [
187 &quot;A String&quot;,
188 ],
189 &quot;uniqueItems&quot;: True or False,
190 &quot;anyOf&quot;: [
191 # Object with schema name: JSONSchemaProps
192 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700193 },
194 },
195 &quot;group&quot;: &quot;A String&quot;, # Group is the group this resource belongs in
196 &quot;version&quot;: &quot;A String&quot;, # Version is the version this resource belongs in
197 # Should be always first item in Versions field if provided.
198 # Optional, but at least one of Version or Versions must be set.
199 # Deprecated: Please use `Versions`.
200 # +optional
201 &quot;names&quot;: { # CustomResourceDefinitionNames indicates the names to serve this # Names are the names used to describe this custom resource
202 # CustomResourceDefinition
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700203 &quot;kind&quot;: &quot;A String&quot;, # Kind is the serialized kind of the resource. It is normally CamelCase and
204 # singular.
Bu Sun Kim65020912020-05-20 12:08:20 -0700205 &quot;listKind&quot;: &quot;A String&quot;, # ListKind is the serialized kind of the list for this resource. Defaults to
206 # &lt;kind&gt;List. +optional
207 &quot;shortNames&quot;: [ # ShortNames are short names for the resource. It must be all lowercase.
208 # +optional
209 &quot;A String&quot;,
210 ],
211 &quot;singular&quot;: &quot;A String&quot;, # Singular is the singular name of the resource. It must be all lowercase
212 # Defaults to lowercased &lt;kind&gt; +optional
213 &quot;plural&quot;: &quot;A String&quot;, # Plural is the plural name of the resource to serve. It must match the name
214 # of the CustomResourceDefinition-registration too: plural.group and it must
215 # be all lowercase.
216 &quot;categories&quot;: [ # Categories is a list of grouped resources custom resources belong to (e.g.
217 # &#x27;all&#x27;) +optional
218 &quot;A String&quot;,
219 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700220 },
221 &quot;subresources&quot;: { # CustomResourceSubresources defines the status and scale subresources for # Subresources describes the subresources for CustomResources
222 # +optional
223 # CustomResources.
224 &quot;status&quot;: { # CustomResourceSubresourceStatus defines how to serve the status subresource # Status denotes the status subresource for CustomResources
225 # +optional
226 # for CustomResources. Status is represented by the `.status` JSON path inside
227 # of a CustomResource. When set,
228 # * exposes a /status subresource for the custom resource
229 # * PUT requests to the /status subresource take a custom resource object, and
230 # ignore changes to anything except the status stanza
231 # * PUT/POST/PATCH requests to the custom resource ignore changes to the status
232 # stanza
233 },
234 &quot;scale&quot;: { # CustomResourceSubresourceScale defines how to serve the scale subresource for # Scale denotes the scale subresource for CustomResources
235 # +optional
236 # CustomResources.
237 &quot;statusReplicasPath&quot;: &quot;A String&quot;, # StatusReplicasPath defines the JSON path inside of a CustomResource that
238 # corresponds to Scale.Status.Replicas. Only JSON paths without the array
239 # notation are allowed. Must be a JSON Path under .status. If there is no
240 # value under the given path in the CustomResource, the status replica value
241 # in the /scale subresource will default to 0.
242 &quot;labelSelectorPath&quot;: &quot;A String&quot;, # LabelSelectorPath defines the JSON path inside of a CustomResource that
243 # corresponds to Scale.Status.Selector. Only JSON paths without the array
244 # notation are allowed. Must be a JSON Path under .status. Must be set to
245 # work with HPA. If there is no value under the given path in the
246 # CustomResource, the status label selector value in the /scale subresource
247 # will default to the empty string. +optional
248 &quot;specReplicasPath&quot;: &quot;A String&quot;, # SpecReplicasPath defines the JSON path inside of a CustomResource that
249 # corresponds to Scale.Spec.Replicas. Only JSON paths without the array
250 # notation are allowed. Must be a JSON Path under .spec. If there is no value
251 # under the given path in the CustomResource, the /scale subresource will
252 # return an error on GET.
253 },
254 },
255 &quot;scope&quot;: &quot;A String&quot;, # Scope indicates whether this resource is cluster or namespace scoped.
256 # Default is namespaced
257 &quot;versions&quot;: [ # Versions is the list of all supported versions for this resource.
258 # If Version field is provided, this field is optional.
259 # Validation: All versions must use the same validation schema for now. i.e.,
260 # top level Validation field is applied to all of these versions. Order: The
261 # version name will be used to compute the order. If the version string is
262 # &quot;kube-like&quot;, it will sort above non &quot;kube-like&quot; version strings, which are
263 # ordered lexicographically. &quot;Kube-like&quot; versions start with a &quot;v&quot;, then are
264 # followed by a number (the major version), then optionally the string
265 # &quot;alpha&quot; or &quot;beta&quot; and another number (the minor version). These are sorted
266 # first by GA &gt; beta &gt; alpha (where GA is a version with no suffix such as
267 # beta or alpha), and then by comparing major version, then minor version. An
268 # example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1,
269 # v12alpha1, v11alpha2, foo1, foo10. +optional
270 {
271 &quot;name&quot;: &quot;A String&quot;, # Name is the version name, e.g. “v1”, “v2beta1”, etc.
272 &quot;served&quot;: True or False, # Served is a flag enabling/disabling this version from being served via REST
273 # APIs
274 &quot;storage&quot;: True or False, # Storage flags the version as storage version. There must be exactly one
275 # flagged as storage version.
276 },
277 ],
278 &quot;additionalPrinterColumns&quot;: [ # AdditionalPrinterColumns are additional columns shown e.g. in kubectl next
279 # to the name. Defaults to a created-at column. +optional
280 { # CustomResourceColumnDefinition specifies a column for server side printing.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700281 &quot;jsonPath&quot;: &quot;A String&quot;, # JSONPath is a simple JSON path, i.e. with array notation.
282 &quot;priority&quot;: 42, # priority is an integer defining the relative importance of this column
283 # compared to others. Lower numbers are considered higher priority. Columns
284 # that may be omitted in limited space scenarios should be given a higher
285 # priority. +optional
Bu Sun Kim65020912020-05-20 12:08:20 -0700286 &quot;description&quot;: &quot;A String&quot;, # description is a human readable description of this column.
287 # +optional
288 &quot;name&quot;: &quot;A String&quot;, # name is a human readable name for the column.
289 &quot;format&quot;: &quot;A String&quot;, # format is an optional OpenAPI type definition for this column. The &#x27;name&#x27;
290 # format is applied to the primary identifier column to assist in clients
291 # identifying column is the resource name. See
292 # https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types
293 # for more. +optional
294 &quot;type&quot;: &quot;A String&quot;, # type is an OpenAPI type definition for this column.
295 # See
296 # https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types
297 # for more.
Bu Sun Kim65020912020-05-20 12:08:20 -0700298 },
299 ],
300 },
301 &quot;kind&quot;: &quot;A String&quot;, # The kind of resource, in this case always &quot;CustomResourceDefinition&quot;.
302 &quot;metadata&quot;: { # k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta is metadata that all # Metadata associated with this CustomResourceDefinition.
303 # persisted resources must have, which includes all objects users must create.
Bu Sun Kim65020912020-05-20 12:08:20 -0700304 &quot;generateName&quot;: &quot;A String&quot;, # (Optional)
305 #
306 # Cloud Run fully managed: not supported
307 #
308 # Cloud Run for Anthos: supported
309 #
310 # GenerateName is an optional prefix, used by the server, to generate a
311 # unique name ONLY IF the Name field has not been provided. If this field is
312 # used, the name returned to the client will be different than the name
313 # passed. This value will also be combined with a unique suffix. The provided
314 # value has the same validation rules as the Name field, and may be truncated
315 # by the length of the suffix required to make the value unique on the
316 # server.
317 #
318 # If this field is specified and the generated name exists, the server will
319 # NOT return a 409 - instead, it will either return 201 Created or 500 with
320 # Reason ServerTimeout indicating a unique name could not be found in the
321 # time allotted, and the client should retry (optionally after the time
322 # indicated in the Retry-After header).
323 #
324 # Applied only if Name is not specified.
325 # More info:
326 # https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency
327 # string generateName = 2;
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700328 &quot;name&quot;: &quot;A String&quot;, # Name must be unique within a namespace, within a Cloud Run region.
329 # Is required when creating
330 # resources, although some resources may allow a client to request the
331 # generation of an appropriate name automatically. Name is primarily intended
332 # for creation idempotence and configuration definition. Cannot be updated.
333 # More info: http://kubernetes.io/docs/user-guide/identifiers#names
334 # +optional
Bu Sun Kim65020912020-05-20 12:08:20 -0700335 &quot;deletionGracePeriodSeconds&quot;: 42, # (Optional)
336 #
337 # Cloud Run fully managed: not supported
338 #
339 # Cloud Run for Anthos: supported
340 #
341 # Number of seconds allowed for this object to gracefully terminate before
342 # it will be removed from the system. Only set when deletionTimestamp is also
343 # set. May only be shortened. Read-only.
344 &quot;clusterName&quot;: &quot;A String&quot;, # (Optional)
345 #
346 # Cloud Run fully managed: not supported
347 #
348 # Cloud Run for Anthos: supported
349 #
350 # The name of the cluster which the object belongs to.
351 # This is used to distinguish resources with same name and namespace in
352 # different clusters. This field is not set anywhere right now and apiserver
353 # is going to ignore it if set in create or update request.
Bu Sun Kim65020912020-05-20 12:08:20 -0700354 &quot;finalizers&quot;: [ # (Optional)
355 #
356 # Cloud Run fully managed: not supported
357 #
358 # Cloud Run for Anthos: supported
359 #
360 # Must be empty before the object is deleted from the registry. Each entry
361 # is an identifier for the responsible component that will remove the entry
362 # from the list. If the deletionTimestamp of the object is non-nil, entries
363 # in this list can only be removed.
364 # +patchStrategy=merge
365 &quot;A String&quot;,
366 ],
367 &quot;deletionTimestamp&quot;: &quot;A String&quot;, # (Optional)
368 #
369 # Cloud Run fully managed: not supported
370 #
371 # Cloud Run for Anthos: supported
372 #
373 # DeletionTimestamp is RFC 3339 date and time at which this resource will be
374 # deleted. This field is set by the server when a graceful deletion is
375 # requested by the user, and is not directly settable by a client. The
376 # resource is expected to be deleted (no longer visible from resource lists,
377 # and not reachable by name) after the time in this field, once the
378 # finalizers list is empty. As long as the finalizers list contains items,
379 # deletion is blocked. Once the deletionTimestamp is set, this value may not
380 # be unset or be set further into the future, although it may be shortened or
381 # the resource may be deleted prior to this time. For example, a user may
382 # request that a pod is deleted in 30 seconds. The Kubelet will react by
383 # sending a graceful termination signal to the containers in the pod. After
384 # that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL)
385 # to the container and after cleanup, remove the pod from the API. In the
386 # presence of network partitions, this object may still exist after this
387 # timestamp, until an administrator or automated process can determine the
388 # resource is fully terminated.
389 # If not set, graceful deletion of the object has not been requested.
390 #
391 # Populated by the system when a graceful deletion is requested.
392 # Read-only.
393 # More info:
394 # https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
395 &quot;ownerReferences&quot;: [ # (Optional)
396 #
397 # Cloud Run fully managed: not supported
398 #
399 # Cloud Run for Anthos: supported
400 #
401 # List of objects that own this object. If ALL objects in the list have
402 # been deleted, this object will be garbage collected.
403 { # OwnerReference contains enough information to let you identify an owning
404 # object. Currently, an owning object must be in the same namespace, so there
405 # is no namespace field.
406 &quot;apiVersion&quot;: &quot;A String&quot;, # API version of the referent.
407 &quot;name&quot;: &quot;A String&quot;, # Name of the referent.
408 # More info: http://kubernetes.io/docs/user-guide/identifiers#names
409 &quot;uid&quot;: &quot;A String&quot;, # UID of the referent.
410 # More info: http://kubernetes.io/docs/user-guide/identifiers#uids
411 &quot;controller&quot;: True or False, # If true, this reference points to the managing controller.
412 # +optional
413 &quot;kind&quot;: &quot;A String&quot;, # Kind of the referent.
414 # More info:
415 # https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
416 &quot;blockOwnerDeletion&quot;: True or False, # If true, AND if the owner has the &quot;foregroundDeletion&quot; finalizer, then
417 # the owner cannot be deleted from the key-value store until this
418 # reference is removed.
419 # Defaults to false.
420 # To set this field, a user needs &quot;delete&quot; permission of the owner,
421 # otherwise 422 (Unprocessable Entity) will be returned.
422 # +optional
423 },
424 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700425 &quot;creationTimestamp&quot;: &quot;A String&quot;, # (Optional)
426 #
427 # CreationTimestamp is a timestamp representing the server time when this
428 # object was created. It is not guaranteed to be set in happens-before order
429 # across separate operations. Clients may not set this value. It is
430 # represented in RFC3339 form and is in UTC.
431 #
432 # Populated by the system.
433 # Read-only.
434 # Null for lists.
435 # More info:
436 # https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
437 &quot;labels&quot;: { # (Optional)
438 #
439 # Map of string keys and values that can be used to organize and categorize
440 # (scope and select) objects. May match selectors of replication controllers
441 # and routes.
442 # More info: http://kubernetes.io/docs/user-guide/labels
443 &quot;a_key&quot;: &quot;A String&quot;,
444 },
445 &quot;generation&quot;: 42, # (Optional)
446 #
447 # A sequence number representing a specific generation of the desired state.
448 # Populated by the system. Read-only.
449 &quot;resourceVersion&quot;: &quot;A String&quot;, # (Optional)
450 #
451 # An opaque value that represents the internal version of this object that
452 # can be used by clients to determine when objects have changed. May be used
453 # for optimistic concurrency, change detection, and the watch operation on a
454 # resource or set of resources. Clients must treat these values as opaque and
455 # passed unmodified back to the server. They may only be valid for a
456 # particular resource or set of resources.
457 #
458 # Populated by the system.
459 # Read-only.
460 # Value must be treated as opaque by clients and .
461 # More info:
462 # https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency
463 &quot;uid&quot;: &quot;A String&quot;, # (Optional)
464 #
465 # UID is the unique in time and space value for this object. It is typically
466 # generated by the server on successful creation of a resource and is not
467 # allowed to change on PUT operations.
468 #
469 # Populated by the system.
470 # Read-only.
471 # More info: http://kubernetes.io/docs/user-guide/identifiers#uids
472 &quot;selfLink&quot;: &quot;A String&quot;, # (Optional)
473 #
474 # SelfLink is a URL representing this object.
475 # Populated by the system.
476 # Read-only.
477 # string selfLink = 4;
478 &quot;namespace&quot;: &quot;A String&quot;, # Namespace defines the space within each name must be unique, within a
479 # Cloud Run region. In Cloud Run the namespace must be equal to either the
480 # project ID or project number.
481 &quot;annotations&quot;: { # (Optional)
482 #
483 # Annotations is an unstructured key value map stored with a resource that
484 # may be set by external tools to store and retrieve arbitrary metadata. They
485 # are not queryable and should be preserved when modifying objects. More
486 # info: http://kubernetes.io/docs/user-guide/annotations
487 &quot;a_key&quot;: &quot;A String&quot;,
488 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700489 },
490 }</pre>
491</div>
492
493</body></html>