public IP UpdateIPs(string id, UpsertIPOptions options, RequestOptions reqOpts = null) { return(this.UpdateEntity(id, options, reqOpts)); }
public IP CreateIPs(UpsertIPOptions options, RequestOptions reqOpts = null) { return(this.CreateEntity(options, reqOpts)); }
public async Task <IP> UpdateIPsAsync(string id, UpsertIPOptions options, RequestOptions reqOpts = null, CancellationToken ct = default) { return(await this.UpdateEntityAsync(id, options, reqOpts, ct)); }
public async Task <IP> CreateIPsAsync(UpsertIPOptions options, RequestOptions reqOpts = null, CancellationToken ct = default) { return(await this.CreateEntityAsync(options, reqOpts, ct)); }