Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ExampleSpec (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/cr/v1/examplespec.go

    // ExampleSpecApplyConfiguration represents an declarative configuration of the ExampleSpec type for use
    // with apply.
    type ExampleSpecApplyConfiguration struct {
    	Foo *string `json:"foo,omitempty"`
    	Bar *bool   `json:"bar,omitempty"`
    }
    
    // ExampleSpecApplyConfiguration constructs an declarative configuration of the ExampleSpec type for use with
    // apply.
    func ExampleSpec() *ExampleSpecApplyConfiguration {
    	return &ExampleSpecApplyConfiguration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 10:01:37 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1/zz_generated.deepcopy.go

    func (in *ExampleSpec) DeepCopyInto(out *ExampleSpec) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExampleSpec.
    func (in *ExampleSpec) DeepCopy() *ExampleSpec {
    	if in == nil {
    		return nil
    	}
    	out := new(ExampleSpec)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1/types.go

    type Example struct {
    	metav1.TypeMeta   `json:",inline"`
    	metav1.ObjectMeta `json:"metadata"`
    
    	Spec   ExampleSpec   `json:"spec"`
    	Status ExampleStatus `json:"status,omitempty"`
    }
    
    // ExampleSpec is the spec for an Example resource
    type ExampleSpec struct {
    	Foo string `json:"foo"`
    	Bar bool   `json:"bar"`
    }
    
    // ExampleStatus is the status for an Example resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 05 09:07:27 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/utils.go

    	switch kind {
    	// Group=cr.example.apiextensions.k8s.io, Version=v1
    	case v1.SchemeGroupVersion.WithKind("Example"):
    		return &crv1.ExampleApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("ExampleSpec"):
    		return &crv1.ExampleSpecApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("ExampleStatus"):
    		return &crv1.ExampleStatusApplyConfiguration{}
    
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 10:01:37 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top