Ejemplo n.º 1
0
 public FQDN UpdateFQDNs(string id, UpsertFQDNOptions options, RequestOptions reqOpts = null)
 {
     return(this.UpdateEntity(id, options, reqOpts));
 }
Ejemplo n.º 2
0
 public FQDN CreateFQDNs(UpsertFQDNOptions options, RequestOptions reqOpts = null)
 {
     return(this.CreateEntity(options, reqOpts));
 }
Ejemplo 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));
 }
Ejemplo n.º 4
0
 public async Task <FQDN> CreateFQDNsAsync(UpsertFQDNOptions options, RequestOptions reqOpts = null, CancellationToken ct = default)
 {
     return(await this.CreateEntityAsync(options, reqOpts, ct));
 }