Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ExportRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1ExportRequest
 
 
- 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
Request body for [CreateExportRequest]
Instance Attribute Summary collapse
- 
  
    
      #csv_delimiter  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #datastore_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #date_range  ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1DateRange 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Date range of the data to export.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #output_format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1ExportRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1ExportRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ExportRequest
Returns a new instance of GoogleCloudApigeeV1ExportRequest.
      4760 4761 4762  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 4760 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#csv_delimiter ⇒ String
Optional. Delimiter used in the CSV file, if outputFormat is set to csv.
Defaults to the , (comma) character. Supported delimiter characters include
comma (,), pipe (|), and tab (\t).
Corresponds to the JSON property csvDelimiter
      4731 4732 4733  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 4731 def csv_delimiter @csv_delimiter end  | 
  
#datastore_name ⇒ String
Required. Name of the preconfigured datastore.
Corresponds to the JSON property datastoreName
      4736 4737 4738  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 4736 def datastore_name @datastore_name end  | 
  
#date_range ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1DateRange
Date range of the data to export.
Corresponds to the JSON property dateRange
      4741 4742 4743  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 4741 def date_range @date_range end  | 
  
#description ⇒ String
Optional. Description of the export job.
Corresponds to the JSON property description
      4746 4747 4748  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 4746 def description @description end  | 
  
#name ⇒ String
Required. Display name of the export job.
Corresponds to the JSON property name
      4751 4752 4753  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 4751 def name @name end  | 
  
#output_format ⇒ String
Optional. Output format of the export. Valid values include: csv or json.
Defaults to json. Note: Configure the delimiter for CSV output using the 
csvDelimiter property.
Corresponds to the JSON property outputFormat
      4758 4759 4760  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 4758 def output_format @output_format end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4765 4766 4767 4768 4769 4770 4771 4772  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 4765 def update!(**args) @csv_delimiter = args[:csv_delimiter] if args.key?(:csv_delimiter) @datastore_name = args[:datastore_name] if args.key?(:datastore_name) @date_range = args[:date_range] if args.key?(:date_range) @description = args[:description] if args.key?(:description) @name = args[:name] if args.key?(:name) @output_format = args[:output_format] if args.key?(:output_format) end  |