Documentation ¶
Overview ¶
Package getgroupsettings retreives the settings of one group from `Groups Settings API`
Triggered by ¶
PubSub messages from the GCI groups topic.
Instances ¶
Only one.
Output ¶
PubSub messages to a dedicated topic formated like Cloud Asset Inventory feed messages.
Cardinality ¶
One-one: one output message for each triggering event.
Automatic retrying ¶
Yes.
Domain Wide Delegation ¶
Yes. The service account used to run this cloud function must have domain wide delegation and the following Oauth scopes:
- https://www.googleapis.com/auth/apps.groups.settings
Implementation example
package p import ( "context" "github.com/BrunoReboul/ram/services/getgroupsettings" "github.com/BrunoReboul/ram/utilities/ram" ) var global getgroupsettings.Global var ctx = context.Background() // EntryPoint is the function to be executed for each cloud function occurence func EntryPoint(ctxEvent context.Context, PubSubMessage ram.PubSubMessage) error { return getgroupsettings.EntryPoint(ctxEvent, PubSubMessage, &global) } func init() { getgroupsettings.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
func Initialize ¶
Initialize is to be executed in the init() function of the cloud function to optimize the cold start
Types ¶
type Global ¶
type Global struct {
// 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 KeyJSONFileName string `yaml:"keyJSONFileName"` OutputTopicName string `yaml:"outputTopicName"` } Instance struct { GCF gcf.Event GCI struct { SuperAdminEmail string `yaml:"superAdminEmail"` } } } }
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_deploygpstopic.go
- meth_instancedeployment_deploygrmprojectbindings.go
- meth_instancedeployment_deploygsuapi.go
- meth_instancedeployment_deployiamprojectroles.go
- meth_instancedeployment_deployiamserviceaccount.go
- meth_instancedeployment_getserviceaccountkey.go
- meth_instancedeployment_readvalidate.go
- meth_instancedeployment_situate.go
- type_instancedeployment.go