|
| 1 | +""" |
| 2 | +This file was generated by the KCL auto-gen tool. DO NOT EDIT. |
| 3 | +Editing this file might prove futile when you re-run the KCL auto-gen generate command. |
| 4 | +""" |
| 5 | + |
| 6 | +import k8s.apimachinery.pkg.apis.meta.v1 |
| 7 | + |
| 8 | +schema Configuration: |
| 9 | + r""" |
| 10 | + A Configuration is the description of a Crossplane Configuration package. |
| 11 | + |
| 12 | + Attributes |
| 13 | + ---------- |
| 14 | + apiVersion : str, default is "meta.pkg.crossplane.io/v1", required |
| 15 | + APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
| 16 | + kind : str, default is "Configuration", required |
| 17 | + Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
| 18 | + metadata : v1.ObjectMeta, default is Undefined, optional |
| 19 | + metadata |
| 20 | + spec : MetaPkgCrossplaneIoV1ConfigurationSpec, default is Undefined, required |
| 21 | + spec |
| 22 | + """ |
| 23 | + apiVersion: "meta.pkg.crossplane.io/v1" = "meta.pkg.crossplane.io/v1" |
| 24 | + |
| 25 | + kind: "Configuration" = "Configuration" |
| 26 | + |
| 27 | + metadata?: v1.ObjectMeta |
| 28 | + spec: MetaPkgCrossplaneIoV1ConfigurationSpec |
| 29 | + |
| 30 | +schema MetaPkgCrossplaneIoV1ConfigurationSpec: |
| 31 | + r""" |
| 32 | + ConfigurationSpec specifies the configuration of a Configuration. |
| 33 | + |
| 34 | + Attributes |
| 35 | + ---------- |
| 36 | + capabilities : [str], default is Undefined, optional |
| 37 | + Capabilities of this package. Capabilities are opaque strings that |
| 38 | + may be meaningful to package consumers. |
| 39 | + crossplane : MetaPkgCrossplaneIoV1ConfigurationSpecCrossplane, default is Undefined, optional |
| 40 | + crossplane |
| 41 | + dependsOn : [MetaPkgCrossplaneIoV1ConfigurationSpecDependsOnItems0], default is Undefined, optional |
| 42 | + Dependencies on other packages. |
| 43 | + """ |
| 44 | + capabilities?: [str] |
| 45 | + crossplane?: MetaPkgCrossplaneIoV1ConfigurationSpecCrossplane |
| 46 | + dependsOn?: [MetaPkgCrossplaneIoV1ConfigurationSpecDependsOnItems0] |
| 47 | + |
| 48 | +schema MetaPkgCrossplaneIoV1ConfigurationSpecCrossplane: |
| 49 | + r""" |
| 50 | + Semantic version constraints of Crossplane that package is compatible with. |
| 51 | + |
| 52 | + Attributes |
| 53 | + ---------- |
| 54 | + version : str, default is Undefined, required |
| 55 | + Semantic version constraints of Crossplane that package is compatible with. |
| 56 | + """ |
| 57 | + version: str |
| 58 | + |
| 59 | +schema MetaPkgCrossplaneIoV1ConfigurationSpecDependsOnItems0: |
| 60 | + r""" |
| 61 | + Dependency is a dependency on another package. A dependency can be of an |
| 62 | + arbitrary API version and kind, but Crossplane expects package dependencies |
| 63 | + to behave like a Crossplane package. Specifically it expects to be able to |
| 64 | + create the dependency and set its spec.package field to a package OCI |
| 65 | + reference. |
| 66 | + |
| 67 | + Attributes |
| 68 | + ---------- |
| 69 | + apiVersion : str, default is Undefined, optional |
| 70 | + APIVersion of the dependency. |
| 71 | + configuration : str, default is Undefined, optional |
| 72 | + Configuration is the name of a Configuration package image. |
| 73 | + Must be a fully qualified image name, including the registry, |
| 74 | + Deprecated: Specify an apiVersion, kind, and package instead. |
| 75 | + function : str, default is Undefined, optional |
| 76 | + Function is the name of a Function package image. |
| 77 | + Must be a fully qualified image name, including the registry, |
| 78 | + Deprecated: Specify an apiVersion, kind, and package instead. |
| 79 | + kind : str, default is Undefined, optional |
| 80 | + Kind of the dependency. |
| 81 | + package : str, default is Undefined, optional |
| 82 | + Package OCI reference of the dependency. Only used when apiVersion and |
| 83 | + kind are set. |
| 84 | + Must be a fully qualified image name, including the registry, |
| 85 | + repository, and tag. For example, "registry.example.com/repo/package:tag". |
| 86 | + provider : str, default is Undefined, optional |
| 87 | + Provider is the name of a Provider package image. |
| 88 | + Must be a fully qualified image name, including the registry, |
| 89 | + Deprecated: Specify an apiVersion and kind instead. |
| 90 | + version : str, default is Undefined, required |
| 91 | + Version is the semantic version constraints of the dependency image. |
| 92 | + """ |
| 93 | + apiVersion?: str |
| 94 | + configuration?: str |
| 95 | + function?: str |
| 96 | + kind?: str |
| 97 | + package?: str |
| 98 | + provider?: str |
| 99 | + version: str |
| 100 | + |
0 commit comments