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.
10471 10472 10473 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10471 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ Fixnum
Error code when there is a failure.
Corresponds to the JSON property code
10448 10449 10450 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10448 def code @code end |
#error ⇒ String
Error message when there is a failure.
Corresponds to the JSON property error
10453 10454 10455 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10453 def error @error end |
#metadata ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportMetadata
Metadata for the security report.
Corresponds to the JSON property metadata
10458 10459 10460 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10458 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
10464 10465 10466 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10464 def rows @rows end |
#state ⇒ String
State of retrieving ResultView.
Corresponds to the JSON property state
10469 10470 10471 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10469 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10476 10477 10478 10479 10480 10481 10482 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10476 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 |