Example #1
0
 public async Task <FQDNConnection> UpdateFQDNConnectionAsync(string id, UpsertFQDNConnectionOptions options, RequestOptions reqOpts = null, CancellationToken ct = default)
 {
     return(await this.UpdateEntityAsync(id, options, reqOpts, ct));
 }
Example #2
0
 public FQDNConnection UpdateFQDNConnection(string id, UpsertFQDNConnectionOptions options, RequestOptions reqOpts = null)
 {
     return(this.UpdateEntity(id, options, reqOpts));
 }
Example #3
0
 public FQDNConnection CreateFQDNConnection(UpsertFQDNConnectionOptions options, RequestOptions reqOpts = null)
 {
     return(this.CreateEntity(options, reqOpts));
 }