forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.tsp
More file actions
5524 lines (4650 loc) · 132 KB
/
Copy pathmodels.tsp
File metadata and controls
5524 lines (4650 loc) · 132 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import "@typespec/versioning";
import "@typespec/rest";
import "@typespec/http";
import "@azure-tools/typespec-azure-core";
import "@azure-tools/typespec-azure-resource-manager";
import "@azure-tools/typespec-client-generator-core";
using Azure.ResourceManager.Foundations;
using Azure.ClientGenerator.Core;
using Versioning;
using Azure.ResourceManager;
namespace Microsoft.DesktopVirtualization;
/**
* The type of management for the hostpool
*/
union ManagementType {
string,
/**
* Automated management of the hostpool
*/
Automated: "Automated",
/**
* Standard management of the hostpool
*/
Standard: "Standard",
}
/**
* Action types for controlling hostpool update.
*/
union HostPoolUpdateAction {
string,
/**
* Start the hostpool update.
*/
Start: "Start",
/**
* Pause the hostpool update.
*/
Pause: "Pause",
/**
* Cancel the hostpool update.
*/
Cancel: "Cancel",
/**
* Retry the hostpool update.
*/
Retry: "Retry",
/**
* Resume the hostpool update
*/
Resume: "Resume",
}
/**
* Action types for controlling hostpool provisioning.
*/
union HostPoolProvisioningAction {
string,
/**
* Cancel the hostpool provisioning.
*/
Cancel: "Cancel",
}
/**
* Controls if the use of RDPShortPath transport is allowed, possibly bypassing Private Link routes.
*/
union AllowRDPShortPathWithPrivateLink {
string,
/**
* Blocks the use of RDPShortPath if the hostpool PublicNetworkAccess setting is configured to require private link.
*/
Disabled: "Disabled",
/**
* Allows the use of RDPShortPath even if the hostpool PublicNetworkAccess is configured to require the use of private link.
*/
Enabled: "Enabled",
}
/**
* Provisioning state of the Session Host Configuration.
*/
union ProvisioningStateSHC {
string,
/**
* Provisioning Successful
*/
Succeeded: "Succeeded",
/**
* Provisioning Failed
*/
Failed: "Failed",
/**
* Provisioning was Canceled
*/
Canceled: "Canceled",
/**
* Provisioning in Progress
*/
Provisioning: "Provisioning",
}
/**
* The security type used by virtual machine in hostpool session host. Default is Standard.
*/
union VirtualMachineSecurityType {
string,
/**
* Standard security protocol. No additional parameters
*/
Standard: "Standard",
/**
* TrustedLaunch allows for secure boot and vTpm
*/
TrustedLaunch: "TrustedLaunch",
/**
* Confidential Virtual Machine security protocol
*/
ConfidentialVM: "ConfidentialVM",
}
/**
* The type of domain join done by the virtual machine.
*/
union DomainJoinType {
string,
/**
* Using microsoft active directory.
*/
ActiveDirectory: "ActiveDirectory",
/**
* Using microsoft azure active directory.
*/
AzureActiveDirectory: "AzureActiveDirectory",
}
/**
* The type of image session hosts use in the hostpool.
*/
union type {
string,
/**
* Using default marketplace images offered by Azure Marketplace.
*/
Marketplace: "Marketplace",
/**
* Using a custom image.
*/
Custom: "Custom",
}
/**
* The disk type used by virtual machine in hostpool session host.
*/
union VirtualMachineDiskType {
string,
/**
* Standard HDD locally redundant storage. Best for backup, non-critical, and infrequent access.
*/
Standard_LRS: "Standard_LRS",
/**
* Premium SSD locally redundant storage. Best for production and performance sensitive workloads.
*/
Premium_LRS: "Premium_LRS",
/**
* Standard SSD locally redundant storage. Best for web servers, lightly used enterprise applications and dev/test.
*/
StandardSSD_LRS: "StandardSSD_LRS",
}
/**
* The current provisioning state.
*/
union ProvisioningState {
string,
/**
* Provisioning Successful
*/
Succeeded: "Succeeded",
/**
* Provisioning in Progress
*/
Provisioning: "Provisioning",
/**
* Provisioning Failed
*/
Failed: "Failed",
/**
* Provisioning was Canceled
*/
Canceled: "Canceled",
}
/**
* Is package timestamped so it can ignore the certificate expiry date
*/
union packageTimestamped {
string,
/**
* Package is timestamped
*/
Timestamped: "Timestamped",
/**
* Package is not timestamped, use certificate expiry date
*/
NotTimestamped: "NotTimestamped",
}
/**
* Parameter indicating how the health check should behave if this package fails staging
*/
union failHealthCheckOnStagingFailure {
string,
/**
* Health Check will report unhealthy
*/
Unhealthy: "Unhealthy",
/**
* Health Check will report NeedsAssistance
*/
NeedsAssistance: "NeedsAssistance",
/**
* Health Check will not report failure
*/
DoNotFail: "DoNotFail",
}
/**
* Resource Type of ApplicationGroup.
*/
union ApplicationGroupType {
string,
/**
* Application group is Remote and can launch individual applications without a Desktop.
*/
RemoteApp: "RemoteApp",
/**
* Application Group delivers a full expected Desktop experience
*/
Desktop: "Desktop",
}
/**
* HostPool type for desktop.
*/
union HostPoolType {
string,
/**
* Users will be assigned a SessionHost either by administrators (PersonalDesktopAssignmentType = Direct) or upon connecting to the pool (PersonalDesktopAssignmentType = Automatic). They will always be redirected to their assigned SessionHost.
*/
Personal: "Personal",
/**
* Users get a new (random) SessionHost every time it connects to the HostPool.
*/
Pooled: "Pooled",
/**
* Users assign their own machines, load balancing logic remains the same as Personal. PersonalDesktopAssignmentType must be Direct.
*/
BYODesktop: "BYODesktop",
}
/**
* PersonalDesktopAssignment type for HostPool.
*/
union PersonalDesktopAssignmentType {
string,
/**
* Automatically assigns an available personal desktop to the user.
*/
Automatic: "Automatic",
/**
* Manually assigns a specific personal desktop to the user.
*/
Direct: "Direct",
}
/**
* The type of the load balancer.
*/
union LoadBalancerType {
string,
/**
* Uses BreadthFirst algorithm for load balancing.
*/
BreadthFirst: "BreadthFirst",
/**
* Uses DepthFirst algorithm for load balancing.
*/
DepthFirst: "DepthFirst",
/**
* Maintains persistent connections.
*/
Persistent: "Persistent",
/**
* Maintains multiple persistents connections.
*/
MultiplePersistent: "MultiplePersistent",
}
/**
* The type of resetting the token.
*/
union RegistrationTokenOperation {
string,
/**
* Delete operation
*/
Delete: "Delete",
/**
* No Operation
*/
None: "None",
/**
* Update Operation
*/
Update: "Update",
}
/**
* The type of single sign on Secret Type.
*/
union SSOSecretType {
string,
/**
* The SSO Secret is a Shared Key.
*/
SharedKey: "SharedKey",
/**
* The SSO Secret is a Certificate.
*/
Certificate: "Certificate",
/**
* The SSO Secret is a SharedKey that is stored in KeyVault.
*/
SharedKeyInKeyVault: "SharedKeyInKeyVault",
/**
* The SSO Secret is a Certificate that is stored in KeyVault.
*/
CertificateInKeyVault: "CertificateInKeyVault",
}
/**
* The type of preferred application group type, default to Desktop Application Group
*/
union PreferredAppGroupType {
string,
/**
* Internal Use Only
*/
None: "None",
/**
* Use Desktop Application Group
*/
Desktop: "Desktop",
/**
* Use RailApplications (RemoteApp)
*/
RailApplications: "RailApplications",
}
/**
* Enabled to allow this resource to be access from the public network
*/
union HostpoolPublicNetworkAccess {
string,
/**
* Allows this resource to be accessed from the public network
*/
Enabled: "Enabled",
/**
* Prevents this resource from being accessed from the public network
*/
Disabled: "Disabled",
/**
* Allows SessionHosts to be accessed from the public network
*/
EnabledForSessionHostsOnly: "EnabledForSessionHostsOnly",
/**
* Allows Clients to be accessed from the public network
*/
EnabledForClientsOnly: "EnabledForClientsOnly",
}
/**
* The type of maintenance for session host components.
*/
union SessionHostComponentUpdateType {
string,
/**
* Agent and other agent side components are delivery schedule is controlled by WVD Infra.
*/
Default: "Default",
/**
* TenantAdmin have opted in for Scheduled Component Update feature.
*/
Scheduled: "Scheduled",
}
/**
* The private endpoint connection status.
*/
union PrivateEndpointServiceConnectionStatus {
string,
/**
* Connection is Pending
*/
Pending: "Pending",
/**
* Connection was Approved
*/
Approved: "Approved",
/**
* Connection was rejected
*/
Rejected: "Rejected",
}
/**
* The current provisioning state.
*/
#suppress "@azure-tools/typespec-azure-resource-manager/arm-resource-provisioning-state" "Not supported by service"
union PrivateEndpointConnectionProvisioningState {
string,
/**
* Provisioning was successful
*/
Succeeded: "Succeeded",
/**
* A PrivateEndpointConnection is being created
*/
Creating: "Creating",
/**
* A PrivateEndpointConnection is being deleted
*/
Deleting: "Deleting",
/**
* Provisioning failed
*/
Failed: "Failed",
}
/**
* Managed Private UDP Connection Settings
*/
union ManagedPrivateUDP {
string,
/**
* AVD-wide settings are used to determine connection availability
*/
Default: "Default",
/**
* UDP will attempt this connection type when making connections.
*/
Enabled: "Enabled",
/**
* UDP will not attempt this connection type when making connections
*/
Disabled: "Disabled",
}
/**
* Direct UDP Connection Settings
*/
union DirectUDP {
string,
/**
* AVD-wide settings are used to determine connection availability
*/
Default: "Default",
/**
* UDP will attempt this connection type when making connections.
*/
Enabled: "Enabled",
/**
* UDP will not attempt this connection type when making connections
*/
Disabled: "Disabled",
}
/**
* Public UDP Connection Settings
*/
union PublicUDP {
string,
/**
* AVD-wide settings are used to determine connection availability
*/
Default: "Default",
/**
* UDP will attempt this connection type when making connections.
*/
Enabled: "Enabled",
/**
* UDP will not attempt this connection type when making connections
*/
Disabled: "Disabled",
}
/**
* Relay UDP Connection Settings
*/
union RelayUDP {
string,
/**
* AVD-wide settings are used to determine connection availability
*/
Default: "Default",
/**
* UDP will attempt this connection type when making connections.
*/
Enabled: "Enabled",
/**
* UDP will not attempt this connection type when making connections
*/
Disabled: "Disabled",
}
/**
* HostPool type for desktop.
*/
union ScalingHostPoolType {
string,
/**
* Users get a new (random) SessionHost every time it connects to the HostPool.
*/
Pooled: "Pooled",
/**
* Users will be assigned a SessionHost either by administrators (PersonalDesktopAssignmentType = Direct) or upon connecting to the pool (PersonalDesktopAssignmentType = Automatic). They will always be redirected to their assigned SessionHost.
* @Introduced in 2024-04-08-preview
*/
@added(Versions.vLatestPreview)
Personal: "Personal",
}
/**
* Load balancing algorithm for ramp up period.
*/
union SessionHostLoadBalancingAlgorithm {
string,
/**
* Breadth First Algorithm for Load Balancing
*/
BreadthFirst: "BreadthFirst",
/**
* Depth First Algorithm for Load Balancing
*/
DepthFirst: "DepthFirst",
}
/**
* Specifies when to stop hosts during ramp down period.
*/
union StopHostsWhen {
string,
/**
* Zero Total Sessions
*/
ZeroSessions: "ZeroSessions",
/**
* Zero Active Sessions
*/
ZeroActiveSessions: "ZeroActiveSessions",
}
/**
* Enabled to allow this resource to be access from the public network
*/
union PublicNetworkAccess {
string,
/**
* This resource is accessible from the public network.
*/
Enabled: "Enabled",
/**
* This resource is not accessible from the public network.
*/
Disabled: "Disabled",
}
/**
* Resource Type of Application.
*/
union RemoteApplicationType {
string,
/**
* Built-in applications
*/
InBuilt: "InBuilt",
/**
* Imported MSIX application packages
*/
MsixApplication: "MsixApplication",
}
/**
* Specifies whether this published application can be launched with command line arguments provided by the client, command line arguments specified at publish time, or no command line arguments at all.
*/
union CommandLineSetting {
string,
/**
* Cannot be launched with command line arguments.
*/
DoNotAllow: "DoNotAllow",
/**
* Can optionally be launched with command line arguments.
*/
Allow: "Allow",
/**
* Required to be launched with command line arguments.
*/
Require: "Require",
}
/**
* Possible device architectures that an app attach package can be configured for
*/
union AppAttachPackageArchitectures {
string,
/**
* ARM 32-bit
*/
ARM: "ARM",
/**
* ARM 64-bit
*/
ARM64: "ARM64",
/**
* 32-bit x86
*/
x86: "x86",
/**
* 64-bit
*/
x64: "x64",
/**
* Any architecture can be used
*/
Neutral: "Neutral",
/**
* X86 Compiled Hybrid Portable Executable for ARM64
*/
x86a64: "x86a64",
/**
* Select all listed applications, no filters
*/
ALL: "ALL",
}
/**
* Operation status for SessionHostManagementUpdate.
*/
union SessionHostManagementProvisioningOperationStatus {
string,
/**
* The operation is scheduled.
*/
Scheduled: "Scheduled",
/**
* The operation is currently validating the provisioning.
*/
ValidatingSessionHostProvisioning: "ValidatingSessionHostProvisioning",
/**
* Canceling the operation.
*/
Cancelling: "Cancelling",
/**
* The operation is currently provisioning session hosts.
*/
ProvisioningSessionHosts: "ProvisioningSessionHosts",
/**
* The operation succeeded.
*/
Succeeded: "Succeeded",
/**
* The operation failed.
*/
Failed: "Failed",
/**
* The operation is canceled.
*/
Canceled: "Canceled",
}
/**
* Operation status for SessionHostManagementUpdate.
*/
@renamedFrom(
Versions.vLatestPreview,
"SessionHostManagementUpdateOperationStatus"
)
union updateStatus {
string,
/**
* The operation has an error.
*/
Error: "Error",
/**
* The operation is scheduled.
*/
Scheduled: "Scheduled",
/**
* The operation is currently updating Session Hosts.
*/
UpdatingSessionHosts: "UpdatingSessionHosts",
/**
* The operation is validating the update.
*/
ValidatingSessionHostUpdate: "ValidatingSessionHostUpdate",
/**
* The operation is paused.
*/
Paused: "Paused",
/**
* The operation is pausing.
*/
Pausing: "Pausing",
/**
* Canceling the operation.
*/
Cancelling: "Cancelling",
/**
* The operation succeeded.
*/
Succeeded: "Succeeded",
/**
* The operation failed.
*/
Failed: "Failed",
/**
* The operation is canceled
*/
Cancelled: "Cancelled",
}
/**
* Status for a SessionHost.
*/
union Status {
string,
/**
* Session Host has passed all the health checks and is available to handle connections.
*/
Available: "Available",
/**
* Session Host is either turned off or has failed critical health checks which is causing service not to be able to route connections to this session host. Note this replaces previous 'NoHeartBeat' status.
*/
Unavailable: "Unavailable",
/**
* Session Host is shutdown - RD Agent reported session host to be stopped or deallocated.
*/
Shutdown: "Shutdown",
/**
* The Session Host is unavailable because it is currently disconnected.
*/
Disconnected: "Disconnected",
/**
* Session Host is unavailable because currently an upgrade of RDAgent/side-by-side stack is in progress. Note: this state will be removed once the upgrade completes and the host is able to accept connections.
*/
Upgrading: "Upgrading",
/**
* Session Host is unavailable because the critical component upgrade (agent, side-by-side stack, etc.) failed.
*/
UpgradeFailed: "UpgradeFailed",
/**
* The Session Host is not heart beating.
*/
NoHeartbeat: "NoHeartbeat",
/**
* SessionHost is not joined to domain.
*/
NotJoinedToDomain: "NotJoinedToDomain",
/**
* SessionHost's domain trust relationship lost
*/
DomainTrustRelationshipLost: "DomainTrustRelationshipLost",
/**
* SxS stack installed on the SessionHost is not ready to receive connections.
*/
SxSStackListenerNotReady: "SxSStackListenerNotReady",
/**
* FSLogix is in an unhealthy state on the session host.
*/
FSLogixNotHealthy: "FSLogixNotHealthy",
/**
* New status to inform admins that the health on their endpoint needs to be fixed. The connections might not fail, as these issues are not fatal.
*/
NeedsAssistance: "NeedsAssistance",
}
/**
* Update state of a SessionHost.
*/
union UpdateState {
string,
/**
* Update is initializing
*/
Initial: "Initial",
/**
* Update is pending
*/
Pending: "Pending",
/**
* Update has started
*/
Started: "Started",
/**
* Update has succeeded
*/
Succeeded: "Succeeded",
/**
* Update has failed
*/
Failed: "Failed",
}
/**
* Represents the name of the health check operation performed.
*/
union HealthCheckName {
string,
/**
* Verifies the SessionHost is joined to a domain. If this check fails is classified as fatal as no connection can succeed if the SessionHost is not joined to the domain. (Currently Enabled)
*/
DomainJoinedCheck: "DomainJoinedCheck",
/**
* Verifies the SessionHost is not experiencing domain trust issues that will prevent authentication on SessionHost at connection time when session is created. If this check fails is classified as fatal as no connection can succeed if we cannot reach the domain for authentication on the SessionHost. (Currently Enabled)
*/
DomainTrustCheck: "DomainTrustCheck",
/**
* Verifies the FSLogix service is up and running to make sure users' profiles are loaded in the session. If this check fails is classified as fatal as even if the connection can succeed, user experience is bad as the user profile cannot be loaded and user will get a temporary profile in the session. (Currently Disabled)
*/
FSLogixHealthCheck: "FSLogixHealthCheck",
/**
* Verifies that the SxS stack is up and running so connections can succeed. If this check fails is classified as fatal as no connection can succeed if the SxS stack is not ready. (Currently Enabled)
*/
SxSStackListenerCheck: "SxSStackListenerCheck",
/**
* Verifies that the required WVD service and Geneva URLs are reachable from the SessionHost. These URLs are: RdTokenUri, RdBrokerURI, RdDiagnosticsUri and storage blob URLs for agent monitoring (geneva). If this check fails, it is non fatal and the machine still can service connections, main issue may be that monitoring agent is unable to store warm path data (logs, operations ...). (Currently Disabled)
*/
UrlsAccessibleCheck: "UrlsAccessibleCheck",
/**
* Verifies that the required Geneva agent is running. If this check fails, it is non fatal and the machine still can service connections, main issue may be that monitoring agent is missing or running (possibly) older version. (Currently Enabled)
*/
MonitoringAgentCheck: "MonitoringAgentCheck",
/**
* Verifies the domain the SessionHost is joined to is still reachable. If this check fails is classified as fatal as no connection can succeed if the domain the SessionHost is joined is not reachable at the time of connection. (Currently Disabled)
*/
DomainReachable: "DomainReachable",
/**
* Verifies whether the WebRTCRedirector component is healthy. The WebRTCRedirector component is used to optimize video and audio performance in Microsoft Teams. This checks whether the component is still running, and whether there is a higher version available. If this check fails, it is non fatal and the machine still can service connections, main issue may be the WebRTCRedirector component has to be restarted or updated. (Currently Disabled)
*/
WebRTCRedirectorCheck: "WebRTCRedirectorCheck",
/**
* Verifies the value of SecurityLayer registration key. If the value is 0 (SecurityLayer.RDP) this check fails with Error code = NativeMethodErrorCode.E_FAIL and is fatal. If the value is 1 (SecurityLayer.Negotiate) this check fails with Error code = NativeMethodErrorCode.ERROR_SUCCESS and is non fatal. (Currently Disabled)
*/