(ctx context.Context, name string, options client.NetworkCreateOptions)
| 253 | } |
| 254 | |
| 255 | func (d *DryRunClient) NetworkCreate(ctx context.Context, name string, options client.NetworkCreateOptions) (client.NetworkCreateResult, error) { |
| 256 | return client.NetworkCreateResult{ |
| 257 | ID: name, |
| 258 | }, nil |
| 259 | } |
| 260 | |
| 261 | func (d *DryRunClient) NetworkDisconnect(ctx context.Context, networkName string, options client.NetworkDisconnectOptions) (client.NetworkDisconnectResult, error) { |
| 262 | return client.NetworkDisconnectResult{}, nil |
no outgoing calls