docs: update docs (#916)

* fix: re-run script

* test: fix noxfile
diff --git a/docs/dyn/run_v1beta1.namespaces.customresourcedefinitions.html b/docs/dyn/run_v1beta1.namespaces.customresourcedefinitions.html
index 2b01448..331e436 100644
--- a/docs/dyn/run_v1beta1.namespaces.customresourcedefinitions.html
+++ b/docs/dyn/run_v1beta1.namespaces.customresourcedefinitions.html
@@ -104,6 +104,22 @@
         "openAPIV3Schema": { # JSONSchemaProps is a JSON-Schema following Specification Draft 4 # OpenAPIV3Schema is the OpenAPI v3 schema to be validated against.
             # +optional
             # (http://json-schema.org/).
+          "description": "A String",
+          "example": { # JSON represents any valid JSON value.
+              # These types are supported: bool, int64, float64, string, []interface{},
+              # map[string]interface{} and nil.
+            "raw": "A String",
+          },
+          "default": { # JSON represents any valid JSON value.
+              # These types are supported: bool, int64, float64, string, []interface{},
+              # map[string]interface{} and nil.
+            "raw": "A String",
+          },
+          "allOf": [
+            # Object with schema name: JSONSchemaProps
+          ],
+          "maxLength": "A String",
+          "maxProperties": "A String",
           "multipleOf": 3.14,
           "maximum": 3.14,
           "items": { # JSONSchemaPropsOrArray represents a value that can either be a
@@ -114,30 +130,30 @@
             ],
             "schema": # Object with schema name: JSONSchemaProps
           },
-          "schema": "A String",
           "externalDocs": { # ExternalDocumentation allows referencing an external resource for extended
               # documentation.
-            "url": "A String",
             "description": "A String",
+            "url": "A String",
           },
+          "schema": "A String",
           "id": "A String",
           "minimum": 3.14,
           "properties": {
             "a_key": # Object with schema name: JSONSchemaProps
           },
-          "ref": "A String",
           "pattern": "A String",
+          "ref": "A String",
           "format": "A String",
           "minLength": "A String",
+          "type": "A String",
           "dependencies": {
             "a_key": { # JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array.
+              "schema": # Object with schema name: JSONSchemaProps
               "property": [
                 "A String",
               ],
-              "schema": # Object with schema name: JSONSchemaProps
             },
           },
-          "type": "A String",
           "not": # Object with schema name: JSONSchemaProps
           "minProperties": "A String",
           "exclusiveMaximum": True or False,
@@ -174,22 +190,6 @@
           "anyOf": [
             # Object with schema name: JSONSchemaProps
           ],
-          "description": "A String",
-          "default": { # JSON represents any valid JSON value.
-              # These types are supported: bool, int64, float64, string, []interface{},
-              # map[string]interface{} and nil.
-            "raw": "A String",
-          },
-          "example": { # JSON represents any valid JSON value.
-              # These types are supported: bool, int64, float64, string, []interface{},
-              # map[string]interface{} and nil.
-            "raw": "A String",
-          },
-          "allOf": [
-            # Object with schema name: JSONSchemaProps
-          ],
-          "maxProperties": "A String",
-          "maxLength": "A String",
         },
       },
       "group": "A String", # Group is the group this resource belongs in
