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
17 changes: 0 additions & 17 deletions lib/services/networkManagement2/lib/models/applicationGateway.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ class ApplicationGateway extends models['Resource'] {
* gateway resource.
* @member {array} [authenticationCertificates] Authentication certificates
* of the application gateway resource.
* @member {array} [trustedRootCertificates] Trusted Root certificates of the
* application gateway resource.
* @member {array} [sslCertificates] SSL certificates of the application
* gateway resource.
* @member {array} [frontendIPConfigurations] Frontend IP addresses of the
Expand Down Expand Up @@ -224,21 +222,6 @@ class ApplicationGateway extends models['Resource'] {
}
}
},
trustedRootCertificates: {
required: false,
serializedName: 'properties.trustedRootCertificates',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'ApplicationGatewayTrustedRootCertificateElementType',
type: {
name: 'Composite',
className: 'ApplicationGatewayTrustedRootCertificate'
}
}
}
},
sslCertificates: {
required: false,
serializedName: 'properties.sslCertificates',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ class ApplicationGatewayBackendHealthHttpSettings {
* @member {string} [backendHttpSettings.probe.id] Resource ID.
* @member {array} [backendHttpSettings.authenticationCertificates] Array of
* references to application gateway authentication certificates.
* @member {array} [backendHttpSettings.trustedRootCertificates] Array of
* references to application gateway trusted root certificates.
* @member {object} [backendHttpSettings.connectionDraining] Connection
* draining of the backend http settings resource.
* @member {boolean} [backendHttpSettings.connectionDraining.enabled] Whether
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ class ApplicationGatewayBackendHttpSettings extends models['SubResource'] {
* @member {string} [probe.id] Resource ID.
* @member {array} [authenticationCertificates] Array of references to
* application gateway authentication certificates.
* @member {array} [trustedRootCertificates] Array of references to
* application gateway trusted root certificates.
* @member {object} [connectionDraining] Connection draining of the backend
* http settings resource.
* @member {boolean} [connectionDraining.enabled] Whether connection draining
Expand Down Expand Up @@ -137,21 +135,6 @@ class ApplicationGatewayBackendHttpSettings extends models['SubResource'] {
}
}
},
trustedRootCertificates: {
required: false,
serializedName: 'properties.trustedRootCertificates',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'SubResourceElementType',
type: {
name: 'Composite',
className: 'SubResource'
}
}
}
},
connectionDraining: {
required: false,
serializedName: 'properties.connectionDraining',
Expand Down
Loading