v1alpha1

package
v0.3.0-preview Latest Latest
Warning

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

Go to latest
Published: Sep 22, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=sourcerepo.gcp.jet.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "sourcerepo.gcp.jet.crossplane.io"
	CRDVersion = "v1alpha1"
)

Package type metadata.

Variables

View Source
var (
	// CRDGroupVersion is the API Group Version used to register the objects
	CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion}

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

	// AddToScheme adds the types in this group-version to the given scheme.
	AddToScheme = SchemeBuilder.AddToScheme
)
View Source
var (
	Repository_Kind             = "Repository"
	Repository_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Repository_Kind}.String()
	Repository_KindAPIVersion   = Repository_Kind + "." + CRDGroupVersion.String()
	Repository_GroupVersionKind = CRDGroupVersion.WithKind(Repository_Kind)
)

Repository type metadata.

View Source
var (
	RepositoryIAMBinding_Kind             = "RepositoryIAMBinding"
	RepositoryIAMBinding_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: RepositoryIAMBinding_Kind}.String()
	RepositoryIAMBinding_KindAPIVersion   = RepositoryIAMBinding_Kind + "." + CRDGroupVersion.String()
	RepositoryIAMBinding_GroupVersionKind = CRDGroupVersion.WithKind(RepositoryIAMBinding_Kind)
)

Repository type metadata.

View Source
var (
	RepositoryIAMMember_Kind             = "RepositoryIAMMember"
	RepositoryIAMMember_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: RepositoryIAMMember_Kind}.String()
	RepositoryIAMMember_KindAPIVersion   = RepositoryIAMMember_Kind + "." + CRDGroupVersion.String()
	RepositoryIAMMember_GroupVersionKind = CRDGroupVersion.WithKind(RepositoryIAMMember_Kind)
)

Repository type metadata.

View Source
var (
	RepositoryIAMPolicy_Kind             = "RepositoryIAMPolicy"
	RepositoryIAMPolicy_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: RepositoryIAMPolicy_Kind}.String()
	RepositoryIAMPolicy_KindAPIVersion   = RepositoryIAMPolicy_Kind + "." + CRDGroupVersion.String()
	RepositoryIAMPolicy_GroupVersionKind = CRDGroupVersion.WithKind(RepositoryIAMPolicy_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type ConditionObservation

type ConditionObservation struct {
}

func (*ConditionObservation) DeepCopy

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

func (*ConditionObservation) DeepCopyInto

func (in *ConditionObservation) DeepCopyInto(out *ConditionObservation)

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

type ConditionParameters

type ConditionParameters struct {

	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// +kubebuilder:validation:Required
	Expression *string `json:"expression" tf:"expression,omitempty"`

	// +kubebuilder:validation:Required
	Title *string `json:"title" tf:"title,omitempty"`
}

func (*ConditionParameters) DeepCopy

func (in *ConditionParameters) DeepCopy() *ConditionParameters

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

func (*ConditionParameters) DeepCopyInto

func (in *ConditionParameters) DeepCopyInto(out *ConditionParameters)

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

type PubsubConfigsObservation

type PubsubConfigsObservation struct {
}

func (*PubsubConfigsObservation) DeepCopy

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

func (*PubsubConfigsObservation) DeepCopyInto

func (in *PubsubConfigsObservation) DeepCopyInto(out *PubsubConfigsObservation)

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

type PubsubConfigsParameters

type PubsubConfigsParameters struct {

	// The format of the Cloud Pub/Sub messages.
	// - PROTOBUF: The message payload is a serialized protocol buffer of SourceRepoEvent.
	// - JSON: The message payload is a JSON string of SourceRepoEvent. Possible values: ["PROTOBUF", "JSON"]
	// +kubebuilder:validation:Required
	MessageFormat *string `json:"messageFormat" tf:"message_format,omitempty"`

	// Email address of the service account used for publishing Cloud Pub/Sub messages.
	// This service account needs to be in the same project as the PubsubConfig. When added,
	// the caller needs to have iam.serviceAccounts.actAs permission on this service account.
	// If unspecified, it defaults to the compute engine default service account.
	// +kubebuilder:validation:Optional
	ServiceAccountEmail *string `json:"serviceAccountEmail,omitempty" tf:"service_account_email,omitempty"`

	// +kubebuilder:validation:Required
	Topic *string `json:"topic" tf:"topic,omitempty"`
}

func (*PubsubConfigsParameters) DeepCopy

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

func (*PubsubConfigsParameters) DeepCopyInto

func (in *PubsubConfigsParameters) DeepCopyInto(out *PubsubConfigsParameters)

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

type Repository

type Repository struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              RepositorySpec   `json:"spec"`
	Status            RepositoryStatus `json:"status,omitempty"`
}