@@ -200,6 +200,8 @@
           # +optional
       "names": { # CustomResourceDefinitionNames indicates the names to serve this # Names are the names used to describe this custom resource
           # CustomResourceDefinition
+        "kind": "A String", # Kind is the serialized kind of the resource.  It is normally CamelCase and
+            # singular.
         "listKind": "A String", # ListKind is the serialized kind of the list for this resource.  Defaults to
             # <kind>List. +optional
         "shortNames": [ # ShortNames are short names for the resource.  It must be all lowercase.
@@ -215,8 +217,6 @@
             # 'all') +optional
           "A String",
         ],
-        "kind": "A String", # Kind is the serialized kind of the resource.  It is normally CamelCase and
-            # singular.
       },
       "subresources": { # CustomResourceSubresources defines the status and scale subresources for # Subresources describes the subresources for CustomResources
           # +optional
@@ -278,6 +278,11 @@
       "additionalPrinterColumns": [ # AdditionalPrinterColumns are additional columns shown e.g. in kubectl next
           # to the name. Defaults to a created-at column. +optional
         { # CustomResourceColumnDefinition specifies a column for server side printing.
+          "jsonPath": "A String", # JSONPath is a simple JSON path, i.e. with array notation.
+          "priority": 42, # priority is an integer defining the relative importance of this column
+              # compared to others. Lower numbers are considered higher priority. Columns
+              # that may be omitted in limited space scenarios should be given a higher
+              # priority. +optional
           "description": "A String", # description is a human readable description of this column.
               # +optional
           "name": "A String", # name is a human readable name for the column.
@@ -290,81 +295,12 @@
               # See
               # https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types
               # for more.
-          "jsonPath": "A String", # JSONPath is a simple JSON path, i.e. with array notation.
-          "priority": 42, # priority is an integer defining the relative importance of this column
-              # compared to others. Lower numbers are considered higher priority. Columns
-              # that may be omitted in limited space scenarios should be given a higher
-              # priority. +optional
         },
       ],
     },
     "kind": "A String", # The kind of resource, in this case always "CustomResourceDefinition".
     "metadata": { # k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta is metadata that all # Metadata associated with this CustomResourceDefinition.
         # persisted resources must have, which includes all objects users must create.
-      "creationTimestamp": "A String", # (Optional)
-          #
-          # CreationTimestamp is a timestamp representing the server time when this
-          # object was created. It is not guaranteed to be set in happens-before order
-          # across separate operations. Clients may not set this value. It is
-          # represented in RFC3339 form and is in UTC.
-          #
-          # Populated by the system.
-          # Read-only.
-          # Null for lists.
-          # More info:
-          # https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
-      "labels": { # (Optional)
-          #
-          # Map of string keys and values that can be used to organize and categorize
-          # (scope and select) objects. May match selectors of replication controllers
-          # and routes.
-          # More info: http://kubernetes.io/docs/user-guide/labels
-        "a_key": "A String",
-      },
-      "generation": 42, # (Optional)
-          #
-          # A sequence number representing a specific generation of the desired state.
-          # Populated by the system. Read-only.
-      "resourceVersion": "A String", # (Optional)
-          #
-          # An opaque value that represents the internal version of this object that
-          # can be used by clients to determine when objects have changed. May be used
-          # for optimistic concurrency, change detection, and the watch operation on a
-          # resource or set of resources. Clients must treat these values as opaque and
-          # passed unmodified back to the server. They may only be valid for a
-          # particular resource or set of resources.
-          #
-          # Populated by the system.
-          # Read-only.
-          # Value must be treated as opaque by clients and .
-          # More info:
-          # https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency
-      "selfLink": "A String", # (Optional)
-          #
-          # SelfLink is a URL representing this object.
-          # Populated by the system.
-          # Read-only.
-          #  string selfLink = 4;
-      "uid": "A String", # (Optional)
-          #
-          # UID is the unique in time and space value for this object. It is typically
-          # generated by the server on successful creation of a resource and is not
-          # allowed to change on PUT operations.
-          #
-          # Populated by the system.
-          # Read-only.
-          # More info: http://kubernetes.io/docs/user-guide/identifiers#uids
-      "namespace": "A String", # Namespace defines the space within each name must be unique, within a
-          # Cloud Run region. In Cloud Run the namespace must be equal to either the
-          # project ID or project number.
-      "annotations": { # (Optional)
-          #
-          # Annotations is an unstructured key value map stored with a resource that
-          # may be set by external tools to store and retrieve arbitrary metadata. They
-          # are not queryable and should be preserved when modifying objects. More
-          # info: http://kubernetes.io/docs/user-guide/annotations
-        "a_key": "A String",
-      },
       "generateName": "A String", # (Optional)
           #
           # Cloud Run fully managed: not supported
@@ -389,6 +325,13 @@
           # More info:
           # https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency
           #  string generateName = 2;
+      "name": "A String", # Name must be unique within a namespace, within a Cloud Run region.
+          # Is required when creating
+          # resources, although some resources may allow a client to request the
+          # generation of an appropriate name automatically. Name is primarily intended
+          # for creation idempotence and configuration definition. Cannot be updated.
+          # More info: http://kubernetes.io/docs/user-guide/identifiers#names
+          # +optional
       "deletionGracePeriodSeconds": 42, # (Optional)
           #
           # Cloud Run fully managed: not supported
@@ -408,13 +351,6 @@
           # This is used to distinguish resources with same name and namespace in
           # different clusters. This field is not set anywhere right now and apiserver
           # is going to ignore it if set in create or update request.
-      "name": "A String", # Name must be unique within a namespace, within a Cloud Run region.
-          # Is required when creating
-          # resources, although some resources may allow a client to request the
-          # generation of an appropriate name automatically. Name is primarily intended
-          # for creation idempotence and configuration definition. Cannot be updated.
-          # More info: http://kubernetes.io/docs/user-guide/identifiers#names
-          # +optional
       "finalizers": [ # (Optional)
           #
           # Cloud Run fully managed: not supported
@@ -486,6 +422,70 @@
               # +optional
         },
       ],
