Esempio n. 1
0
 public FQDN UpdateFQDNs(string id, UpsertFQDNOptions options, RequestOptions reqOpts = null)
 {
     return(this.UpdateEntity(id, options, reqOpts));
 }
Esempio n. 2
0
 public FQDN CreateFQDNs(UpsertFQDNOptions options, RequestOptions reqOpts = null)
 {
     return(this.CreateEntity(options, reqOpts));
 }
Esempio n. 3
0
 public async Task <FQDN> UpdateFQDNsAsync(string id, UpsertFQDNOptions options, RequestOptions reqOpts = null, CancellationToken ct = default)
 {
     return(await this.UpdateEntityAsync(id, options, reqOpts, ct));
 }
Esempio n. 4
0
 public async Task <FQDN> CreateFQDNsAsync(UpsertFQDNOptions options, RequestOptions reqOpts = null, CancellationToken ct = default)
 {
     return(await this.CreateEntityAsync(options, reqOpts, ct));
 }