You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Client is a toolkit for interacting with the piped service.
20
25
// It provides methods to call the piped service APIs.
21
26
// It's a wrapper around the raw piped service client.
22
27
typeClientstruct {
23
28
base*pipedapi.PipedServiceClient
24
29
30
+
// pluginName is used to identify which plugin sends requests to piped.
31
+
pluginNamestring
32
+
25
33
// applicationID is used to identify the application that the client is working with.
26
34
applicationIDstring
27
35
// deploymentID is used to identify the deployment that the client is working with.
@@ -31,3 +39,78 @@ type Client struct {
31
39
// This field exists only when the client is working with a specific stage; for example, when this client is passed as the ExecuteStage method's argument.
32
40
stageIDstring
33
41
}
42
+
43
+
// GetStageMetadata gets the metadata of the current stage.
0 commit comments