Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=sourcerepo.gcp.upbound.io +versionName=v1beta1
Index ¶
- Constants
- Variables
- type ConditionInitParameters
- type ConditionObservation
- type ConditionParameters
- type PubsubConfigsInitParameters
- type PubsubConfigsObservation
- type PubsubConfigsParameters
- type Repository
- func (in *Repository) DeepCopy() *Repository
- func (in *Repository) DeepCopyInto(out *Repository)
- func (in *Repository) DeepCopyObject() runtime.Object
- func (mg *Repository) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Repository) GetConnectionDetailsMapping() map[string]string
- func (mg *Repository) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Repository) GetID() string
- func (tr *Repository) GetInitParameters() (map[string]any, error)
- func (mg *Repository) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *Repository) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
- func (tr *Repository) GetObservation() (map[string]any, error)
- func (tr *Repository) GetParameters() (map[string]any, error)
- func (mg *Repository) GetProviderConfigReference() *xpv1.Reference
- func (mg *Repository) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Repository) GetTerraformResourceType() string
- func (tr *Repository) GetTerraformSchemaVersion() int
- func (mg *Repository) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Repository) Hub()
- func (tr *Repository) LateInitialize(attrs []byte) (bool, error)
- func (mg *Repository) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *Repository) SetConditions(c ...xpv1.Condition)
- func (mg *Repository) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Repository) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *Repository) SetObservation(obs map[string]any) error
- func (tr *Repository) SetParameters(params map[string]any) error
- func (mg *Repository) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Repository) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Repository) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type RepositoryIAMMember
- func (tr *RepositoryIAMMember) ConvertFrom(srcRaw conversion.Hub) error
- func (tr *RepositoryIAMMember) ConvertTo(dstRaw conversion.Hub) error
- func (in *RepositoryIAMMember) DeepCopy() *RepositoryIAMMember
- func (in *RepositoryIAMMember) DeepCopyInto(out *RepositoryIAMMember)
- func (in *RepositoryIAMMember) DeepCopyObject() runtime.Object
- func (mg *RepositoryIAMMember) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *RepositoryIAMMember) GetConnectionDetailsMapping() map[string]string
- func (mg *RepositoryIAMMember) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *RepositoryIAMMember) GetID() string
- func (tr *RepositoryIAMMember) GetInitParameters() (map[string]any, error)
- func (mg *RepositoryIAMMember) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *RepositoryIAMMember) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
- func (tr *RepositoryIAMMember) GetObservation() (map[string]any, error)
- func (tr *RepositoryIAMMember) GetParameters() (map[string]any, error)
- func (mg *RepositoryIAMMember) GetProviderConfigReference() *xpv1.Reference
- func (mg *RepositoryIAMMember) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *RepositoryIAMMember) GetTerraformResourceType() string
- func (tr *RepositoryIAMMember) GetTerraformSchemaVersion() int
- func (mg *RepositoryIAMMember) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *RepositoryIAMMember) LateInitialize(attrs []byte) (bool, error)
- func (mg *RepositoryIAMMember) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *RepositoryIAMMember) SetConditions(c ...xpv1.Condition)
- func (mg *RepositoryIAMMember) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *RepositoryIAMMember) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *RepositoryIAMMember) SetObservation(obs map[string]any) error
- func (tr *RepositoryIAMMember) SetParameters(params map[string]any) error
- func (mg *RepositoryIAMMember) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *RepositoryIAMMember) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *RepositoryIAMMember) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type RepositoryIAMMemberInitParameters
- type RepositoryIAMMemberList
- type RepositoryIAMMemberObservation
- type RepositoryIAMMemberParameters
- type RepositoryIAMMemberSpec
- type RepositoryIAMMemberStatus
- type RepositoryInitParameters
- type RepositoryList
- type RepositoryObservation
- type RepositoryParameters
- type RepositorySpec
- type RepositoryStatus
Constants ¶
const ( CRDGroup = "sourcerepo.gcp.upbound.io" CRDVersion = "v1beta1" )
Package type metadata.
Variables ¶
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 )
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.
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.
Functions ¶
This section is empty.
Types ¶
type ConditionInitParameters ¶ added in v0.35.0
type ConditionInitParameters struct { Description *string `json:"description,omitempty" tf:"description,omitempty"` Expression *string `json:"expression,omitempty" tf:"expression,omitempty"` Title *string `json:"title,omitempty" tf:"title,omitempty"` }
func (*ConditionInitParameters) DeepCopy ¶ added in v0.35.0
func (in *ConditionInitParameters) DeepCopy() *ConditionInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConditionInitParameters.
func (*ConditionInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *ConditionInitParameters) DeepCopyInto(out *ConditionInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConditionObservation ¶
type ConditionObservation struct { Description *string `json:"description,omitempty" tf:"description,omitempty"` Expression *string `json:"expression,omitempty" tf:"expression,omitempty"` Title *string `json:"title,omitempty" tf:"title,omitempty"` }
func (*ConditionObservation) DeepCopy ¶
func (in *ConditionObservation) DeepCopy() *ConditionObservation
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:Optional Expression *string `json:"expression" tf:"expression,omitempty"` // +kubebuilder:validation:Optional 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 PubsubConfigsInitParameters ¶ added in v0.35.0
type PubsubConfigsInitParameters struct { // The format of the Cloud Pub/Sub messages. MessageFormat *string `json:"messageFormat,omitempty" 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. // +crossplane:generate:reference:type=github.com/upbound/provider-gcp/apis/cloudplatform/v1beta1.ServiceAccount // +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractParamPath("email",true) ServiceAccountEmail *string `json:"serviceAccountEmail,omitempty" tf:"service_account_email,omitempty"` // Reference to a ServiceAccount in cloudplatform to populate serviceAccountEmail. // +kubebuilder:validation:Optional ServiceAccountEmailRef *v1.Reference `json:"serviceAccountEmailRef,omitempty" tf:"-"` // Selector for a ServiceAccount in cloudplatform to populate serviceAccountEmail. // +kubebuilder:validation:Optional ServiceAccountEmailSelector *v1.Selector `json:"serviceAccountEmailSelector,omitempty" tf:"-"` // The identifier for this object. Format specified above. // +crossplane:generate:reference:type=github.com/upbound/provider-gcp/apis/pubsub/v1beta2.Topic // +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractResourceID() Topic *string `json:"topic,omitempty" tf:"topic,omitempty"` // Reference to a Topic in pubsub to populate topic. // +kubebuilder:validation:Optional TopicRef *v1.Reference `json:"topicRef,omitempty" tf:"-"` // Selector for a Topic in pubsub to populate topic. // +kubebuilder:validation:Optional TopicSelector *v1.Selector `json:"topicSelector,omitempty" tf:"-"` }
func (*PubsubConfigsInitParameters) DeepCopy ¶ added in v0.35.0
func (in *PubsubConfigsInitParameters) DeepCopy() *PubsubConfigsInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PubsubConfigsInitParameters.
func (*PubsubConfigsInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *PubsubConfigsInitParameters) DeepCopyInto(out *PubsubConfigsInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PubsubConfigsObservation ¶
type PubsubConfigsObservation struct { // The format of the Cloud Pub/Sub messages. MessageFormat *string `json:"messageFormat,omitempty" 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. ServiceAccountEmail *string `json:"serviceAccountEmail,omitempty" tf:"service_account_email,omitempty"` // The identifier for this object. Format specified above. Topic *string `json:"topic,omitempty" tf:"topic,omitempty"` }
func (*PubsubConfigsObservation) DeepCopy ¶
func (in *PubsubConfigsObservation) DeepCopy() *PubsubConfigsObservation
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. // +kubebuilder:validation:Optional 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. // +crossplane:generate:reference:type=github.com/upbound/provider-gcp/apis/cloudplatform/v1beta1.ServiceAccount // +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractParamPath("email",true) // +kubebuilder:validation:Optional ServiceAccountEmail *string `json:"serviceAccountEmail,omitempty" tf:"service_account_email,omitempty"` // Reference to a ServiceAccount in cloudplatform to populate serviceAccountEmail. // +kubebuilder:validation:Optional ServiceAccountEmailRef *v1.Reference `json:"serviceAccountEmailRef,omitempty" tf:"-"` // Selector for a ServiceAccount in cloudplatform to populate serviceAccountEmail. // +kubebuilder:validation:Optional ServiceAccountEmailSelector *v1.Selector `json:"serviceAccountEmailSelector,omitempty" tf:"-"` // The identifier for this object. Format specified above. // +crossplane:generate:reference:type=github.com/upbound/provider-gcp/apis/pubsub/v1beta2.Topic // +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractResourceID() // +kubebuilder:validation:Optional Topic *string `json:"topic,omitempty" tf:"topic,omitempty"` // Reference to a Topic in pubsub to populate topic. // +kubebuilder:validation:Optional TopicRef *v1.Reference `json:"topicRef,omitempty" tf:"-"` // Selector for a Topic in pubsub to populate topic. // +kubebuilder:validation:Optional TopicSelector *v1.Selector `json:"topicSelector,omitempty" tf:"-"` }
func (*PubsubConfigsParameters) DeepCopy ¶
func (in *PubsubConfigsParameters) DeepCopy() *PubsubConfigsParameters
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. A repository (or repo) is a Git repository storing versioned source content. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,gcp}
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) GetInitParameters ¶ added in v0.35.0
func (tr *Repository) GetInitParameters() (map[string]any, error)
GetInitParameters of this Repository
func (*Repository) GetManagementPolicies ¶ added in v0.35.0
func (mg *Repository) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this Repository.
func (*Repository) GetMergedParameters ¶ added in v0.40.0
func (tr *Repository) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
GetInitParameters of this Repository
func (*Repository) GetObservation ¶
func (tr *Repository) GetObservation() (map[string]any, error)
GetObservation of this Repository
func (*Repository) GetParameters ¶
func (tr *Repository) GetParameters() (map[string]any, error)
GetParameters of this Repository
func (*Repository) GetProviderConfigReference ¶
func (mg *Repository) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this Repository.
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) Hub ¶ added in v0.41.2
func (tr *Repository) Hub()
Hub marks this type as a conversion hub.
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) ResolveReferences ¶
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) SetManagementPolicies ¶ added in v0.35.0
func (mg *Repository) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this Repository.
func (*Repository) SetObservation ¶
func (tr *Repository) SetObservation(obs map[string]any) error
SetObservation for this Repository
func (*Repository) SetParameters ¶
func (tr *Repository) SetParameters(params map[string]any) error
SetParameters for this Repository
func (*Repository) SetProviderConfigReference ¶
func (mg *Repository) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this Repository.
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 RepositoryIAMMember ¶
type RepositoryIAMMember struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.member) || (has(self.initProvider) && has(self.initProvider.member))",message="spec.forProvider.member is a required parameter" // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.role) || (has(self.initProvider) && has(self.initProvider.role))",message="spec.forProvider.role is a required parameter" Spec RepositoryIAMMemberSpec `json:"spec"` Status RepositoryIAMMemberStatus `json:"status,omitempty"` }
RepositoryIAMMember is the Schema for the RepositoryIAMMembers API. <no value> +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,gcp}
func (*RepositoryIAMMember) ConvertFrom ¶ added in v1.2.0
func (tr *RepositoryIAMMember) ConvertFrom(srcRaw conversion.Hub) error
ConvertFrom converts from the hub type to the RepositoryIAMMember type.
func (*RepositoryIAMMember) ConvertTo ¶ added in v1.2.0
func (tr *RepositoryIAMMember) ConvertTo(dstRaw conversion.Hub) error
ConvertTo converts this RepositoryIAMMember to the hub type.
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) GetInitParameters ¶ added in v0.35.0
func (tr *RepositoryIAMMember) GetInitParameters() (map[string]any, error)
GetInitParameters of this RepositoryIAMMember
func (*RepositoryIAMMember) GetManagementPolicies ¶ added in v0.35.0
func (mg *RepositoryIAMMember) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this RepositoryIAMMember.
func (*RepositoryIAMMember) GetMergedParameters ¶ added in v0.40.0
func (tr *RepositoryIAMMember) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
GetInitParameters of this RepositoryIAMMember
func (*RepositoryIAMMember) GetObservation ¶
func (tr *RepositoryIAMMember) GetObservation() (map[string]any, error)
GetObservation of this RepositoryIAMMember
func (*RepositoryIAMMember) GetParameters ¶
func (tr *RepositoryIAMMember) GetParameters() (map[string]any, error)
GetParameters of this RepositoryIAMMember
func (*RepositoryIAMMember) GetProviderConfigReference ¶
func (mg *RepositoryIAMMember) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this RepositoryIAMMember.
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) ResolveReferences ¶
ResolveReferences of this RepositoryIAMMember.
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) SetManagementPolicies ¶ added in v0.35.0
func (mg *RepositoryIAMMember) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this RepositoryIAMMember.
func (*RepositoryIAMMember) SetObservation ¶
func (tr *RepositoryIAMMember) SetObservation(obs map[string]any) error
SetObservation for this RepositoryIAMMember
func (*RepositoryIAMMember) SetParameters ¶
func (tr *RepositoryIAMMember) SetParameters(params map[string]any) error
SetParameters for this RepositoryIAMMember
func (*RepositoryIAMMember) SetProviderConfigReference ¶
func (mg *RepositoryIAMMember) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this RepositoryIAMMember.
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 RepositoryIAMMemberInitParameters ¶ added in v0.35.0
type RepositoryIAMMemberInitParameters struct { Condition []ConditionInitParameters `json:"condition,omitempty" tf:"condition,omitempty"` Member *string `json:"member,omitempty" tf:"member,omitempty"` Project *string `json:"project,omitempty" tf:"project,omitempty"` // +crossplane:generate:reference:type=github.com/upbound/provider-gcp/apis/sourcerepo/v1beta1.Repository Repository *string `json:"repository,omitempty" tf:"repository,omitempty"` // Reference to a Repository in sourcerepo to populate repository. // +kubebuilder:validation:Optional RepositoryRef *v1.Reference `json:"repositoryRef,omitempty" tf:"-"` // Selector for a Repository in sourcerepo to populate repository. // +kubebuilder:validation:Optional RepositorySelector *v1.Selector `json:"repositorySelector,omitempty" tf:"-"` Role *string `json:"role,omitempty" tf:"role,omitempty"` }
func (*RepositoryIAMMemberInitParameters) DeepCopy ¶ added in v0.35.0
func (in *RepositoryIAMMemberInitParameters) DeepCopy() *RepositoryIAMMemberInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RepositoryIAMMemberInitParameters.
func (*RepositoryIAMMemberInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *RepositoryIAMMemberInitParameters) DeepCopyInto(out *RepositoryIAMMemberInitParameters)
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 ¶
func (in *RepositoryIAMMemberList) DeepCopy() *RepositoryIAMMemberList
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 { Condition []ConditionObservation `json:"condition,omitempty" tf:"condition,omitempty"` Etag *string `json:"etag,omitempty" tf:"etag,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` Member *string `json:"member,omitempty" tf:"member,omitempty"` Project *string `json:"project,omitempty" tf:"project,omitempty"` Repository *string `json:"repository,omitempty" tf:"repository,omitempty"` Role *string `json:"role,omitempty" tf:"role,omitempty"` }
func (*RepositoryIAMMemberObservation) DeepCopy ¶
func (in *RepositoryIAMMemberObservation) DeepCopy() *RepositoryIAMMemberObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RepositoryIAMMemberObservation.
func (*RepositoryIAMMemberObservation) DeepCopyInto ¶
func (in *RepositoryIAMMemberObservation) DeepCopyInto(out *RepositoryIAMMemberObservation)
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 []ConditionParameters `json:"condition,omitempty" tf:"condition,omitempty"` // +kubebuilder:validation:Optional Member *string `json:"member,omitempty" tf:"member,omitempty"` // +kubebuilder:validation:Optional Project *string `json:"project,omitempty" tf:"project,omitempty"` // +crossplane:generate:reference:type=github.com/upbound/provider-gcp/apis/sourcerepo/v1beta1.Repository // +kubebuilder:validation:Optional Repository *string `json:"repository,omitempty" tf:"repository,omitempty"` // Reference to a Repository in sourcerepo to populate repository. // +kubebuilder:validation:Optional RepositoryRef *v1.Reference `json:"repositoryRef,omitempty" tf:"-"` // Selector for a Repository in sourcerepo to populate repository. // +kubebuilder:validation:Optional RepositorySelector *v1.Selector `json:"repositorySelector,omitempty" tf:"-"` // +kubebuilder:validation:Optional Role *string `json:"role,omitempty" tf:"role,omitempty"` }
func (*RepositoryIAMMemberParameters) DeepCopy ¶
func (in *RepositoryIAMMemberParameters) DeepCopy() *RepositoryIAMMemberParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RepositoryIAMMemberParameters.
func (*RepositoryIAMMemberParameters) DeepCopyInto ¶
func (in *RepositoryIAMMemberParameters) DeepCopyInto(out *RepositoryIAMMemberParameters)
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"` // THIS IS A BETA FIELD. It will be honored // unless the Management Policies feature flag is disabled. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider RepositoryIAMMemberInitParameters `json:"initProvider,omitempty"` }
RepositoryIAMMemberSpec defines the desired state of RepositoryIAMMember
func (*RepositoryIAMMemberSpec) DeepCopy ¶
func (in *RepositoryIAMMemberSpec) DeepCopy() *RepositoryIAMMemberSpec
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 ¶
func (in *RepositoryIAMMemberStatus) DeepCopy() *RepositoryIAMMemberStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RepositoryIAMMemberStatus.
func (*RepositoryIAMMemberStatus) DeepCopyInto ¶
func (in *RepositoryIAMMemberStatus) DeepCopyInto(out *RepositoryIAMMemberStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RepositoryInitParameters ¶ added in v0.35.0
type RepositoryInitParameters struct { // The ID of the project in which the resource belongs. // If it is not provided, the provider project is used. 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. // Structure is documented below. PubsubConfigs []PubsubConfigsInitParameters `json:"pubsubConfigs,omitempty" tf:"pubsub_configs,omitempty"` }
func (*RepositoryInitParameters) DeepCopy ¶ added in v0.35.0
func (in *RepositoryInitParameters) DeepCopy() *RepositoryInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RepositoryInitParameters.
func (*RepositoryInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *RepositoryInitParameters) DeepCopyInto(out *RepositoryInitParameters)
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 { // an identifier for the resource with format projects/{{project}}/repos/{{name}} ID *string `json:"id,omitempty" tf:"id,omitempty"` // The ID of the project in which the resource belongs. // If it is not provided, the provider project is used. 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. // Structure is documented below. PubsubConfigs []PubsubConfigsObservation `json:"pubsubConfigs,omitempty" tf:"pubsub_configs,omitempty"` // The disk usage of the repo, in bytes. Size *float64 `json:"size,omitempty" tf:"size,omitempty"` // URL to clone the repository from Google Cloud Source Repositories. URL *string `json:"url,omitempty" tf:"url,omitempty"` }
func (*RepositoryObservation) DeepCopy ¶
func (in *RepositoryObservation) DeepCopy() *RepositoryObservation
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 { // The ID of the project in which the resource belongs. // If it is not provided, the provider project is used. // +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. // Structure is documented below. // +kubebuilder:validation:Optional PubsubConfigs []PubsubConfigsParameters `json:"pubsubConfigs,omitempty" tf:"pubsub_configs,omitempty"` }
func (*RepositoryParameters) DeepCopy ¶
func (in *RepositoryParameters) DeepCopy() *RepositoryParameters
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"` // THIS IS A BETA FIELD. It will be honored // unless the Management Policies feature flag is disabled. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider RepositoryInitParameters `json:"initProvider,omitempty"` }
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.
Source Files ¶
- zz_generated.conversion_hubs.go
- zz_generated.conversion_spokes.go
- zz_generated.deepcopy.go
- zz_generated.managed.go
- zz_generated.managedlist.go
- zz_generated.resolvers.go
- zz_groupversion_info.go
- zz_repository_terraformed.go
- zz_repository_types.go
- zz_repositoryiammember_terraformed.go
- zz_repositoryiammember_types.go