Documentation ¶
Overview ¶
Package upload2gcs stores feeds as JSON files in a GCS bucket
Manage file creation (with override) and deletion.
Triggered by ¶
Messages in related PubSub topics.
Instances ¶
- one per AssetType for resource metadata exports.
Output ¶
JSON files into a GCS bucket.
Cardinality ¶
one-one, one pubsub message - one file created (with override) or deleted.
Automatic retrying ¶
Yes.
Implementation example
package p import ( "context" "github.com/BrunoReboul/ram/services/upload2gcs" "github.com/BrunoReboul/ram/utilities/ram" ) var global upload2gcs.Global var ctx = context.Background() // EntryPoint is the function to be executed for each cloud function occurence func EntryPoint(ctxEvent context.Context, PubSubMessage gps.PubSubMessage) error { return upload2gcs.EntryPoint(ctxEvent, PubSubMessage, &global) } func init() { upload2gcs.Initialize(ctx, &global) }
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func EntryPoint ¶
EntryPoint is the function to be executed for each cloud function occurence
Types ¶
type Global ¶
type Global struct { PubSubID string // contains filtered or unexported fields }
Global structure for global variables to optimize the cloud function performances
type InstanceDeployment ¶ added in v0.0.24
type InstanceDeployment struct { DumpTimestamp time.Time `yaml:"dumpTimestamp"` Core *deploy.Core Settings struct { Service struct { GSU gsu.Parameters IAM iamgt.Parameters GCB gcb.Parameters GCF gcf.Parameters } Instance struct { GCF gcf.Event } } }
InstanceDeployment settings and artifacts structure
func NewInstanceDeployment ¶ added in v0.0.24
func NewInstanceDeployment() *InstanceDeployment
NewInstanceDeployment create deployment structure with default settings set
func (*InstanceDeployment) Deploy ¶ added in v0.0.24
func (instanceDeployment *InstanceDeployment) Deploy() (err error)
Deploy a service instance
func (*InstanceDeployment) ReadValidate ¶ added in v0.0.24
func (instanceDeployment *InstanceDeployment) ReadValidate() (err error)
ReadValidate reads and validates service and instance settings
func (*InstanceDeployment) Situate ¶ added in v0.0.24
func (instanceDeployment *InstanceDeployment) Situate() (err error)
Situate complement settings taking in account the situation for service and instance settings
Source Files ¶
- core.go
- doc.go
- meth_instancedeployment_deploy.go
- meth_instancedeployment_deploygaeapp.go
- meth_instancedeployment_deploygcffunction.go
- meth_instancedeployment_deploygcsbucket.go
- meth_instancedeployment_deploygpstopic.go
- meth_instancedeployment_deploygrmmonitoringorgtbindings.go
- meth_instancedeployment_deploygrmprojectbindings.go
- meth_instancedeployment_deploygsuapi.go
- meth_instancedeployment_deployiammonitoringorgrole.go
- meth_instancedeployment_deployiamprojectroles.go
- meth_instancedeployment_deployiamserviceaccount.go
- meth_instancedeployment_readvalidate.go
- meth_instancedeployment_situate.go
- type_instancedeployment.go