|
| 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 | +import k8s.apimachinery.pkg.apis.meta.v1 |
| 6 | + |
| 7 | + |
| 8 | +schema DNSEndpoint: |
| 9 | + r""" |
| 10 | + externaldns k8s io v1alpha1 DNS endpoint |
| 11 | + |
| 12 | + Attributes |
| 13 | + ---------- |
| 14 | + apiVersion : str, default is "externaldns.k8s.io/v1alpha1", 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 "DNSEndpoint", 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 : ExternaldnsK8sIoV1alpha1DNSEndpointSpec, default is Undefined, optional |
| 21 | + spec |
| 22 | + status : ExternaldnsK8sIoV1alpha1DNSEndpointStatus, default is Undefined, optional |
| 23 | + status |
| 24 | + """ |
| 25 | + |
| 26 | + |
| 27 | + apiVersion: "externaldns.k8s.io/v1alpha1" = "externaldns.k8s.io/v1alpha1" |
| 28 | + |
| 29 | + kind: "DNSEndpoint" = "DNSEndpoint" |
| 30 | + |
| 31 | + metadata?: v1.ObjectMeta |
| 32 | + |
| 33 | + spec?: ExternaldnsK8sIoV1alpha1DNSEndpointSpec |
| 34 | + |
| 35 | + status?: ExternaldnsK8sIoV1alpha1DNSEndpointStatus |
| 36 | + |
| 37 | + |
| 38 | +schema ExternaldnsK8sIoV1alpha1DNSEndpointSpec: |
| 39 | + r""" |
| 40 | + DNSEndpointSpec defines the desired state of DNSEndpoint |
| 41 | + |
| 42 | + Attributes |
| 43 | + ---------- |
| 44 | + endpoints : [ExternaldnsK8sIoV1alpha1DNSEndpointSpecEndpointsItems0], default is Undefined, optional |
| 45 | + endpoints |
| 46 | + """ |
| 47 | + |
| 48 | + |
| 49 | + endpoints?: [ExternaldnsK8sIoV1alpha1DNSEndpointSpecEndpointsItems0] |
| 50 | + |
| 51 | + |
| 52 | +schema ExternaldnsK8sIoV1alpha1DNSEndpointSpecEndpointsItems0: |
| 53 | + r""" |
| 54 | + Endpoint is a high-level way of a connection between a service and an IP |
| 55 | + |
| 56 | + Attributes |
| 57 | + ---------- |
| 58 | + dnsName : str, default is Undefined, optional |
| 59 | + The hostname of the DNS record |
| 60 | + labels : {str:str}, default is Undefined, optional |
| 61 | + Labels stores labels defined for the Endpoint |
| 62 | + providerSpecific : [ExternaldnsK8sIoV1alpha1DNSEndpointSpecEndpointsItems0ProviderSpecificItems0], default is Undefined, optional |
| 63 | + ProviderSpecific stores provider specific config |
| 64 | + recordTTL : int, default is Undefined, optional |
| 65 | + TTL for the record |
| 66 | + recordType : str, default is Undefined, optional |
| 67 | + RecordType type of record, e.g. CNAME, A, AAAA, SRV, TXT etc |
| 68 | + setIdentifier : str, default is Undefined, optional |
| 69 | + Identifier to distinguish multiple records with the same name and type (e.g. Route53 records with routing policies other than 'simple') |
| 70 | + targets : [str], default is Undefined, optional |
| 71 | + The targets the DNS record points to |
| 72 | + """ |
| 73 | + |
| 74 | + |
| 75 | + dnsName?: str |
| 76 | + |
| 77 | + labels?: {str:str} |
| 78 | + |
| 79 | + providerSpecific?: [ExternaldnsK8sIoV1alpha1DNSEndpointSpecEndpointsItems0ProviderSpecificItems0] |
| 80 | + |
| 81 | + recordTTL?: int |
| 82 | + |
| 83 | + recordType?: str |
| 84 | + |
| 85 | + setIdentifier?: str |
| 86 | + |
| 87 | + targets?: [str] |
| 88 | + |
| 89 | + |
| 90 | +schema ExternaldnsK8sIoV1alpha1DNSEndpointSpecEndpointsItems0ProviderSpecificItems0: |
| 91 | + r""" |
| 92 | + ProviderSpecificProperty holds the name and value of a configuration which is specific to individual DNS providers |
| 93 | + |
| 94 | + Attributes |
| 95 | + ---------- |
| 96 | + name : str, default is Undefined, optional |
| 97 | + name |
| 98 | + value : str, default is Undefined, optional |
| 99 | + value |
| 100 | + """ |
| 101 | + |
| 102 | + |
| 103 | + name?: str |
| 104 | + |
| 105 | + value?: str |
| 106 | + |
| 107 | + |
| 108 | +schema ExternaldnsK8sIoV1alpha1DNSEndpointStatus: |
| 109 | + r""" |
| 110 | + DNSEndpointStatus defines the observed state of DNSEndpoint |
| 111 | + |
| 112 | + Attributes |
| 113 | + ---------- |
| 114 | + observedGeneration : int, default is Undefined, optional |
| 115 | + The generation observed by the external-dns controller. |
| 116 | + """ |
| 117 | + |
| 118 | + |
| 119 | + observedGeneration?: int |
| 120 | + |
| 121 | + |
0 commit comments