Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportResultView
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportResultView
- 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
-
#code ⇒ Fixnum
Error code when there is a failure.
-
#error ⇒ String
Error message when there is a failure.
-
#metadata ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportMetadata
Metadata for the security report.
-
#rows ⇒ Array<Object>
Rows of security report result.
-
#state ⇒ String
State of retrieving ResultView.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1SecurityReportResultView
constructor
A new instance of GoogleCloudApigeeV1SecurityReportResultView.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1SecurityReportResultView
Returns a new instance of GoogleCloudApigeeV1SecurityReportResultView.
12123 12124 12125 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12123 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ Fixnum
Error code when there is a failure.
Corresponds to the JSON property code
12100 12101 12102 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12100 def code @code end |
#error ⇒ String
Error message when there is a failure.
Corresponds to the JSON property error
12105 12106 12107 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12105 def error @error end |
#metadata ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportMetadata
Metadata for the security report.
Corresponds to the JSON property metadata
12110 12111 12112 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12110 def @metadata end |
#rows ⇒ Array<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
12116 12117 12118 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12116 def rows @rows end |
#state ⇒ String
State of retrieving ResultView.
Corresponds to the JSON property state
12121 12122 12123 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12121 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12128 12129 12130 12131 12132 12133 12134 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12128 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 |