v1beta1

package
v1.116.0 Latest Latest
Warning

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

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

Documentation

Overview

Generate deepcopy object for tags/v1beta1 API group

Package v1beta1 contains API Schema definitions for the tags v1beta1 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/tags +k8s:defaulter-gen=TypeMeta +groupName=tags.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: "tags.cnrm.cloud.google.com", Version: "v1beta1"}

	// 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

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

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

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

Functions

This section is empty.

Types

type TagsTagBinding added in v1.100.0

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

	Spec   TagsTagBindingSpec   `json:"spec,omitempty"`
	Status TagsTagBindingStatus `json:"status,omitempty"`
}

TagsTagBinding is the Schema for the tags API +k8s:openapi-gen=true

func (*TagsTagBinding) DeepCopy added in v1.100.0

func (in *TagsTagBinding) DeepCopy() *TagsTagBinding

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

func (*TagsTagBinding) DeepCopyInto added in v1.100.0

func (in *TagsTagBinding) DeepCopyInto(out *TagsTagBinding)

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

func (*TagsTagBinding) DeepCopyObject added in v1.100.0

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

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

type TagsTagBindingList added in v1.100.0

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

TagsTagBindingList contains a list of TagsTagBinding

func (*TagsTagBindingList) DeepCopy added in v1.100.0

func (in *TagsTagBindingList) DeepCopy() *TagsTagBindingList

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

func (*TagsTagBindingList) DeepCopyInto added in v1.100.0

func (in *TagsTagBindingList) DeepCopyInto(out *TagsTagBindingList)

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

func (*TagsTagBindingList) DeepCopyObject added in v1.100.0

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

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

type TagsTagBindingSpec added in v1.100.0

type TagsTagBindingSpec struct {
	ParentRef v1alpha1.ResourceRef `json:"parentRef"`

	/* Immutable. Optional. The service-generated name of the resource. Used for acquisition only. Leave unset to create a new resource. */
	// +optional
	ResourceID *string `json:"resourceID,omitempty"`

	TagValueRef v1alpha1.ResourceRef `json:"tagValueRef"`
}

func (*TagsTagBindingSpec) DeepCopy added in v1.100.0

func (in *TagsTagBindingSpec) DeepCopy() *TagsTagBindingSpec

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

func (*TagsTagBindingSpec) DeepCopyInto added in v1.100.0

func (in *TagsTagBindingSpec) DeepCopyInto(out *TagsTagBindingSpec)

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

type TagsTagBindingStatus added in v1.100.0

type TagsTagBindingStatus struct {
	/* Conditions represent the latest available observations of the
	   TagsTagBinding's current state. */
	Conditions []v1alpha1.Condition `json:"conditions,omitempty"`
	/* The generated id for the TagBinding. This is a string of the form: 'tagBindings/{full-resource-name}/{tag-value-name}'. */
	// +optional
	Name *string `json:"name,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 *int `json:"observedGeneration,omitempty"`
}

func (*TagsTagBindingStatus) DeepCopy added in v1.100.0

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

func (*TagsTagBindingStatus) DeepCopyInto added in v1.100.0

func (in *TagsTagBindingStatus) DeepCopyInto(out *TagsTagBindingStatus)

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

type TagsTagKey

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

	Spec   TagsTagKeySpec   `json:"spec,omitempty"`
	Status TagsTagKeyStatus `json:"status,omitempty"`
}

TagsTagKey is the Schema for the tags API +k8s:openapi-gen=true

func (*TagsTagKey) DeepCopy

func (in *TagsTagKey) DeepCopy() *TagsTagKey

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

func (*TagsTagKey) DeepCopyInto

func (in *TagsTagKey) DeepCopyInto(out *TagsTagKey)

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

func (*TagsTagKey) DeepCopyObject

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

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

type TagsTagKeyList

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

TagsTagKeyList contains a list of TagsTagKey

func (*TagsTagKeyList) DeepCopy

func (in *TagsTagKeyList) DeepCopy() *TagsTagKeyList

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

func (*TagsTagKeyList) DeepCopyInto

func (in *TagsTagKeyList) DeepCopyInto(out *TagsTagKeyList)

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

func (*TagsTagKeyList) DeepCopyObject

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

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

type TagsTagKeySpec

type TagsTagKeySpec struct {
	/* User-assigned description of the TagKey. Must not exceed 256 characters. */
	// +optional
	Description *string `json:"description,omitempty"`

	/* Immutable. Input only. The resource name of the new TagKey's parent. Must be of the form organizations/{org_id} or projects/{project_id_or_number}. */
	Parent string `json:"parent"`

	/* Immutable. Optional. A purpose cannot be changed once set.

	A purpose denotes that this Tag is intended for use in policies of a specific policy engine, and will involve that policy engine in management operations involving this Tag. Possible values: ["GCE_FIREWALL"]. */
	// +optional
	Purpose *string `json:"purpose,omitempty"`

	/* Immutable. Optional. Purpose data cannot be changed once set.

	Purpose data corresponds to the policy system that the tag is intended for. For example, the GCE_FIREWALL purpose expects data in the following format: 'network = "<project-name>/<vpc-name>"'. */
	// +optional
	PurposeData map[string]string `json:"purposeData,omitempty"`

	/* Immutable. Optional. The service-generated name of the resource. Used for acquisition only. Leave unset to create a new resource. */
	// +optional
	ResourceID *string `json:"resourceID,omitempty"`

	/* Immutable. Input only. The user friendly name for a TagKey. The short name should be unique for TagKeys within the same tag namespace.

	The short name must be 1-63 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between. */
	ShortName string `json:"shortName"`
}

func (*TagsTagKeySpec) DeepCopy

func (in *TagsTagKeySpec) DeepCopy() *TagsTagKeySpec

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

func (*TagsTagKeySpec) DeepCopyInto

func (in *TagsTagKeySpec) DeepCopyInto(out *TagsTagKeySpec)

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

type TagsTagKeyStatus

type TagsTagKeyStatus struct {
	/* Conditions represent the latest available observations of the
	   TagsTagKey's current state. */
	Conditions []v1alpha1.Condition `json:"conditions,omitempty"`
	/* Output only. Creation time.

	A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z". */
	// +optional
	CreateTime *string `json:"createTime,omitempty"`

	/* The generated numeric id for the TagKey. */
	// +optional
	Name *string `json:"name,omitempty"`

	/* Output only. Namespaced name of the TagKey. */
	// +optional
	NamespacedName *string `json:"namespacedName,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 *int `json:"observedGeneration,omitempty"`

	/* Output only. Update time.

	A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z". */
	// +optional
	UpdateTime *string `json:"updateTime,omitempty"`
}

