v1alpha1

package
v1.120.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 3, 2024 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Overview

Generate deepcopy object for securesourcemanager/v1alpha1 API group

Package v1alpha1 contains API Schema definitions for the securesourcemanager v1alpha1 API group. +k8s:openapi-gen=true +k8s:deepcopy-gen=package,register +k8s:conversion-gen=github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/pkg/apis/securesourcemanager +k8s:defaulter-gen=TypeMeta +groupName=securesourcemanager.cnrm.cloud.google.com

Index

Constants

This section is empty.

Variables

View Source
var (
	// SchemeGroupVersion is the group version used to register these objects.
	SchemeGroupVersion = schema.GroupVersion{Group: "securesourcemanager.cnrm.cloud.google.com", Version: "v1alpha1"}

	// SchemeBuilder is used to add go types to the GroupVersionKind scheme.
	SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion}

	// AddToScheme is a global function that registers this API group & version to a scheme
	AddToScheme = SchemeBuilder.AddToScheme

	SecureSourceManagerInstanceGVK = schema.GroupVersionKind{
		Group:   SchemeGroupVersion.Group,
		Version: SchemeGroupVersion.Version,
		Kind:    reflect.TypeOf(SecureSourceManagerInstance{}).Name(),
	}
)

Functions

This section is empty.

Types

type InstanceHostConfigStatus

type InstanceHostConfigStatus struct {
	/* Output only. API hostname. This is the hostname to use for **Host: Data Plane** endpoints. */
	// +optional
	Api *string `json:"api,omitempty"`

	/* Output only. Git HTTP hostname. */
	// +optional
	GitHttp *string `json:"gitHttp,omitempty"`

	/* Output only. Git SSH hostname. */
	// +optional
	GitSsh *string `json:"gitSsh,omitempty"`

	/* Output only. HTML hostname. */
	// +optional
	Html *string `json:"html,omitempty"`
}

func (*InstanceHostConfigStatus) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstanceHostConfigStatus.

func (*InstanceHostConfigStatus) DeepCopyInto

func (in *InstanceHostConfigStatus) DeepCopyInto(out *InstanceHostConfigStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type InstanceObservedStateStatus

type InstanceObservedStateStatus struct {
	/* Output only. A list of hostnames for this instance. */
	// +optional
	HostConfig *InstanceHostConfigStatus `json:"hostConfig,omitempty"`

	/* Output only. Current state of the instance. */
	// +optional
	State *string `json:"state,omitempty"`

	/* Output only. An optional field providing information about the current instance state. */
	// +optional
	StateNote *string `json:"stateNote,omitempty"`
}

func (*InstanceObservedStateStatus) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstanceObservedStateStatus.

func (*InstanceObservedStateStatus) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SecureSourceManagerInstance

type SecureSourceManagerInstance struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`

	Spec   SecureSourceManagerInstanceSpec   `json:"spec,omitempty"`
	Status SecureSourceManagerInstanceStatus `json:"status,omitempty"`
}

SecureSourceManagerInstance is the Schema for the securesourcemanager API +k8s:openapi-gen=true

func (*SecureSourceManagerInstance) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecureSourceManagerInstance.

func (*SecureSourceManagerInstance) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SecureSourceManagerInstance) DeepCopyObject

func (in *SecureSourceManagerInstance) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type SecureSourceManagerInstanceList

type SecureSourceManagerInstanceList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []SecureSourceManagerInstance `json:"items"`
}

SecureSourceManagerInstanceList contains a list of SecureSourceManagerInstance

func (*SecureSourceManagerInstanceList) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecureSourceManagerInstanceList.

func (*SecureSourceManagerInstanceList) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*SecureSourceManagerInstanceList) DeepCopyObject

func (in *SecureSourceManagerInstanceList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type SecureSourceManagerInstanceSpec

type SecureSourceManagerInstanceSpec struct {
	/* Optional. Immutable. Customer-managed encryption key name, in the format projects/* /locations/* /keyRings/* /cryptoKeys/*. */
	// +optional
	KmsKey *string `json:"kmsKey,omitempty"`

	/* Optional. Labels as key value pairs. */
	// +optional
	Labels map[string]string `json:"labels,omitempty"`

	/* Immutable. Location of the instance. */
	Location string `json:"location"`

	/* Immutable. The Project that this resource belongs to. */
	ProjectRef v1alpha1.ResourceRef `json:"projectRef"`

	/* Immutable. Optional. The name of the resource. Used for creation and acquisition. When unset, the value of `metadata.name` is used as the default. */
	// +optional
	ResourceID *string `json:"resourceID,omitempty"`
}

func (*SecureSourceManagerInstanceSpec) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecureSourceManagerInstanceSpec.

func (*SecureSourceManagerInstanceSpec) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SecureSourceManagerInstanceStatus

type SecureSourceManagerInstanceStatus struct {
	/* Conditions represent the latest available observations of the
	   SecureSourceManagerInstance's current state. */
	Conditions []v1alpha1.Condition `json:"conditions,omitempty"`
	/* ObservedGeneration is the generation of the resource that was most recently observed by the Config Connector controller. If this is equal to metadata.generation, then that means that the current reported status reflects the most recent desired state of the resource. */
	// +optional
	ObservedGeneration *int64 `json:"observedGeneration,omitempty"`

	/* ObservedState is the latest GCP state. */
	// +optional
	ObservedState *InstanceObservedStateStatus `json:"observedState,omitempty"`
}

func (*SecureSourceManagerInstanceStatus) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecureSourceManagerInstanceStatus.

func (*SecureSourceManagerInstanceStatus) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL