public static CosmosTable GetCosmosTable(this ArmClient client, ResourceIdentifier id) { return(client.GetClient(() => { CosmosTable.ValidateResourceId(id); return new CosmosTable(client, id); } )); }
public static CosmosTable GetCosmosTable(this ArmClient armClient, ResourceIdentifier id) { CosmosTable.ValidateResourceId(id); return(new CosmosTable(armClient, id)); }