Repository is the Schema for the Repositorys API +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,gcpjet}

func (*Repository) DeepCopy

func (in *Repository) DeepCopy() *Repository

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

func (*Repository) DeepCopyInto

func (in *Repository) DeepCopyInto(out *Repository)

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

func (*Repository) DeepCopyObject

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

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

func (*Repository) GetCondition

func (mg *Repository) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this Repository.

func (*Repository) GetConnectionDetailsMapping

func (tr *Repository) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this Repository

func (*Repository) GetDeletionPolicy

func (mg *Repository) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this Repository.

func (*Repository) GetID

func (tr *Repository) GetID() string

GetID returns ID of underlying Terraform resource of this Repository

func (*Repository) GetObservation

func (tr *Repository) GetObservation() (map[string]interface{}, error)

GetObservation of this Repository

func (*Repository) GetParameters

func (tr *Repository) GetParameters() (map[string]interface{}, error)

GetParameters of this Repository

func (*Repository) GetProviderConfigReference

func (mg *Repository) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this Repository.

func (*Repository) GetProviderReference

func (mg *Repository) GetProviderReference() *xpv1.Reference

GetProviderReference of this Repository. Deprecated: Use GetProviderConfigReference.

func (*Repository) GetPublishConnectionDetailsTo

func (mg *Repository) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this Repository.

func (*Repository) GetTerraformResourceType

func (mg *Repository) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Repository

func (*Repository) GetTerraformSchemaVersion

func (tr *Repository) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Repository) GetWriteConnectionSecretToReference

func (mg *Repository) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this Repository.

func (*Repository) LateInitialize

func (tr *Repository) LateInitialize(attrs []byte) (bool, error)

LateInitialize this Repository using its observed tfState. returns True if there are any spec changes for the resource.

func (*Repository) SetConditions

func (mg *Repository) SetConditions(c ...xpv1.Condition)

SetConditions of this Repository.

func (*Repository) SetDeletionPolicy

func (mg *Repository) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this Repository.

func (*Repository) SetObservation

func (tr *Repository) SetObservation(obs map[string]interface{}) error

SetObservation for this Repository

func (*Repository) SetParameters

func (tr *Repository) SetParameters(params map[string]interface{}) error

SetParameters for this Repository

func (*Repository) SetProviderConfigReference

func (mg *Repository) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this Repository.

func (*Repository) SetProviderReference

func (mg *Repository) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this Repository. Deprecated: Use SetProviderConfigReference.

func (*Repository) SetPublishConnectionDetailsTo

func (mg *Repository) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this Repository.

func (*Repository) SetWriteConnectionSecretToReference

func (mg *Repository) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this Repository.

type RepositoryIAMBinding

type RepositoryIAMBinding struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              RepositoryIAMBindingSpec   `json:"spec"`
	Status            RepositoryIAMBindingStatus `json:"status,omitempty"`
}

RepositoryIAMBinding is the Schema for the RepositoryIAMBindings API +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,gcpjet}

func (*RepositoryIAMBinding) DeepCopy

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

