Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportResultView

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

The response for security report result view APIs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1SecurityReportResultView

Returns a new instance of GoogleCloudApigeeV1SecurityReportResultView.



12161
12162
12163
# File 'lib/google/apis/apigee_v1/classes.rb', line 12161

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

Instance Attribute Details

#codeFixnum

Error code when there is a failure. Corresponds to the JSON property code

Returns:

  • (Fixnum)


12138
12139
12140
# File 'lib/google/apis/apigee_v1/classes.rb', line 12138

def code
  @code
end

#errorString

Error message when there is a failure. Corresponds to the JSON property error

Returns:

  • (String)


12143
12144
12145
# File 'lib/google/apis/apigee_v1/classes.rb', line 12143

def error
  @error
end

#metadataGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportMetadata

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



12148
12149
12150
# File 'lib/google/apis/apigee_v1/classes.rb', line 12148

def 
  @metadata
end

#rowsArray<Object>

Rows of security report result. Each row is a JSON object. Example: sum( message_count): 1, developer_app: "(not set)",… Corresponds to the JSON property rows

Returns:

  • (Array<Object>)


12154
12155
12156
# File 'lib/google/apis/apigee_v1/classes.rb', line 12154

def rows
  @rows
end

#stateString

State of retrieving ResultView. Corresponds to the JSON property state

Returns:

  • (String)


12159
12160
12161
# File 'lib/google/apis/apigee_v1/classes.rb', line 12159

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12166
12167
12168
12169
12170
12171
12172
# File 'lib/google/apis/apigee_v1/classes.rb', line 12166

def update!(**args)
  @code = args[:code] if args.key?(:code)
  @error = args[:error] if args.key?(:error)
  @metadata = args[:metadata] if args.key?(:metadata)
  @rows = args[:rows] if args.key?(:rows)
  @state = args[:state] if args.key?(:state)
end