shadow.go 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package funcgraph
  2. import (
  3. "fmt"
  4. "mats/conf"
  5. "strings"
  6. "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/functiongraph/v2/model"
  7. )
  8. func CreateShadow(meshUrl string, assetId string, dbId string, table string, scale, width int32) error {
  9. //
  10. client := createFuncGraphClient()
  11. OsgConvStreamTopic := conf.AppConfig.Nats.OsgShadowStreamTopic
  12. streamTopics := strings.Split(OsgConvStreamTopic, "#")
  13. request := &model.AsyncInvokeFunctionRequest{Body: map[string]interface{}{
  14. "meshUrl": meshUrl,
  15. "assetId": assetId,
  16. "dbId": dbId,
  17. "table": table,
  18. "scalex10": scale,
  19. "width": width,
  20. "notifyNatsUrl": conf.AppConfig.Nats.Url,
  21. "notifyStream": streamTopics[0],
  22. "notifySubject": streamTopics[1],
  23. }}
  24. request.FunctionUrn = "urn:fss:cn-east-3:0956c65fd600f29f2ff6c00dbb3d1e2e:function:default:shadowconv:v3"
  25. response, err := client.AsyncInvokeFunction(request)
  26. if err == nil {
  27. fmt.Printf("%+v\n", response)
  28. return nil
  29. }
  30. fmt.Println("CreateShadow request failed=>", err.Error())
  31. return err
  32. }