XUpdatePeriods Data Type

A list of update_period which contains either update period table descriptor or list of update_peroid enum.

Java class for x_update_periods complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="x_update_periods">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <choice minOccurs="0">
         <element name="update_period_table_descriptor" type="{uri:lens:cube:0.1}x_update_period_table_descriptor" maxOccurs="unbounded" minOccurs="0"/>
         <element name="update_period" type="{uri:lens:cube:0.1}x_update_period" maxOccurs="unbounded" minOccurs="0"/>
       </choice>
     </restriction>
   </complexContent>
 </complexType>
 

Properties
name data type description
update_period_table_descriptor array of array of XUpdatePeriodTableDescriptor
update_period array of array of XUpdatePeriod

Example

{
  "update_period_table_descriptor" : [ [ {
    "update_period" : "CONTINUOUS",
    "table_desc" : {
      "external" : true,
      "part_cols" : { },
      "table_parameters" : { },
      "serde_parameters" : { },
      "bucket_cols" : [ [ "...", "..." ], [ "...", "..." ] ],
      "sort_cols" : [ [ "...", "..." ], [ "...", "..." ] ],
      "sort_col_order" : [ [ 12345, 12345 ], [ 12345, 12345 ] ],
      "skewed_info" : [ [ { }, { } ], [ { }, { } ] ],
      "time_part_cols" : [ [ "...", "..." ], [ "...", "..." ] ]
    }
  }, {
    "update_period" : "HOURLY",
    "table_desc" : {
      "external" : true,
      "part_cols" : { },
      "table_parameters" : { },
      "serde_parameters" : { },
      "bucket_cols" : [ [ "...", "..." ], [ "...", "..." ] ],
      "sort_cols" : [ [ "...", "..." ], [ "...", "..." ] ],
      "sort_col_order" : [ [ 12345, 12345 ], [ 12345, 12345 ] ],
      "skewed_info" : [ [ { }, { } ], [ { }, { } ] ],
      "time_part_cols" : [ [ "...", "..." ], [ "...", "..." ] ]
    }
  } ], [ {
    "update_period" : "YEARLY",
    "table_desc" : {
      "external" : true,
      "part_cols" : { },
      "table_parameters" : { },
      "serde_parameters" : { },
      "bucket_cols" : [ [ "...", "..." ], [ "...", "..." ] ],
      "sort_cols" : [ [ "...", "..." ], [ "...", "..." ] ],
      "sort_col_order" : [ [ 12345, 12345 ], [ 12345, 12345 ] ],
      "skewed_info" : [ [ { }, { } ], [ { }, { } ] ],
      "time_part_cols" : [ [ "...", "..." ], [ "...", "..." ] ]
    }
  }, {
    "update_period" : "HOURLY",
    "table_desc" : {
      "external" : true,
      "part_cols" : { },
      "table_parameters" : { },
      "serde_parameters" : { },
      "bucket_cols" : [ [ "...", "..." ], [ "...", "..." ] ],
      "sort_cols" : [ [ "...", "..." ], [ "...", "..." ] ],
      "sort_col_order" : [ [ 12345, 12345 ], [ 12345, 12345 ] ],
      "skewed_info" : [ [ { }, { } ], [ { }, { } ] ],
      "time_part_cols" : [ [ "...", "..." ], [ "...", "..." ] ]
    }
  } ] ],
  "update_period" : [ [ "SECONDLY", "WEEKLY" ], [ "DAILY", "MINUTELY" ] ]
}