Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReport

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

SecurityReport saves all the information about the created security report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1SecurityReport

Returns a new instance of GoogleCloudApigeeV1SecurityReport.



8652
8653
8654
# File 'lib/google/apis/apigee_v1/classes.rb', line 8652

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

Instance Attribute Details

#createdString

Creation time of the query. Corresponds to the JSON property created

Returns:

  • (String)


8586
8587
8588
# File 'lib/google/apis/apigee_v1/classes.rb', line 8586

def created
  @created
end

#display_nameString

Display Name specified by the user. Corresponds to the JSON property displayName

Returns:

  • (String)


8591
8592
8593
# File 'lib/google/apis/apigee_v1/classes.rb', line 8591

def display_name
  @display_name
end

#envgroup_hostnameString

Hostname is available only when query is executed at host level. Corresponds to the JSON property envgroupHostname

Returns:

  • (String)


8596
8597
8598
# File 'lib/google/apis/apigee_v1/classes.rb', line 8596

def envgroup_hostname
  @envgroup_hostname
end

#errorString

Error is set when query fails. Corresponds to the JSON property error

Returns:

  • (String)


8601
8602
8603
# File 'lib/google/apis/apigee_v1/classes.rb', line 8601

def error
  @error
end

#execution_timeString

ExecutionTime is available only after the query is completed. Corresponds to the JSON property executionTime

Returns:

  • (String)


8606
8607
8608
# File 'lib/google/apis/apigee_v1/classes.rb', line 8606

def execution_time
  @execution_time
end

#query_paramsGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportMetadata

Metadata for the security report. Corresponds to the JSON property queryParams



8611
8612
8613
# File 'lib/google/apis/apigee_v1/classes.rb', line 8611

def query_params
  @query_params
end

#report_definition_idString

Report Definition ID. Corresponds to the JSON property reportDefinitionId

Returns:

  • (String)


8616
8617
8618
# File 'lib/google/apis/apigee_v1/classes.rb', line 8616

def report_definition_id
  @report_definition_id
end

#resultGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportResultMetadata

Contains informations about the security report results. Corresponds to the JSON property result



8621
8622
8623
# File 'lib/google/apis/apigee_v1/classes.rb', line 8621

def result
  @result
end

#result_file_sizeString

ResultFileSize is available only after the query is completed. Corresponds to the JSON property resultFileSize

Returns:

  • (String)


8626
8627
8628
# File 'lib/google/apis/apigee_v1/classes.rb', line 8626

def result_file_size
  @result_file_size
end

#result_rowsFixnum

ResultRows is available only after the query is completed. Corresponds to the JSON property resultRows

Returns:

  • (Fixnum)


8631
8632
8633
# File 'lib/google/apis/apigee_v1/classes.rb', line 8631

def result_rows
  @result_rows
end

#selfString

Self link of the query. Example: /organizations/myorg/environments/myenv/ securityReports/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd or following format if query is running at host level: /organizations/myorg/hostSecurityReports/ 9cfc0d85-0f30-46d6-ae6f-318d0cb961bd Corresponds to the JSON property self

Returns:

  • (String)


8639
8640
8641
# File 'lib/google/apis/apigee_v1/classes.rb', line 8639

def self
  @self
end

#stateString

Query state could be "enqueued", "running", "completed", "expired" and "failed" . Corresponds to the JSON property state

Returns:

  • (String)


8645
8646
8647
# File 'lib/google/apis/apigee_v1/classes.rb', line 8645

def state
  @state
end

#updatedString

Output only. Last updated timestamp for the query. Corresponds to the JSON property updated

Returns:

  • (String)


8650
8651
8652
# File 'lib/google/apis/apigee_v1/classes.rb', line 8650

def updated
  @updated
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8657
8658
8659
8660
8661
8662
8663
8664
8665
8666
8667
8668
8669
8670
8671
# File 'lib/google/apis/apigee_v1/classes.rb', line 8657

def update!(**args)
  @created = args[:created] if args.key?(:created)
  @display_name = args[:display_name] if args.key?(:display_name)
  @envgroup_hostname = args[:envgroup_hostname] if args.key?(:envgroup_hostname)
  @error = args[:error] if args.key?(:error)
  @execution_time = args[:execution_time] if args.key?(:execution_time)
  @query_params = args[:query_params] if args.key?(:query_params)
  @report_definition_id = args[:report_definition_id] if args.key?(:report_definition_id)
  @result = args[:result] if args.key?(:result)
  @result_file_size = args[:result_file_size] if args.key?(:result_file_size)
  @result_rows = args[:result_rows] if args.key?(:result_rows)
  @self = args[:self] if args.key?(:self)
  @state = args[:state] if args.key?(:state)
  @updated = args[:updated] if args.key?(:updated)
end