func (*TagsTagKeyStatus) DeepCopy

func (in *TagsTagKeyStatus) DeepCopy() *TagsTagKeyStatus

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

func (*TagsTagKeyStatus) DeepCopyInto

func (in *TagsTagKeyStatus) DeepCopyInto(out *TagsTagKeyStatus)

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

type TagsTagValue

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

	Spec   TagsTagValueSpec   `json:"spec,omitempty"`
	Status TagsTagValueStatus `json:"status,omitempty"`
}

TagsTagValue is the Schema for the tags API +k8s:openapi-gen=true

func (*TagsTagValue) DeepCopy

func (in *TagsTagValue) DeepCopy() *TagsTagValue

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

func (*TagsTagValue) DeepCopyInto

func (in *TagsTagValue) DeepCopyInto(out *TagsTagValue)

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

func (*TagsTagValue) DeepCopyObject

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

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

type TagsTagValueList

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

TagsTagValueList contains a list of TagsTagValue

func (*TagsTagValueList) DeepCopy

func (in *TagsTagValueList) DeepCopy() *TagsTagValueList

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

func (*TagsTagValueList) DeepCopyInto

func (in *TagsTagValueList) DeepCopyInto(out *TagsTagValueList)

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

func (*TagsTagValueList) DeepCopyObject

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

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

type TagsTagValueSpec

type TagsTagValueSpec struct {
	/* User-assigned description of the TagValue. Must not exceed 256 characters. */
	// +optional
	Description *string `json:"description,omitempty"`

	ParentRef v1alpha1.ResourceRef `json:"parentRef"`

	/* Immutable. Optional. The service-generated name of the resource. Used for acquisition only. Leave unset to create a new resource. */
	// +optional
	ResourceID *string `json:"resourceID,omitempty"`

	/* Immutable. Input only. User-assigned short name for TagValue. The short name should be unique for TagValues within the same parent TagKey.

	The short name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between. */
	ShortName string `json:"shortName"`
}

func (*TagsTagValueSpec) DeepCopy

func (in *TagsTagValueSpec) DeepCopy() *TagsTagValueSpec

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

func (*TagsTagValueSpec) DeepCopyInto

func (in *TagsTagValueSpec) DeepCopyInto(out *TagsTagValueSpec)

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

type TagsTagValueStatus

type TagsTagValueStatus struct {
	/* Conditions represent the latest available observations of the
	   TagsTagValue's current state. */
	Conditions []v1alpha1.Condition `json:"conditions,omitempty"`
	/* Output only. Creation time.

	A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z". */
	// +optional
	CreateTime *string `json:"createTime,omitempty"`

	/* The generated numeric id for the TagValue. */
	// +optional
	Name *string `json:"name,omitempty"`

	/* Output only. Namespaced name of the TagValue. Will be in the format {parentNamespace}/{tagKeyShortName}/{shortName}. */
	// +optional
	NamespacedName *string `json:"namespacedName,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 *int `json:"observedGeneration,omitempty"`

	/* Output only. Update time.
	A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z". */
	// +optional
	UpdateTime *string `json:"updateTime,omitempty"`
}

func (*TagsTagValueStatus) DeepCopy

func (in *TagsTagValueStatus) DeepCopy() *TagsTagValueStatus

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

func (*TagsTagValueStatus) DeepCopyInto

func (in *TagsTagValueStatus) DeepCopyInto(out *TagsTagValueStatus)

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