func (*RepositoryIAMBinding) DeepCopyInto

func (in *RepositoryIAMBinding) DeepCopyInto(out *RepositoryIAMBinding)

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

func (*RepositoryIAMBinding) DeepCopyObject

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

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

func (*RepositoryIAMBinding) GetCondition

func (mg *RepositoryIAMBinding) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this RepositoryIAMBinding.

func (*RepositoryIAMBinding) GetConnectionDetailsMapping

func (tr *RepositoryIAMBinding) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this RepositoryIAMBinding

func (*RepositoryIAMBinding) GetDeletionPolicy

func (mg *RepositoryIAMBinding) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this RepositoryIAMBinding.

func (*RepositoryIAMBinding) GetID

func (tr *RepositoryIAMBinding) GetID() string

GetID returns ID of underlying Terraform resource of this RepositoryIAMBinding

func (*RepositoryIAMBinding) GetObservation

func (tr *RepositoryIAMBinding) GetObservation() (map[string]interface{}, error)

GetObservation of this RepositoryIAMBinding

func (*RepositoryIAMBinding) GetParameters

func (tr *RepositoryIAMBinding) GetParameters() (map[string]interface{}, error)

GetParameters of this RepositoryIAMBinding

func (*RepositoryIAMBinding) GetProviderConfigReference

func (mg *RepositoryIAMBinding) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this RepositoryIAMBinding.

func (*RepositoryIAMBinding) GetProviderReference

func (mg *RepositoryIAMBinding) GetProviderReference() *xpv1.Reference

GetProviderReference of this RepositoryIAMBinding. Deprecated: Use GetProviderConfigReference.

func (*RepositoryIAMBinding) GetPublishConnectionDetailsTo

func (mg *RepositoryIAMBinding) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this RepositoryIAMBinding.

func (*RepositoryIAMBinding) GetTerraformResourceType

func (mg *RepositoryIAMBinding) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this RepositoryIAMBinding

func (*RepositoryIAMBinding) GetTerraformSchemaVersion

func (tr *RepositoryIAMBinding) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*RepositoryIAMBinding) GetWriteConnectionSecretToReference

func (mg *RepositoryIAMBinding) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this RepositoryIAMBinding.

func (*RepositoryIAMBinding) LateInitialize

func (tr *RepositoryIAMBinding) LateInitialize(attrs []byte) (bool, error)

LateInitialize this RepositoryIAMBinding using its observed tfState. returns True if there are any spec changes for the resource.

func (*RepositoryIAMBinding) SetConditions

func (mg *RepositoryIAMBinding) SetConditions(c ...xpv1.Condition)

SetConditions of this RepositoryIAMBinding.

func (*RepositoryIAMBinding) SetDeletionPolicy

func (mg *RepositoryIAMBinding) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this RepositoryIAMBinding.

func (*RepositoryIAMBinding) SetObservation

func (tr *RepositoryIAMBinding) SetObservation(obs map[string]interface{}) error

SetObservation for this RepositoryIAMBinding

func (*RepositoryIAMBinding) SetParameters

func (tr *RepositoryIAMBinding) SetParameters(params map[string]interface{}) error

SetParameters for this RepositoryIAMBinding

func (*RepositoryIAMBinding) SetProviderConfigReference

func (mg *RepositoryIAMBinding) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this RepositoryIAMBinding.

func (*RepositoryIAMBinding) SetProviderReference

func (mg *RepositoryIAMBinding) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this RepositoryIAMBinding. Deprecated: Use SetProviderConfigReference.

func (*RepositoryIAMBinding) SetPublishConnectionDetailsTo

func (mg *RepositoryIAMBinding) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this RepositoryIAMBinding.

func (*RepositoryIAMBinding) SetWriteConnectionSecretToReference

func (mg *RepositoryIAMBinding) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this RepositoryIAMBinding.

type RepositoryIAMBindingList

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

RepositoryIAMBindingList contains a list of RepositoryIAMBindings