+      "creationTimestamp": "A String", # (Optional)
+          #
+          # CreationTimestamp is a timestamp representing the server time when this
+          # object was created. It is not guaranteed to be set in happens-before order
+          # across separate operations. Clients may not set this value. It is
+          # represented in RFC3339 form and is in UTC.
+          #
+          # Populated by the system.
+          # Read-only.
+          # Null for lists.
+          # More info:
+          # https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
+      "labels": { # (Optional)
+          #
+          # Map of string keys and values that can be used to organize and categorize
+          # (scope and select) objects. May match selectors of replication controllers
+          # and routes.
+          # More info: http://kubernetes.io/docs/user-guide/labels
+        "a_key": "A String",
+      },
+      "generation": 42, # (Optional)
+          #
+          # A sequence number representing a specific generation of the desired state.
+          # Populated by the system. Read-only.
+      "resourceVersion": "A String", # (Optional)
+          #
+          # An opaque value that represents the internal version of this object that
+          # can be used by clients to determine when objects have changed. May be used
+          # for optimistic concurrency, change detection, and the watch operation on a
+          # resource or set of resources. Clients must treat these values as opaque and
+          # passed unmodified back to the server. They may only be valid for a
+          # particular resource or set of resources.
+          #
+          # Populated by the system.
+          # Read-only.
+          # Value must be treated as opaque by clients and .
+          # More info:
+          # https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency
+      "uid": "A String", # (Optional)
+          #
+          # UID is the unique in time and space value for this object. It is typically
+          # generated by the server on successful creation of a resource and is not
+          # allowed to change on PUT operations.
+          #
+          # Populated by the system.
+          # Read-only.
+          # More info: http://kubernetes.io/docs/user-guide/identifiers#uids
+      "selfLink": "A String", # (Optional)
+          #
+          # SelfLink is a URL representing this object.
+          # Populated by the system.
+          # Read-only.
+          #  string selfLink = 4;
+      "namespace": "A String", # Namespace defines the space within each name must be unique, within a
+          # Cloud Run region. In Cloud Run the namespace must be equal to either the
+          # project ID or project number.
+      "annotations": { # (Optional)
+          #
+          # Annotations is an unstructured key value map stored with a resource that
+          # may be set by external tools to store and retrieve arbitrary metadata. They
+          # are not queryable and should be preserved when modifying objects. More
+          # info: http://kubernetes.io/docs/user-guide/annotations
+        "a_key": "A String",
+      },
     },
   }</pre>
 </div>