Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 44 additions & 14 deletions lib/services/networkManagement2/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2175,6 +2175,36 @@ export interface ApplicationGateway extends Resource {
identity?: ManagedServiceIdentity;
}

/**
* Response for ApplicationGatewayAvailableServerVariables API service call.
*/
export interface ApplicationGatewayAvailableServerVariablesResult {
/**
* The list of supported server variables in application gateway.
*/
value?: string[];
}

/**
* Response for ApplicationGatewayAvailableRequestHeaders API service call.
*/
export interface ApplicationGatewayAvailableRequestHeadersResult {
/**
* The list of supported request headers in application gateway.
*/
value?: string[];
}

/**
* Response for ApplicationGatewayAvailableResponeHeaders API service call.
*/
export interface ApplicationGatewayAvailableResponseHeadersResult {
/**
* The list of supported response header in application gateway.
*/
value?: string[];
}

/**
* A web application firewall rule.
*/
Expand Down Expand Up @@ -2281,6 +2311,20 @@ export interface ApplicationGatewaySslPredefinedPolicy extends SubResource {
minProtocolVersion?: string;
}

export interface ErrorDetails {
code?: string;
target?: string;
message?: string;
}

export interface ErrorModel {
code?: string;
message?: string;
target?: string;
details?: ErrorDetails[];
innerError?: string;
}

/**
* Tags object for patch operations.
*/
Expand Down Expand Up @@ -4008,20 +4052,6 @@ export interface LoadBalancer extends Resource {
etag?: string;
}

export interface ErrorDetails {
code?: string;
target?: string;
message?: string;
}

export interface ErrorModel {
code?: string;
message?: string;
target?: string;
details?: ErrorDetails[];
innerError?: string;
}

/**
* The response body contains the status of the specified asynchronous operation, indicating
* whether it has succeeded, is in progress, or has failed. Note that this status is distinct from
Expand Down
7 changes: 5 additions & 2 deletions lib/services/networkManagement2/lib/models/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,17 @@ exports.ApplicationGatewayAutoscaleConfiguration = require('./applicationGateway
exports.ManagedServiceIdentityUserAssignedIdentitiesValue = require('./managedServiceIdentityUserAssignedIdentitiesValue');
exports.ManagedServiceIdentity = require('./managedServiceIdentity');
exports.ApplicationGateway = require('./applicationGateway');
exports.ApplicationGatewayAvailableServerVariablesResult = require('./applicationGatewayAvailableServerVariablesResult');
exports.ApplicationGatewayAvailableRequestHeadersResult = require('./applicationGatewayAvailableRequestHeadersResult');
exports.ApplicationGatewayAvailableResponseHeadersResult = require('./applicationGatewayAvailableResponseHeadersResult');
exports.ApplicationGatewayFirewallRule = require('./applicationGatewayFirewallRule');
exports.ApplicationGatewayFirewallRuleGroup = require('./applicationGatewayFirewallRuleGroup');
exports.ApplicationGatewayFirewallRuleSet = require('./applicationGatewayFirewallRuleSet');
exports.ApplicationGatewayAvailableWafRuleSetsResult = require('./applicationGatewayAvailableWafRuleSetsResult');
exports.ApplicationGatewayAvailableSslOptions = require('./applicationGatewayAvailableSslOptions');
exports.ApplicationGatewaySslPredefinedPolicy = require('./applicationGatewaySslPredefinedPolicy');
exports.ErrorDetails = require('./errorDetails');
exports.ErrorModel = require('./errorModel');
exports.TagsObject = require('./tagsObject');
exports.AvailableDelegation = require('./availableDelegation');
exports.AzureFirewallIPConfiguration = require('./azureFirewallIPConfiguration');
Expand Down Expand Up @@ -149,8 +154,6 @@ exports.Probe = require('./probe');
exports.InboundNatPool = require('./inboundNatPool');
exports.OutboundRule = require('./outboundRule');
exports.LoadBalancer = require('./loadBalancer');
exports.ErrorDetails = require('./errorDetails');
exports.ErrorModel = require('./errorModel');
exports.AzureAsyncOperationResult = require('./azureAsyncOperationResult');
exports.EffectiveNetworkSecurityGroupAssociation = require('./effectiveNetworkSecurityGroupAssociation');
exports.EffectiveNetworkSecurityRule = require('./effectiveNetworkSecurityRule');
Expand Down
Loading