Documentation ¶
Index ¶
- Constants
- Variables
- func DecodePinpointGcmChannel(prev *PinpointGcmChannel, ctyValue cty.Value) (resource.Managed, error)
- func DecodePinpointGcmChannel_ApiKey(p *PinpointGcmChannelParameters, vals map[string]cty.Value)
- func DecodePinpointGcmChannel_ApplicationId(p *PinpointGcmChannelParameters, vals map[string]cty.Value)
- func DecodePinpointGcmChannel_Enabled(p *PinpointGcmChannelParameters, vals map[string]cty.Value)
- func EncodePinpointGcmChannel(r PinpointGcmChannel) cty.Value
- func EncodePinpointGcmChannel_ApiKey(p PinpointGcmChannelParameters, vals map[string]cty.Value)
- func EncodePinpointGcmChannel_ApplicationId(p PinpointGcmChannelParameters, vals map[string]cty.Value)
- func EncodePinpointGcmChannel_Enabled(p PinpointGcmChannelParameters, vals map[string]cty.Value)
- func Implementation() *plugin.Implementation
- func MergePinpointGcmChannel_ApiKey(k *PinpointGcmChannelParameters, p *PinpointGcmChannelParameters, ...) bool
- func MergePinpointGcmChannel_ApplicationId(k *PinpointGcmChannelParameters, p *PinpointGcmChannelParameters, ...) bool
- func MergePinpointGcmChannel_Enabled(k *PinpointGcmChannelParameters, p *PinpointGcmChannelParameters, ...) bool
- type PinpointGcmChannel
- func (in *PinpointGcmChannel) DeepCopy() *PinpointGcmChannel
- func (in *PinpointGcmChannel) DeepCopyInto(out *PinpointGcmChannel)
- func (in *PinpointGcmChannel) DeepCopyObject() runtime.Object
- func (mg *PinpointGcmChannel) GetCondition(ct runtimev1alpha1.ConditionType) runtimev1alpha1.Condition
- func (mg *PinpointGcmChannel) GetDeletionPolicy() runtimev1alpha1.DeletionPolicy
- func (mg *PinpointGcmChannel) GetProviderConfigReference() *runtimev1alpha1.Reference
- func (mg *PinpointGcmChannel) GetProviderReference() *runtimev1alpha1.Reference
- func (mg *PinpointGcmChannel) GetWriteConnectionSecretToReference() *runtimev1alpha1.SecretReference
- func (mg *PinpointGcmChannel) SetConditions(c ...runtimev1alpha1.Condition)
- func (mg *PinpointGcmChannel) SetDeletionPolicy(r runtimev1alpha1.DeletionPolicy)
- func (mg *PinpointGcmChannel) SetProviderConfigReference(r *runtimev1alpha1.Reference)
- func (mg *PinpointGcmChannel) SetProviderReference(r *runtimev1alpha1.Reference)
- func (mg *PinpointGcmChannel) SetWriteConnectionSecretToReference(r *runtimev1alpha1.SecretReference)
- type PinpointGcmChannelList
- type PinpointGcmChannelObservation
- type PinpointGcmChannelParameters
- type PinpointGcmChannelSpec
- type PinpointGcmChannelStatus
Constants ¶
const ( Group = "pinpoint-gcm-channel.terraform-provider-aws.crossplane.io" Version = "v1alpha1" )
Package type metadata.
Variables ¶
var ( Kind = "PinpointGcmChannel" GroupKind = schema.GroupKind{Group: Group, Kind: Kind}.String() KindAPIVersion = Kind + "." + SchemeGroupVersion.String() GroupVersionKind = SchemeGroupVersion.WithKind(Kind) TerraformResourceName = "aws_pinpoint_gcm_channel" )
var ( // SchemeGroupVersion is group version used to register these objects SchemeGroupVersion = schema.GroupVersion{Group: Group, Version: Version} )
Functions ¶
func DecodePinpointGcmChannel_ApiKey ¶
func DecodePinpointGcmChannel_ApiKey(p *PinpointGcmChannelParameters, vals map[string]cty.Value)
primitiveTypeDecodeTemplate
func DecodePinpointGcmChannel_ApplicationId ¶
func DecodePinpointGcmChannel_ApplicationId(p *PinpointGcmChannelParameters, vals map[string]cty.Value)
primitiveTypeDecodeTemplate
func DecodePinpointGcmChannel_Enabled ¶
func DecodePinpointGcmChannel_Enabled(p *PinpointGcmChannelParameters, vals map[string]cty.Value)
primitiveTypeDecodeTemplate
func EncodePinpointGcmChannel ¶
func EncodePinpointGcmChannel(r PinpointGcmChannel) cty.Value
func EncodePinpointGcmChannel_ApiKey ¶
func EncodePinpointGcmChannel_ApiKey(p PinpointGcmChannelParameters, vals map[string]cty.Value)
func EncodePinpointGcmChannel_ApplicationId ¶
func EncodePinpointGcmChannel_ApplicationId(p PinpointGcmChannelParameters, vals map[string]cty.Value)
func EncodePinpointGcmChannel_Enabled ¶
func EncodePinpointGcmChannel_Enabled(p PinpointGcmChannelParameters, vals map[string]cty.Value)
func Implementation ¶
func Implementation() *plugin.Implementation
func MergePinpointGcmChannel_ApiKey ¶
func MergePinpointGcmChannel_ApiKey(k *PinpointGcmChannelParameters, p *PinpointGcmChannelParameters, md *plugin.MergeDescription) bool
mergePrimitiveTemplateSpec
func MergePinpointGcmChannel_ApplicationId ¶
func MergePinpointGcmChannel_ApplicationId(k *PinpointGcmChannelParameters, p *PinpointGcmChannelParameters, md *plugin.MergeDescription) bool
mergePrimitiveTemplateSpec
func MergePinpointGcmChannel_Enabled ¶
func MergePinpointGcmChannel_Enabled(k *PinpointGcmChannelParameters, p *PinpointGcmChannelParameters, md *plugin.MergeDescription) bool
mergePrimitiveTemplateSpec
Types ¶
type PinpointGcmChannel ¶
type PinpointGcmChannel struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec PinpointGcmChannelSpec `json:"spec"` Status PinpointGcmChannelStatus `json:"status,omitempty"` }
PinpointGcmChannel is a managed resource representing a resource mirrored in the cloud +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster
func (*PinpointGcmChannel) DeepCopy ¶
func (in *PinpointGcmChannel) DeepCopy() *PinpointGcmChannel
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PinpointGcmChannel.
func (*PinpointGcmChannel) DeepCopyInto ¶
func (in *PinpointGcmChannel) DeepCopyInto(out *PinpointGcmChannel)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PinpointGcmChannel) DeepCopyObject ¶
func (in *PinpointGcmChannel) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*PinpointGcmChannel) GetCondition ¶
func (mg *PinpointGcmChannel) GetCondition(ct runtimev1alpha1.ConditionType) runtimev1alpha1.Condition
GetCondition of this PinpointGcmChannel.
func (*PinpointGcmChannel) GetDeletionPolicy ¶
func (mg *PinpointGcmChannel) GetDeletionPolicy() runtimev1alpha1.DeletionPolicy
GetDeletionPolicy of this PinpointGcmChannel.
func (*PinpointGcmChannel) GetProviderConfigReference ¶
func (mg *PinpointGcmChannel) GetProviderConfigReference() *runtimev1alpha1.Reference
GetProviderConfigReference of this PinpointGcmChannel.
func (*PinpointGcmChannel) GetProviderReference ¶
func (mg *PinpointGcmChannel) GetProviderReference() *runtimev1alpha1.Reference
GetProviderReference of this PinpointGcmChannel. Deprecated: Use GetProviderConfigReference.
func (*PinpointGcmChannel) GetWriteConnectionSecretToReference ¶
func (mg *PinpointGcmChannel) GetWriteConnectionSecretToReference() *runtimev1alpha1.SecretReference
GetWriteConnectionSecretToReference of this PinpointGcmChannel.
func (*PinpointGcmChannel) SetConditions ¶
func (mg *PinpointGcmChannel) SetConditions(c ...runtimev1alpha1.Condition)
SetConditions of this PinpointGcmChannel.
func (*PinpointGcmChannel) SetDeletionPolicy ¶
func (mg *PinpointGcmChannel) SetDeletionPolicy(r runtimev1alpha1.DeletionPolicy)
SetDeletionPolicy of this PinpointGcmChannel.
func (*PinpointGcmChannel) SetProviderConfigReference ¶
func (mg *PinpointGcmChannel) SetProviderConfigReference(r *runtimev1alpha1.Reference)
SetProviderConfigReference of this PinpointGcmChannel.
func (*PinpointGcmChannel) SetProviderReference ¶
func (mg *PinpointGcmChannel) SetProviderReference(r *runtimev1alpha1.Reference)
SetProviderReference of this PinpointGcmChannel. Deprecated: Use SetProviderConfigReference.
func (*PinpointGcmChannel) SetWriteConnectionSecretToReference ¶
func (mg *PinpointGcmChannel) SetWriteConnectionSecretToReference(r *runtimev1alpha1.SecretReference)
SetWriteConnectionSecretToReference of this PinpointGcmChannel.
type PinpointGcmChannelList ¶
type PinpointGcmChannelList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []PinpointGcmChannel `json:"items"` }
PinpointGcmChannel contains a list of PinpointGcmChannelList
func (*PinpointGcmChannelList) DeepCopy ¶
func (in *PinpointGcmChannelList) DeepCopy() *PinpointGcmChannelList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PinpointGcmChannelList.
func (*PinpointGcmChannelList) DeepCopyInto ¶
func (in *PinpointGcmChannelList) DeepCopyInto(out *PinpointGcmChannelList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PinpointGcmChannelList) DeepCopyObject ¶
func (in *PinpointGcmChannelList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*PinpointGcmChannelList) GetItems ¶
func (l *PinpointGcmChannelList) GetItems() []resource.Managed
GetItems of this PinpointGcmChannelList.
type PinpointGcmChannelObservation ¶
type PinpointGcmChannelObservation struct{}
A PinpointGcmChannelObservation records the observed state of a PinpointGcmChannel
func (*PinpointGcmChannelObservation) DeepCopy ¶
func (in *PinpointGcmChannelObservation) DeepCopy() *PinpointGcmChannelObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PinpointGcmChannelObservation.
func (*PinpointGcmChannelObservation) DeepCopyInto ¶
func (in *PinpointGcmChannelObservation) DeepCopyInto(out *PinpointGcmChannelObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PinpointGcmChannelParameters ¶
type PinpointGcmChannelParameters struct { ApiKey string `json:"api_key"` ApplicationId string `json:"application_id"` Enabled bool `json:"enabled"` }
A PinpointGcmChannelParameters defines the desired state of a PinpointGcmChannel
func (*PinpointGcmChannelParameters) DeepCopy ¶
func (in *PinpointGcmChannelParameters) DeepCopy() *PinpointGcmChannelParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PinpointGcmChannelParameters.
func (*PinpointGcmChannelParameters) DeepCopyInto ¶
func (in *PinpointGcmChannelParameters) DeepCopyInto(out *PinpointGcmChannelParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PinpointGcmChannelSpec ¶
type PinpointGcmChannelSpec struct { runtimev1alpha1.ResourceSpec `json:",inline"` ForProvider PinpointGcmChannelParameters `json:"forProvider"` }
A PinpointGcmChannelSpec defines the desired state of a PinpointGcmChannel
func (*PinpointGcmChannelSpec) DeepCopy ¶
func (in *PinpointGcmChannelSpec) DeepCopy() *PinpointGcmChannelSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PinpointGcmChannelSpec.
func (*PinpointGcmChannelSpec) DeepCopyInto ¶
func (in *PinpointGcmChannelSpec) DeepCopyInto(out *PinpointGcmChannelSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PinpointGcmChannelStatus ¶
type PinpointGcmChannelStatus struct { runtimev1alpha1.ResourceStatus `json:",inline"` AtProvider PinpointGcmChannelObservation `json:"atProvider"` }
A PinpointGcmChannelStatus defines the observed state of a PinpointGcmChannel
func (*PinpointGcmChannelStatus) DeepCopy ¶
func (in *PinpointGcmChannelStatus) DeepCopy() *PinpointGcmChannelStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PinpointGcmChannelStatus.
func (*PinpointGcmChannelStatus) DeepCopyInto ¶
func (in *PinpointGcmChannelStatus) DeepCopyInto(out *PinpointGcmChannelStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.