BUG#: 8782
[tpot/pegasus/.git] / Schemas / CIM225 / DMTF / Network / CIM_SAEndpointRefreshSettings.mof
1 // Copyright (c) 2005 DMTF.  All rights reserved.
2 // <change cr="ArchCR00066.004" type="add">Add UmlPackagePath
3 // qualifier values to CIM Schema.</change>
4 // ==================================================================
5 //  CIM_SAEndpointRefreshSettings 
6 // ==================================================================
7    [Version ( "2.8.0" ), 
8     UMLPackagePath ( "CIM::Network::IPsec" ), 
9     Description ( 
10        "SAEndpointRefreshSettings hold the refresh thresholds for the "
11        "SecurityAssociationEndpoint. Since these settings may change "
12        "for an SA, the properties are defined both in this class and "
13        "in SecurityAssociationEndpoint." )]
14 class CIM_SAEndpointRefreshSettings : CIM_SettingData {
15
16       [Write, Description ( 
17           "RefreshThresholdSecondsPercentage is the lifetime "
18           "percentage after which a new SA should be acquired, "
19           "before the existing SA expires." ), 
20        Units ( "Percent" ), 
21        MinValue ( 0 ), 
22        MaxValue ( 100 ), 
23        ModelCorrespondence { 
24           "CIM_SecurityAssociationEndpoint.RefreshThresholdSecondsPercentage" }]
25    uint8 RefreshThresholdSecondsPercentage;
26
27       [Write, Description ( 
28           "RefreshThresholdKbytesPercentage is the lifetime "
29           "percentage of kilobytes processed, at which a new SA "
30           "should be acquired." ), 
31        Units ( "Percent" ), 
32        MinValue ( 0 ), 
33        MaxValue ( 100 ), 
34        ModelCorrespondence { 
35           "CIM_SecurityAssociationEndpoint.RefreshThresholdKbytesPercentage" }]
36    uint8 RefreshThresholdKbytesPercentage;
37
38
39 };