Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ExportRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ExportRequest

Returns a new instance of GoogleCloudApigeeV1ExportRequest.



4907
4908
4909
# File 'lib/google/apis/apigee_v1/classes.rb', line 4907

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#csv_delimiterString

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

Returns:

  • (String)


4878
4879
4880
# File 'lib/google/apis/apigee_v1/classes.rb', line 4878

def csv_delimiter
  @csv_delimiter
end

#datastore_nameString

Required. Name of the preconfigured datastore. Corresponds to the JSON property datastoreName

Returns:

  • (String)


4883
4884
4885
# File 'lib/google/apis/apigee_v1/classes.rb', line 4883

def datastore_name
  @datastore_name
end

#date_rangeGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1DateRange

Date range of the data to export. Corresponds to the JSON property dateRange



4888
4889
4890
# File 'lib/google/apis/apigee_v1/classes.rb', line 4888

def date_range
  @date_range
end

#descriptionString

Optional. Description of the export job. Corresponds to the JSON property description

Returns:

  • (String)


4893
4894
4895
# File 'lib/google/apis/apigee_v1/classes.rb', line 4893

def description
  @description
end

#nameString

Required. Display name of the export job. Corresponds to the JSON property name

Returns:

  • (String)


4898
4899
4900
# File 'lib/google/apis/apigee_v1/classes.rb', line 4898

def name
  @name
end

#output_formatString

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

Returns:

  • (String)


4905
4906
4907
# File 'lib/google/apis/apigee_v1/classes.rb', line 4905

def output_format
  @output_format
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4912
4913
4914
4915
4916
4917
4918
4919
# File 'lib/google/apis/apigee_v1/classes.rb', line 4912

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