(file) Return to CIM_DatabaseSegmentSettingData.mof CVS log (file) (dir) Up to [Pegasus] / pegasus / Schemas / CIM225 / DMTF / Database

File: [Pegasus] / pegasus / Schemas / CIM225 / DMTF / Database / CIM_DatabaseSegmentSettingData.mof (download)
Revision: 1.1, Tue Jun 15 08:32:59 2010 UTC (14 years ago) by s.kodali
Branch: MAIN
CVS Tags: preBug9676, postBug9676, TASK_PEP317_1JUNE_2013, TASK-TASK_PEP362_RestfulService_branch-root, TASK-TASK_PEP362_RestfulService_branch-merged_out_from_trunk, TASK-TASK_PEP362_RestfulService_branch-merged_in_to_trunk, TASK-TASK_PEP362_RestfulService_branch-merged_in_from_branch, TASK-TASK_PEP362_RestfulService_branch-branch, TASK-PEP362_RestfulService-root, TASK-PEP362_RestfulService-merged_out_to_branch, TASK-PEP362_RestfulService-merged_out_from_trunk, TASK-PEP362_RestfulService-merged_in_to_trunk, TASK-PEP362_RestfulService-merged_in_from_branch, TASK-PEP362_RestfulService-branch, TASK-PEP317_pullop-root, TASK-PEP317_pullop-merged_out_to_branch, TASK-PEP317_pullop-merged_out_from_trunk, TASK-PEP317_pullop-merged_in_to_trunk, TASK-PEP317_pullop-merged_in_from_branch, TASK-PEP317_pullop-branch, RELEASE_2_14_1, RELEASE_2_14_0-RC2, RELEASE_2_14_0-RC1, RELEASE_2_14_0, RELEASE_2_14-root, RELEASE_2_14-branch, RELEASE_2_13_0-RC2, RELEASE_2_13_0-RC1, RELEASE_2_13_0-FC, RELEASE_2_13_0, RELEASE_2_13-root, RELEASE_2_13-branch, RELEASE_2_12_1-RC1, RELEASE_2_12_1, RELEASE_2_12_0-RC1, RELEASE_2_12_0-FC, RELEASE_2_12_0, RELEASE_2_12-root, RELEASE_2_12-branch, RELEASE_2_11_2-RC1, RELEASE_2_11_2, RELEASE_2_11_1-RC1, RELEASE_2_11_1, RELEASE_2_11_0-RC1, RELEASE_2_11_0-FC, RELEASE_2_11_0, RELEASE_2_11-root, RELEASE_2_11-branch, PREAUG25UPDATE, POSTAUG25UPDATE, HEAD, CIMRS_WORK_20130824, BeforeUpdateToHeadOct82011
BUG#: 8782
TITLE: Add Schema 225 to the cvs

// Copyright (c) 2005 DMTF.  All rights reserved.
   [Version ( "2.8.0" ), 
    UMLPackagePath ( "CIM::Database::Storage" ), 
    Description ( 
       "This class defines the attributes that affect the growth of a "
       "DatabaseSegment. The attributes are tied to the "
       "DatabaseSegment through an ElementSettingData association. \n"
       "This class can also be used to specify the default settings "
       "for all DatabaseSegment instances that are created within a "
       "CommonDatabase through an ElementSettingData association to "
       "the CommonDatabase. Processes that create new instances of "
       "DatabaseSegment and the associated setting data should check "
       "for a DatabaseSegmentSettingData instance that is associated "
       "with the CommonDatabase and should create a new instance of "
       "DatabaseSegmentSettingData that is specific to the "
       "DatabaseSegment only if the default settings need to be "
       "overridden or frozen for the specific DatabaseSegment "
       "instance." )]
class CIM_DatabaseSegmentSettingData : CIM_ScopedSettingData {

      [Write, Description ( 
          "The size, in bytes, of the first extent to be allocated "
          "when a database segment is created." ), 
       Units ( "Bytes" ), 
       PUnit ( "byte" )]
   uint64 InitialExtentSize;

      [Write, Description ( 
          "The total number of extents to be allocated when the "
          "database segment is created. This setting allows for a "
          "large initial segment allocation at creation time, even "
          "if contiguous space is not available." )]
   uint64 MinimumExtents;

      [Write, Description ( 
          "The upper limit on the number of extents that can be "
          "allocated for the segment." )]
   uint64 MaximumExtents;

      [Write, Description ( 
          "The size, in bytes, to be allocated for the next "
          "incremental extent for the segment. A NextExtentSize of "
          "0 indicates that the size of incremental extents will be "
          "determined based on the value of PercentIncrease." ), 
       Units ( "Bytes" ), 
       MinValue ( 0 ), 
       ModelCorrespondence { 
          "CIM_DatabaseSegmentSettingData.PercentIncrease" }, 
       PUnit ( "byte" )]
   uint64 NextExtentSize;

      [Write, Description ( 
          "The percentage by which the next incremental extent will "
          "grow over the previously allocated size of all extents "
          "for the segment. A PercentIncrease of 0 indicates that "
          "all incremental extents will be the same size, as "
          "specified by NextExtentSize. This value is ignored and "
          "should be set to 0 if NextExtentSize has a value other "
          "than 0." ), 
       MinValue ( 0 ), 
       ModelCorrespondence { 
          "CIM_DatabaseSegmentSettingData.NextExtentSize" }]
   uint16 PercentIncrease;

      [Write, Description ( 
          "A freelist is a list of the free blocks that are "
          "associated with a database segment. The freelist is used "
          "to determine which segments are eligible for accepting "
          "data when a new insert or update request is processed. "
          "The NumberOfFreeLists setting identifies the number of "
          "freelists that are defined for the database segment. "
          "This value is typically set to the expected number of "
          "concurrent inserts for the segment." )]
   uint32 NumberOfFreeLists;


};

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2