func (*RepositoryIAMBindingList) DeepCopy

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

func (*RepositoryIAMBindingList) DeepCopyInto

func (in *RepositoryIAMBindingList) DeepCopyInto(out *RepositoryIAMBindingList)

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

func (*RepositoryIAMBindingList) DeepCopyObject

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

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

func (*RepositoryIAMBindingList) GetItems

func (l *RepositoryIAMBindingList) GetItems() []resource.Managed

GetItems of this RepositoryIAMBindingList.

type RepositoryIAMBindingObservation

type RepositoryIAMBindingObservation struct {
	Etag *string `json:"etag,omitempty" tf:"etag,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`
}

func (*RepositoryIAMBindingObservation) DeepCopy

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

func (*RepositoryIAMBindingObservation) DeepCopyInto

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

type RepositoryIAMBindingParameters

type RepositoryIAMBindingParameters struct {

	// +kubebuilder:validation:Optional
	Condition []ConditionParameters `json:"condition,omitempty" tf:"condition,omitempty"`

	// +kubebuilder:validation:Required
	Members []*string `json:"members" tf:"members,omitempty"`

	// +kubebuilder:validation:Optional
	Project *string `json:"project,omitempty" tf:"project,omitempty"`

	// +kubebuilder:validation:Required
	Repository *string `json:"repository" tf:"repository,omitempty"`

	// +kubebuilder:validation:Required
	Role *string `json:"role" tf:"role,omitempty"`
}

func (*RepositoryIAMBindingParameters) DeepCopy

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

func (*RepositoryIAMBindingParameters) DeepCopyInto

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

type RepositoryIAMBindingSpec

type RepositoryIAMBindingSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     RepositoryIAMBindingParameters `json:"forProvider"`
}

RepositoryIAMBindingSpec defines the desired state of RepositoryIAMBinding

func (*RepositoryIAMBindingSpec) DeepCopy

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

func (*RepositoryIAMBindingSpec) DeepCopyInto

func (in *RepositoryIAMBindingSpec) DeepCopyInto(out *RepositoryIAMBindingSpec)

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

type RepositoryIAMBindingStatus

type RepositoryIAMBindingStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        RepositoryIAMBindingObservation `json:"atProvider,omitempty"`
}

RepositoryIAMBindingStatus defines the observed state of RepositoryIAMBinding.

func (*RepositoryIAMBindingStatus) DeepCopy

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

func (*RepositoryIAMBindingStatus) DeepCopyInto

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

type RepositoryIAMMember

type RepositoryIAMMember struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              RepositoryIAMMemberSpec   `json:"spec"`
	Status            RepositoryIAMMemberStatus `json:"status,omitempty"`
}

RepositoryIAMMember is the Schema for the RepositoryIAMMembers API +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,gcpjet}

func (*RepositoryIAMMember) DeepCopy

func (in *RepositoryIAMMember) DeepCopy() *RepositoryIAMMember

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

func (*RepositoryIAMMember) DeepCopyInto

func (in *RepositoryIAMMember) DeepCopyInto(out *RepositoryIAMMember)

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

func (*RepositoryIAMMember) DeepCopyObject

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

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

func (*RepositoryIAMMember) GetCondition

func (mg *RepositoryIAMMember) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this RepositoryIAMMember.

func (*RepositoryIAMMember) GetConnectionDetailsMapping

func (tr *RepositoryIAMMember) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this RepositoryIAMMember

func (*RepositoryIAMMember) GetDeletionPolicy

func (mg *RepositoryIAMMember) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this RepositoryIAMMember.

func (*RepositoryIAMMember) GetID

func (tr *RepositoryIAMMember) GetID() string

GetID returns ID of underlying Terraform resource of this RepositoryIAMMember

func (*RepositoryIAMMember) GetObservation

func (tr *RepositoryIAMMember) GetObservation() (map[string]interface{}, error)

