20 lines
588 B
Plaintext
20 lines
588 B
Plaintext
// Copyright (c) 2007-2018, Intel Corporation. All rights reserved.
|
|
[Version ( "7.0.0" ),
|
|
Description ( "A username and password used to access an MPS." )]
|
|
class AMT_MPSUsernamePassword : CIM_SharedCredential {
|
|
|
|
[Override ( "Secret" ),
|
|
Description ( "The secret known by the principal." ),
|
|
MaxLen ( 64 )]
|
|
string Secret;
|
|
|
|
[Override ( "RemoteID" ),
|
|
Description (
|
|
"RemoteID is the name by which the principal is known at "
|
|
"the remote secret key authentication service." ),
|
|
MaxLen ( 64 )]
|
|
string RemoteID;
|
|
|
|
|
|
};
|