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