GetObservation of this RepositoryIAMMember

func (*RepositoryIAMMember) GetParameters

func (tr *RepositoryIAMMember) GetParameters() (map[string]interface{}, error)

GetParameters of this RepositoryIAMMember

func (*RepositoryIAMMember) GetProviderConfigReference

func (mg *RepositoryIAMMember) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this RepositoryIAMMember.

func (*RepositoryIAMMember) GetProviderReference

func (mg *RepositoryIAMMember) GetProviderReference() *xpv1.Reference

GetProviderReference of this RepositoryIAMMember. Deprecated: Use GetProviderConfigReference.

func (*RepositoryIAMMember) GetPublishConnectionDetailsTo

func (mg *RepositoryIAMMember) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this RepositoryIAMMember.

func (*RepositoryIAMMember) GetTerraformResourceType

func (mg *RepositoryIAMMember) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this RepositoryIAMMember

func (*RepositoryIAMMember) GetTerraformSchemaVersion

func (tr *RepositoryIAMMember) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*RepositoryIAMMember) GetWriteConnectionSecretToReference

func (mg *RepositoryIAMMember) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this RepositoryIAMMember.

func (*RepositoryIAMMember) LateInitialize

func (tr *RepositoryIAMMember) LateInitialize(attrs []byte) (bool, error)

LateInitialize this RepositoryIAMMember using its observed tfState. returns True if there are any spec changes for the resource.

func (*RepositoryIAMMember) SetConditions

func (mg *RepositoryIAMMember) SetConditions(c ...xpv1.Condition)

SetConditions of this RepositoryIAMMember.

func (*RepositoryIAMMember) SetDeletionPolicy

func (mg *RepositoryIAMMember) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this RepositoryIAMMember.

func (*RepositoryIAMMember) SetObservation

func (tr *RepositoryIAMMember) SetObservation(obs map[string]interface{}) error

SetObservation for this RepositoryIAMMember

func (*RepositoryIAMMember) SetParameters

func (tr *RepositoryIAMMember) SetParameters(params map[string]interface{}) error

SetParameters for this RepositoryIAMMember

func (*RepositoryIAMMember) SetProviderConfigReference

func (mg *RepositoryIAMMember) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this RepositoryIAMMember.

func (*RepositoryIAMMember) SetProviderReference

func (mg *RepositoryIAMMember) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this RepositoryIAMMember. Deprecated: Use SetProviderConfigReference.

func (*RepositoryIAMMember) SetPublishConnectionDetailsTo

func (mg *RepositoryIAMMember) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this RepositoryIAMMember.

func (*RepositoryIAMMember) SetWriteConnectionSecretToReference

func (mg *RepositoryIAMMember) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this RepositoryIAMMember.

type RepositoryIAMMemberConditionObservation

type RepositoryIAMMemberConditionObservation struct {
}

func (*RepositoryIAMMemberConditionObservation) DeepCopy

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

func (*RepositoryIAMMemberConditionObservation) DeepCopyInto

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

type RepositoryIAMMemberConditionParameters

type RepositoryIAMMemberConditionParameters struct {

	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// +kubebuilder:validation:Required
	Expression *string `json:"expression" tf:"expression,omitempty"`

	// +kubebuilder:validation:Required
	Title *string `json:"title" tf:"title,omitempty"`
}

func (*RepositoryIAMMemberConditionParameters) DeepCopy

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

func (*RepositoryIAMMemberConditionParameters) DeepCopyInto

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

type RepositoryIAMMemberList

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

RepositoryIAMMemberList contains a list of RepositoryIAMMembers

func (*RepositoryIAMMemberList) DeepCopy

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

func (*RepositoryIAMMemberList) DeepCopyInto

func (in *RepositoryIAMMemberList) DeepCopyInto(out *RepositoryIAMMemberList)

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

func (*RepositoryIAMMemberList) DeepCopyObject

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

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

