/* Copyright 2024 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // +k8s:validation-gen=TypeMeta // +k8s:validation-gen-scheme-registry=k8s.io/code-generator/cmd/validation-gen/testscheme.Scheme // This is a test package. package nested_union import "k8s.io/code-generator/cmd/validation-gen/testscheme" var localSchemeBuilder = testscheme.New() // IntegerValue represents a device attribute with an integer value. type IntegerValue struct { Value int64 `json:"value,omitempty"` Unit string `json:"unit,omitempty"` // e.g., "MBps" } // StringValue represents a device attribute with a string value. type StringValue struct { Value string `json:"value,omitempty"` Format string `json:"format,omitempty"` // e.g., "UUID" } // NullValue represents the case where the DeviceAttribute is explicitly null. type NullValue struct{} // DeviceAttribute represents an attribute of a device. It's a union of different value types. type DeviceAttribute struct { // +k8s:unionMember IntegerValue *IntegerValue `json:"integerValue,omitempty"` // +k8s:unionMember StringValue *StringValue `json:"stringValue,omitempty"` } // NullableDeviceAttribute can be either a concrete DeviceAttribute or explicitly null. type NullableDeviceAttribute struct { TypeMeta int // Embed DeviceAttribute - this will be flattened in OpenAPI DeviceAttribute `json:",inline"` // +k8s:unionMember NullValue *NullValue `json:"nullValue,omitempty"` }