コード例 #1
0
 public IP UpdateIPs(string id, UpsertIPOptions options, RequestOptions reqOpts = null)
 {
     return(this.UpdateEntity(id, options, reqOpts));
 }
コード例 #2
0
 public IP CreateIPs(UpsertIPOptions options, RequestOptions reqOpts = null)
 {
     return(this.CreateEntity(options, reqOpts));
 }
コード例 #3
0
 public async Task <IP> UpdateIPsAsync(string id, UpsertIPOptions options, RequestOptions reqOpts = null, CancellationToken ct = default)
 {
     return(await this.UpdateEntityAsync(id, options, reqOpts, ct));
 }
コード例 #4
0
 public async Task <IP> CreateIPsAsync(UpsertIPOptions options, RequestOptions reqOpts = null, CancellationToken ct = default)
 {
     return(await this.CreateEntityAsync(options, reqOpts, ct));
 }