func (*RepositoryIAMMemberList) GetItems

func (l *RepositoryIAMMemberList) GetItems() []resource.Managed

GetItems of this RepositoryIAMMemberList.

type RepositoryIAMMemberObservation

type RepositoryIAMMemberObservation struct {
	Etag *string `json:"etag,omitempty" tf:"etag,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`
}

func (*RepositoryIAMMemberObservation) DeepCopy

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

func (*RepositoryIAMMemberObservation) DeepCopyInto

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

type RepositoryIAMMemberParameters

type RepositoryIAMMemberParameters struct {

	// +kubebuilder:validation:Optional
	Condition []RepositoryIAMMemberConditionParameters `json:"condition,omitempty" tf:"condition,omitempty"`

	// +kubebuilder:validation:Required
	Member *string `json:"member" tf:"member,omitempty"`

	// +kubebuilder:validation:Optional
	Project *string `json:"project,omitempty" tf:"project,omitempty"`

	// +kubebuilder:validation:Required
	Repository *string `json:"repository" tf:"repository,omitempty"`

	// +kubebuilder:validation:Required
	Role *string `json:"role" tf:"role,omitempty"`
}

func (*RepositoryIAMMemberParameters) DeepCopy

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

func (*RepositoryIAMMemberParameters) DeepCopyInto

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

type RepositoryIAMMemberSpec

type RepositoryIAMMemberSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     RepositoryIAMMemberParameters `json:"forProvider"`
}

RepositoryIAMMemberSpec defines the desired state of RepositoryIAMMember

func (*RepositoryIAMMemberSpec) DeepCopy

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

func (*RepositoryIAMMemberSpec) DeepCopyInto

func (in *RepositoryIAMMemberSpec) DeepCopyInto(out *RepositoryIAMMemberSpec)

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

type RepositoryIAMMemberStatus

type RepositoryIAMMemberStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        RepositoryIAMMemberObservation `json:"atProvider,omitempty"`
}

RepositoryIAMMemberStatus defines the observed state of RepositoryIAMMember.

func (*RepositoryIAMMemberStatus) DeepCopy

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

func (*RepositoryIAMMemberStatus) DeepCopyInto

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

type RepositoryIAMPolicy

type RepositoryIAMPolicy struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              RepositoryIAMPolicySpec   `json:"spec"`
	Status            RepositoryIAMPolicyStatus `json:"status,omitempty"`
}

RepositoryIAMPolicy is the Schema for the RepositoryIAMPolicys API +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,gcpjet}

func (*RepositoryIAMPolicy) DeepCopy

func (in *RepositoryIAMPolicy) DeepCopy() *RepositoryIAMPolicy

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

func (*RepositoryIAMPolicy) DeepCopyInto

func (in *RepositoryIAMPolicy) DeepCopyInto(out *RepositoryIAMPolicy)

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

func (*RepositoryIAMPolicy) DeepCopyObject

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

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

func (*RepositoryIAMPolicy) GetCondition

func (mg *RepositoryIAMPolicy) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this RepositoryIAMPolicy.

func (*RepositoryIAMPolicy) GetConnectionDetailsMapping

func (tr *RepositoryIAMPolicy) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this RepositoryIAMPolicy

func (*RepositoryIAMPolicy) GetDeletionPolicy

func (mg *RepositoryIAMPolicy) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this RepositoryIAMPolicy.

func (*RepositoryIAMPolicy) GetID

func (tr *RepositoryIAMPolicy) GetID() string

GetID returns ID of underlying Terraform resource of this RepositoryIAMPolicy

func (*RepositoryIAMPolicy) GetObservation

func (tr *RepositoryIAMPolicy) GetObservation() (map[string]interface{}, error)

GetObservation of this RepositoryIAMPolicy

func (*RepositoryIAMPolicy) GetParameters

func (tr *RepositoryIAMPolicy) GetParameters() (map[string]interface{}, error)

