| 17 | const defaultComputeBaseURL = "https://compute.googleapis.com/compute/v1" |
| 18 | |
| 19 | type Client struct { |
| 20 | creds *google.Credentials |
| 21 | http core.HTTPContext |
| 22 | projectID string |
| 23 | baseURL string |
| 24 | } |
| 25 | |
| 26 | func NewClient(httpClient core.HTTPContext, integration core.IntegrationContext) (*Client, error) { |
| 27 | if integration == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected