Client can be used to talk to a Cloud Controller's V3 Endpoints.
| 86 | |
| 87 | // Client can be used to talk to a Cloud Controller's V3 Endpoints. |
| 88 | type Client struct { |
| 89 | Root |
| 90 | CloudControllerURL string |
| 91 | |
| 92 | Requester |
| 93 | |
| 94 | jobPollingInterval time.Duration |
| 95 | jobPollingTimeout time.Duration |
| 96 | |
| 97 | clock Clock |
| 98 | } |
| 99 | |
| 100 | // Config allows the Client to be configured |
| 101 | type Config struct { |
nothing calls this directly
no outgoing calls
no test coverage detected