GetParameters of this RepositoryIAMPolicy

func (*RepositoryIAMPolicy) GetProviderConfigReference

func (mg *RepositoryIAMPolicy) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this RepositoryIAMPolicy.

func (*RepositoryIAMPolicy) GetProviderReference

func (mg *RepositoryIAMPolicy) GetProviderReference() *xpv1.Reference

GetProviderReference of this RepositoryIAMPolicy. Deprecated: Use GetProviderConfigReference.

func (*RepositoryIAMPolicy) GetPublishConnectionDetailsTo

func (mg *RepositoryIAMPolicy) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this RepositoryIAMPolicy.

func (*RepositoryIAMPolicy) GetTerraformResourceType

func (mg *RepositoryIAMPolicy) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this RepositoryIAMPolicy

func (*RepositoryIAMPolicy) GetTerraformSchemaVersion

func (tr *RepositoryIAMPolicy) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*RepositoryIAMPolicy) GetWriteConnectionSecretToReference

func (mg *RepositoryIAMPolicy) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this RepositoryIAMPolicy.

func (*RepositoryIAMPolicy) LateInitialize

func (tr *RepositoryIAMPolicy) LateInitialize(attrs []byte) (bool, error)

LateInitialize this RepositoryIAMPolicy using its observed tfState. returns True if there are any spec changes for the resource.

func (*RepositoryIAMPolicy) SetConditions

func (mg *RepositoryIAMPolicy) SetConditions(c ...xpv1.Condition)

SetConditions of this RepositoryIAMPolicy.

func (*RepositoryIAMPolicy) SetDeletionPolicy

func (mg *RepositoryIAMPolicy) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this RepositoryIAMPolicy.

func (*RepositoryIAMPolicy) SetObservation

func (tr *RepositoryIAMPolicy) SetObservation(obs map[string]interface{}) error

SetObservation for this RepositoryIAMPolicy

func (*RepositoryIAMPolicy) SetParameters

func (tr *RepositoryIAMPolicy) SetParameters(params map[string]interface{}) error

SetParameters for this RepositoryIAMPolicy

func (*RepositoryIAMPolicy) SetProviderConfigReference

func (mg *RepositoryIAMPolicy) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this RepositoryIAMPolicy.

func (*RepositoryIAMPolicy) SetProviderReference

func (mg *RepositoryIAMPolicy) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this RepositoryIAMPolicy. Deprecated: Use SetProviderConfigReference.

func (*RepositoryIAMPolicy) SetPublishConnectionDetailsTo

func (mg *RepositoryIAMPolicy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this RepositoryIAMPolicy.

func (*RepositoryIAMPolicy) SetWriteConnectionSecretToReference

func (mg *RepositoryIAMPolicy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this RepositoryIAMPolicy.

type RepositoryIAMPolicyList

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

RepositoryIAMPolicyList contains a list of RepositoryIAMPolicys

func (*RepositoryIAMPolicyList) DeepCopy

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

func (*RepositoryIAMPolicyList) DeepCopyInto

func (in *RepositoryIAMPolicyList) DeepCopyInto(out *RepositoryIAMPolicyList)

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

func (*RepositoryIAMPolicyList) DeepCopyObject

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

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

func (*RepositoryIAMPolicyList) GetItems

func (l *RepositoryIAMPolicyList) GetItems() []resource.Managed

GetItems of this RepositoryIAMPolicyList.

type RepositoryIAMPolicyObservation

type RepositoryIAMPolicyObservation struct {
	Etag *string `json:"etag,omitempty" tf:"etag,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`
}

func (*RepositoryIAMPolicyObservation) DeepCopy

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

func (*RepositoryIAMPolicyObservation) DeepCopyInto

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

type RepositoryIAMPolicyParameters

type RepositoryIAMPolicyParameters struct {

	// +kubebuilder:validation:Required
	PolicyData *string `json:"policyData" tf:"policy_data,omitempty"`

	// +kubebuilder:validation:Optional
	Project *string `json:"project,omitempty" tf:"project,omitempty"`

	// +kubebuilder:validation:Required
	Repository *string `json:"repository" tf:"repository,omitempty"`
}

func (*RepositoryIAMPolicyParameters) DeepCopy

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

func (*RepositoryIAMPolicyParameters) DeepCopyInto

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

type RepositoryIAMPolicySpec

type RepositoryIAMPolicySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     RepositoryIAMPolicyParameters `json:"forProvider"`
}

RepositoryIAMPolicySpec defines the desired state of RepositoryIAMPolicy

func (*RepositoryIAMPolicySpec) DeepCopy

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

func (*RepositoryIAMPolicySpec) DeepCopyInto

func (in *RepositoryIAMPolicySpec) DeepCopyInto(out *RepositoryIAMPolicySpec)

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

type RepositoryIAMPolicyStatus

type RepositoryIAMPolicyStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        RepositoryIAMPolicyObservation `json:"atProvider,omitempty"`
}

RepositoryIAMPolicyStatus defines the observed state of RepositoryIAMPolicy.

func (*RepositoryIAMPolicyStatus) DeepCopy

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

func (*RepositoryIAMPolicyStatus) DeepCopyInto

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

type RepositoryList

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

RepositoryList contains a list of Repositorys

func (*RepositoryList) DeepCopy

func (in *RepositoryList) DeepCopy() *RepositoryList

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

func (*RepositoryList) DeepCopyInto

func (in *RepositoryList) DeepCopyInto(out *RepositoryList)

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

func (*RepositoryList) DeepCopyObject

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

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

func (*RepositoryList) GetItems

func (l *RepositoryList) GetItems() []resource.Managed

GetItems of this RepositoryList.

type RepositoryObservation

type RepositoryObservation struct {
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	Size *float64 `json:"size,omitempty" tf:"size,omitempty"`

	URL *string `json:"url,omitempty" tf:"url,omitempty"`
}

func (*RepositoryObservation) DeepCopy

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

func (*RepositoryObservation) DeepCopyInto

func (in *RepositoryObservation) DeepCopyInto(out *RepositoryObservation)

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

type RepositoryParameters

type RepositoryParameters struct {

	// Resource name of the repository, of the form '{{repo}}'.
	// The repo name may contain slashes. eg, 'name/with/slash'
	// +kubebuilder:validation:Required
	Name *string `json:"name" tf:"name,omitempty"`

	// +kubebuilder:validation:Optional
	Project *string `json:"project,omitempty" tf:"project,omitempty"`

	// How this repository publishes a change in the repository through Cloud Pub/Sub.
	// Keyed by the topic names.
	// +kubebuilder:validation:Optional
	PubsubConfigs []PubsubConfigsParameters `json:"pubsubConfigs,omitempty" tf:"pubsub_configs,omitempty"`
}

func (*RepositoryParameters) DeepCopy

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

func (*RepositoryParameters) DeepCopyInto

func (in *RepositoryParameters) DeepCopyInto(out *RepositoryParameters)

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

type RepositorySpec

type RepositorySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     RepositoryParameters `json:"forProvider"`
}

RepositorySpec defines the desired state of Repository

func (*RepositorySpec) DeepCopy

func (in *RepositorySpec) DeepCopy() *RepositorySpec

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

func (*RepositorySpec) DeepCopyInto

func (in *RepositorySpec) DeepCopyInto(out *RepositorySpec)

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

type RepositoryStatus

type RepositoryStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        RepositoryObservation `json:"atProvider,omitempty"`
}

RepositoryStatus defines the observed state of Repository.

func (*RepositoryStatus) DeepCopy

func (in *RepositoryStatus) DeepCopy() *RepositoryStatus

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

func (*RepositoryStatus) DeepCopyInto

func (in *RepositoryStatus) DeepCopyInto(out *RepositoryStatus)

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