Skip to content
Merged
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
2 changes: 1 addition & 1 deletion packages/@azure/arm-network/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft
Copyright (c) 2019 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ export {
ApplicationGatewayBackendHealthPool,
ApplicationGatewayBackendHealthHttpSettings,
ApplicationGatewayBackendHealthServer,
ApplicationGatewayAvailableServerVariablesResult,
ErrorModel,
ErrorDetails,
ApplicationGatewayAvailableRequestHeadersResult,
ApplicationGatewayAvailableResponseHeadersResult,
ApplicationGatewayAvailableWafRuleSetsResult,
ApplicationGatewayFirewallRuleSet,
ApplicationGatewayFirewallRuleGroup,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export {
ApplicationSecurityGroup,
Resource,
BaseResource,
TagsObject,
ApplicationSecurityGroupListResult,
SubResource,
SecurityRule,
Expand Down
229 changes: 183 additions & 46 deletions packages/@azure/arm-network/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2841,6 +2841,48 @@ export interface ApplicationGateway extends Resource {
identity?: ManagedServiceIdentity;
}

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

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

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

/**
* @interface
* An interface representing ApplicationGatewayFirewallRule.
Expand Down Expand Up @@ -2985,6 +3027,52 @@ export interface ApplicationGatewaySslPredefinedPolicy extends SubResource {
minProtocolVersion?: ApplicationGatewaySslProtocol;
}

/**
* @interface
* An interface representing ErrorDetails.
*/
export interface ErrorDetails {
/**
* @member {string} [code]
*/
code?: string;
/**
* @member {string} [target]
*/
target?: string;
/**
* @member {string} [message]
*/
message?: string;
}

/**
* @interface
* An interface representing ErrorModel.
*/
export interface ErrorModel {
/**
* @member {string} [code]
*/
code?: string;
/**
* @member {string} [message]
*/
message?: string;
/**
* @member {string} [target]
*/
target?: string;
/**
* @member {ErrorDetails[]} [details]
*/
details?: ErrorDetails[];
/**
* @member {string} [innerError]
*/
innerError?: string;
}

/**
* @interface
* An interface representing TagsObject.
Expand Down Expand Up @@ -5262,52 +5350,6 @@ export interface LoadBalancer extends Resource {
etag?: string;
}

/**
* @interface
* An interface representing ErrorDetails.
*/
export interface ErrorDetails {
/**
* @member {string} [code]
*/
code?: string;
/**
* @member {string} [target]
*/
target?: string;
/**
* @member {string} [message]
*/
message?: string;
}

/**
* @interface
* An interface representing ErrorModel.
*/
export interface ErrorModel {
/**
* @member {string} [code]
*/
code?: string;
/**
* @member {string} [message]
*/
message?: string;
/**
* @member {string} [target]
*/
target?: string;
/**
* @member {ErrorDetails[]} [details]
*/
details?: ErrorDetails[];
/**
* @member {string} [innerError]
*/
innerError?: string;
}

/**
* @interface
* An interface representing AzureAsyncOperationResult.
Expand Down Expand Up @@ -12202,6 +12244,63 @@ export type ApplicationGatewaysBackendHealthResponse = ApplicationGatewayBackend
};
};

/**
* Contains response data for the listAvailableServerVariables operation.
*/
export type ApplicationGatewaysListAvailableServerVariablesResponse = ApplicationGatewayAvailableServerVariablesResult & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: ApplicationGatewayAvailableServerVariablesResult;
};
};

/**
* Contains response data for the listAvailableRequestHeaders operation.
*/
export type ApplicationGatewaysListAvailableRequestHeadersResponse = ApplicationGatewayAvailableRequestHeadersResult & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: ApplicationGatewayAvailableRequestHeadersResult;
};
};

/**
* Contains response data for the listAvailableResponseHeaders operation.
*/
export type ApplicationGatewaysListAvailableResponseHeadersResponse = ApplicationGatewayAvailableResponseHeadersResult & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: ApplicationGatewayAvailableResponseHeadersResult;
};
};

/**
* Contains response data for the listAvailableWafRuleSets operation.
*/
Expand Down Expand Up @@ -12430,6 +12529,25 @@ export type ApplicationSecurityGroupsCreateOrUpdateResponse = ApplicationSecurit
};
};

/**
* Contains response data for the updateTags operation.
*/
export type ApplicationSecurityGroupsUpdateTagsResponse = ApplicationSecurityGroup & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: ApplicationSecurityGroup;
};
};

/**
* Contains response data for the listAll operation.
*/
Expand Down Expand Up @@ -12487,6 +12605,25 @@ export type ApplicationSecurityGroupsBeginCreateOrUpdateResponse = ApplicationSe
};
};

/**
* Contains response data for the beginUpdateTags operation.
*/
export type ApplicationSecurityGroupsBeginUpdateTagsResponse = ApplicationSecurityGroup & {
/**
* The underlying HTTP response.
*/
_response: msRest.HttpResponse & {
/**
* The response body as text (string format)
*/
bodyAsText: string;
/**
* The response body as parsed JSON or XML
*/
parsedBody: ApplicationSecurityGroup;
};
};

/**
* Contains response data for the listAllNext operation.
*/
Expand Down
Loading