Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Schema
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1Schema
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
 lib/google/apis/apigee_v1/representations.rb,
 lib/google/apis/apigee_v1/representations.rb
Overview
Response for Schema call
Instance Attribute Summary collapse
- 
  
    
      #dimensions  ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaElement> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of schema fields grouped as dimensions. 
- 
  
    
      #meta  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Additional metadata associated with schema. 
- 
  
    
      #metrics  ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaElement> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of schema fields grouped as dimensions that can be used with an aggregate function such as sum,avg,min, andmax.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1Schema 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudApigeeV1Schema. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1Schema
Returns a new instance of GoogleCloudApigeeV1Schema.
| 9105 9106 9107 | # File 'lib/google/apis/apigee_v1/classes.rb', line 9105 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#dimensions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaElement>
List of schema fields grouped as dimensions.
Corresponds to the JSON property dimensions
| 9091 9092 9093 | # File 'lib/google/apis/apigee_v1/classes.rb', line 9091 def dimensions @dimensions end | 
#meta ⇒ Array<String>
Additional metadata associated with schema. This is a legacy field and usually
consists of an empty array of strings.
Corresponds to the JSON property meta
| 9097 9098 9099 | # File 'lib/google/apis/apigee_v1/classes.rb', line 9097 def @meta end | 
#metrics ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaElement>
List of schema fields grouped as dimensions that can be used with an aggregate
function such as sum, avg, min, and max.
Corresponds to the JSON property metrics
| 9103 9104 9105 | # File 'lib/google/apis/apigee_v1/classes.rb', line 9103 def metrics @metrics end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 9110 9111 9112 9113 9114 | # File 'lib/google/apis/apigee_v1/classes.rb', line 9110 def update!(**args) @dimensions = args[:dimensions] if args.key?(:dimensions) @meta = args[:meta] if args.key?(:meta) @metrics = args[:metrics] if args.key?(:metrics) end |