// Copyright (c) 2011 DMTF. All rights reserved. [Version ( "2.31.1" ), UMLPackagePath ( "CIM::User::SharedSecret" ), Description ( "CIM_NamedCredential indirectly represents a shared secret " "credential. The local identity, IKEIdentity, and the remote " "peer identity share the secret that is named by the " "SharedSecretName. The SharedSecretName is used by the " "SharedSecretService to reference the secret." )] class CIM_NamedCredential : CIM_Credential { [Key, Override ( "InstanceID" ), Description ( "Within the scope of the instantiating Namespace, " "InstanceID opaquely and uniquely identifies an instance " "of this class. In order to ensure uniqueness within the " "NameSpace, the value of InstanceID SHOULD be constructed " "using the following \'preferred\' algorithm: \n" ": \n" "Where and are separated by a colon " "\':\', and where MUST include a copyrighted, " "trademarked or otherwise unique name that is owned by " "the business entity creating/defining the InstanceID, or " "is a registered ID that is assigned to the business " "entity by a recognized global authority. (This is " "similar to the _ structure of " "Schema class names.) In addition, to ensure uniqueness, " " MUST NOT contain a colon (\':\'). When using " "this algorithm, the first colon to appear in InstanceID " "MUST appear between and . \n" " is chosen by the organizational entity and " "SHOULD not be re-used to identify different underlying " "(real-world) elements. If the above \'preferred\' " "algorithm is not used, the defining entity MUST assure " "that the resultant InstanceID is not re-used across any " "InstanceIDs produced by this or other providers for this " "instance\'s NameSpace. \n" "For DMTF defined instances, the \'preferred\' algorithm " "MUST be used with the set to \'CIM\'." )] string InstanceID; [Description ( "The local Identity with whom the direct trust relationship exists." ), MaxLen ( 256 ), ModelCorrespondence { "CIM_NamedCredential.LocalIdentityType" }] string LocalIdentity; [Description ( "LocalIdentityType is used to describe the type of the " "LocalIdentity." ), ValueMap { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" }, Values { "IPV4_ADDR", "FQDN", "USER_FQDN", "IPV4_ADDR_SUBNET", "IPV6_ADDR", "IPV6_ADDR_SUBNET", "IPV4_ADDR_RANGE", "IPV6_ADDR_RANGE", "DER_ASN1_DN", "DER_ASN1_GN", "KEY_ID" }, ModelCorrespondence { "CIM_NamedCredential.LocalIdentity" }] uint16 LocalIdentityType; [Description ( "The peer identity with whom the direct trust relationship exists." ), MaxLen ( 256 ), ModelCorrespondence { "CIM_NamedCredential.PeerIdentityType" }] string PeerIdentity; [Description ( "PeerIdentityType is used to describe the type of the PeerIdentity." ), ValueMap { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" }, Values { "IPV4_ADDR", "FQDN", "USER_FQDN", "IPV4_ADDR_SUBNET", "IPV6_ADDR", "IPV6_ADDR_SUBNET", "IPV4_ADDR_RANGE", "IPV6_ADDR_RANGE", "DER_ASN1_DN", "DER_ASN1_GN", "KEY_ID" }, ModelCorrespondence { "CIM_NamedCredential.PeerIdentity" }] uint16 PeerIdentityType; [Description ( "SharedSecretName is an indirect reference to a shared " "secret. The SecretService does not expose the actual " "secret but rather provides access to the secret via a " "name." )] string SharedSecretName; };