@@ -117,7 +117,9 @@ module Web {
117
117
/**
118
118
* Gets the keyVaultReferenceIdentity.
119
119
*/
120
- String getKeyVaultReferenceIdentity ( ) { result = this .getProperties ( ) .getKeyVaultReferenceIdentity ( ) }
120
+ String getKeyVaultReferenceIdentity ( ) {
121
+ result = this .getProperties ( ) .getKeyVaultReferenceIdentity ( )
122
+ }
121
123
122
124
/**
123
125
* Gets the redundancyMode.
@@ -127,7 +129,9 @@ module Web {
127
129
/**
128
130
* Gets the storageAccountRequired flag.
129
131
*/
130
- Boolean getStorageAccountRequired ( ) { result = this .getProperties ( ) .getStorageAccountRequired ( ) }
132
+ Boolean getStorageAccountRequired ( ) {
133
+ result = this .getProperties ( ) .getStorageAccountRequired ( )
134
+ }
131
135
132
136
/**
133
137
* Returns true if client affinity is enabled.
@@ -201,7 +205,7 @@ module Web {
201
205
* Gets whether zone redundant deployment is enabled.
202
206
*/
203
207
Boolean getZoneRedundant ( ) { result = this .getProperties ( ) .getZoneRedundant ( ) }
204
-
208
+
205
209
/**
206
210
* Returns true if zone redundant deployment is enabled.
207
211
*/
@@ -210,8 +214,8 @@ module Web {
210
214
/**
211
215
* Gets the hosting environment profile.
212
216
*/
213
- HostingEnvironmentProfile getHostingEnvironmentProfile ( ) {
214
- result = this .getProperties ( ) .getHostingEnvironmentProfile ( )
217
+ HostingEnvironmentProfile getHostingEnvironmentProfile ( ) {
218
+ result = this .getProperties ( ) .getHostingEnvironmentProfile ( )
215
219
}
216
220
217
221
override string toString ( ) { result = "AppServicePlan[" + this .getIdentifier ( ) .getName ( ) + "]" }
@@ -273,7 +277,7 @@ module Web {
273
277
* Gets the HTTPS-only flag for the deployment slot.
274
278
*/
275
279
Boolean getHttpsOnly ( ) { result = this .getProperties ( ) .getHttpsOnly ( ) }
276
-
280
+
277
281
/**
278
282
* Returns true if HTTPS-only setting is enabled for the deployment slot.
279
283
*/
@@ -348,9 +352,7 @@ module Web {
348
352
/**
349
353
* Constructs an ExtendedLocation object.
350
354
*/
351
- ExtendedLocation ( ) {
352
- this = parent .getProperty ( "extendedLocation" )
353
- }
355
+ ExtendedLocation ( ) { this = parent .getProperty ( "extendedLocation" ) }
354
356
355
357
/**
356
358
* Gets the name of the extended location.
@@ -375,9 +377,15 @@ module Web {
375
377
HostingEnvironmentProfile ( ) {
376
378
// This object can be referenced from multiple parent types
377
379
exists ( WebResource resource | this = resource .getProperty ( "hostingEnvironmentProfile" ) ) or
378
- exists ( SitesProperties:: Properties props | this = props .getProperty ( "hostingEnvironmentProfile" ) ) or
379
- exists ( SlotProperties:: Properties props | this = props .getProperty ( "hostingEnvironmentProfile" ) ) or
380
- exists ( ServerFarmsProperties:: Properties props | this = props .getProperty ( "hostingEnvironmentProfile" ) )
380
+ exists ( SitesProperties:: Properties props |
381
+ this = props .getProperty ( "hostingEnvironmentProfile" )
382
+ ) or
383
+ exists ( SlotProperties:: Properties props |
384
+ this = props .getProperty ( "hostingEnvironmentProfile" )
385
+ ) or
386
+ exists ( ServerFarmsProperties:: Properties props |
387
+ this = props .getProperty ( "hostingEnvironmentProfile" )
388
+ )
381
389
}
382
390
383
391
/**
@@ -402,9 +410,7 @@ module Web {
402
410
/**
403
411
* Constructs an ApplicationStack object.
404
412
*/
405
- ApplicationStack ( ) {
406
- this = parent .getProperty ( "applicationStack" )
407
- }
413
+ ApplicationStack ( ) { this = parent .getProperty ( "applicationStack" ) }
408
414
409
415
string toString ( ) { result = "ApplicationStack" }
410
416
}
@@ -418,9 +424,7 @@ module Web {
418
424
/**
419
425
* Constructs an AppSettings object.
420
426
*/
421
- AppSettings ( ) {
422
- this = parent .getProperty ( "appSettings" )
423
- }
427
+ AppSettings ( ) { this = parent .getProperty ( "appSettings" ) }
424
428
425
429
string toString ( ) { result = "AppSettings" }
426
430
}
@@ -434,9 +438,7 @@ module Web {
434
438
/**
435
439
* Constructs a UserAssignedIdentities object.
436
440
*/
437
- UserAssignedIdentities ( ) {
438
- this = parent .getProperty ( "userAssignedIdentities" )
439
- }
441
+ UserAssignedIdentities ( ) { this = parent .getProperty ( "userAssignedIdentities" ) }
440
442
441
443
string toString ( ) { result = "UserAssignedIdentities" }
442
444
}
@@ -450,9 +452,7 @@ module Web {
450
452
/**
451
453
* Constructs a RepositoryBranch object.
452
454
*/
453
- RepositoryBranch ( ) {
454
- this = parent .getProperty ( "repositoryBranch" )
455
- }
455
+ RepositoryBranch ( ) { this = parent .getProperty ( "repositoryBranch" ) }
456
456
457
457
/**
458
458
* Gets the name of the branch.
@@ -472,9 +472,7 @@ module Web {
472
472
/**
473
473
* Constructs an HttpsCertificate object.
474
474
*/
475
- HttpsCertificate ( ) {
476
- this = parent .getElement ( index )
477
- }
475
+ HttpsCertificate ( ) { this = parent .getElement ( index ) }
478
476
479
477
/**
480
478
* Gets the name of the certificate.
@@ -534,9 +532,9 @@ module Web {
534
532
/**
535
533
* Gets the virtualNetworkSubnetId.
536
534
*/
537
- String getVirtualNetworkSubnetId ( ) {
535
+ String getVirtualNetworkSubnetId ( ) {
538
536
result = this .getProperty ( "virtualNetworkSubnetId" ) or
539
- result = parent .getProperty ( "virtualNetworkSubnetId" )
537
+ result = parent .getProperty ( "virtualNetworkSubnetId" )
540
538
}
541
539
542
540
/**
@@ -600,13 +598,13 @@ module Web {
600
598
* Gets the https certificate settings.
601
599
*/
602
600
HttpsCertificates getHttpsCertificates ( ) { result = this .getProperty ( "httpsCertificates" ) }
603
-
601
+
604
602
/**
605
603
* Gets the clientAffinityEnabled flag.
606
604
*/
607
- Boolean getClientAffinityEnabled ( ) {
605
+ Boolean getClientAffinityEnabled ( ) {
608
606
result = this .getProperty ( "clientAffinityEnabled" ) or
609
- result = parent .getProperty ( "clientAffinityEnabled" )
607
+ result = parent .getProperty ( "clientAffinityEnabled" )
610
608
}
611
609
612
610
/**
@@ -622,9 +620,9 @@ module Web {
622
620
/**
623
621
* Gets the clientCertEnabled flag.
624
622
*/
625
- Boolean getClientCertEnabled ( ) {
623
+ Boolean getClientCertEnabled ( ) {
626
624
result = this .getProperty ( "clientCertEnabled" ) or
627
- result = parent .getProperty ( "clientCertEnabled" )
625
+ result = parent .getProperty ( "clientCertEnabled" )
628
626
}
629
627
630
628
/**
@@ -640,17 +638,17 @@ module Web {
640
638
/**
641
639
* Gets the hostNameSslStates array.
642
640
*/
643
- Array getHostNameSslStates ( ) {
641
+ Array getHostNameSslStates ( ) {
644
642
result = this .getProperty ( "hostNameSslStates" ) or
645
- result = parent .getProperty ( "hostNameSslStates" )
643
+ result = parent .getProperty ( "hostNameSslStates" )
646
644
}
647
645
648
646
/**
649
647
* Gets the hyperV setting.
650
648
*/
651
- Boolean getHyperV ( ) {
649
+ Boolean getHyperV ( ) {
652
650
result = this .getProperty ( "hyperV" ) or
653
- result = parent .getProperty ( "hyperV" )
651
+ result = parent .getProperty ( "hyperV" )
654
652
}
655
653
656
654
/**
@@ -666,25 +664,25 @@ module Web {
666
664
/**
667
665
* Gets the keyVaultReferenceIdentity.
668
666
*/
669
- String getKeyVaultReferenceIdentity ( ) {
667
+ String getKeyVaultReferenceIdentity ( ) {
670
668
result = this .getProperty ( "keyVaultReferenceIdentity" ) or
671
- result = parent .getProperty ( "keyVaultReferenceIdentity" )
669
+ result = parent .getProperty ( "keyVaultReferenceIdentity" )
672
670
}
673
671
674
672
/**
675
673
* Gets the redundancyMode.
676
674
*/
677
- String getRedundancyMode ( ) {
675
+ String getRedundancyMode ( ) {
678
676
result = this .getProperty ( "redundancyMode" ) or
679
- result = parent .getProperty ( "redundancyMode" )
677
+ result = parent .getProperty ( "redundancyMode" )
680
678
}
681
679
682
680
/**
683
681
* Gets the storageAccountRequired flag.
684
682
*/
685
- Boolean getStorageAccountRequired ( ) {
683
+ Boolean getStorageAccountRequired ( ) {
686
684
result = this .getProperty ( "storageAccountRequired" ) or
687
- result = parent .getProperty ( "storageAccountRequired" )
685
+ result = parent .getProperty ( "storageAccountRequired" )
688
686
}
689
687
690
688
/**
@@ -1197,7 +1195,7 @@ module Web {
1197
1195
HostingEnvironmentProfile getHostingEnvironmentProfile ( ) {
1198
1196
result = parent .getProperty ( "hostingEnvironmentProfile" )
1199
1197
}
1200
-
1198
+
1201
1199
/**
1202
1200
* Gets whether the App Service Plan is reserved (for Linux).
1203
1201
*/
@@ -1235,9 +1233,9 @@ module Web {
1235
1233
/**
1236
1234
* Gets the HTTPS-only flag for the deployment slot.
1237
1235
*/
1238
- Boolean getHttpsOnly ( ) {
1236
+ Boolean getHttpsOnly ( ) {
1239
1237
result = this .getProperty ( "httpsOnly" ) or
1240
- result = parent .getProperty ( "httpsOnly" )
1238
+ result = parent .getProperty ( "httpsOnly" )
1241
1239
}
1242
1240
1243
1241
/**
@@ -1266,7 +1264,7 @@ module Web {
1266
1264
HostingEnvironmentProfile getHostingEnvironmentProfile ( ) {
1267
1265
result = this .getProperty ( "hostingEnvironmentProfile" )
1268
1266
}
1269
-
1267
+
1270
1268
override string toString ( ) { result = "SlotProperties" }
1271
1269
}
1272
1270
}
0 commit comments