Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportResultMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityReportResultMetadata
- 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
Contains informations about the security report results.
Instance Attribute Summary collapse
-
#expires ⇒ String
Output only.
-
#self ⇒ String
Self link of the query results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1SecurityReportResultMetadata
constructor
A new instance of GoogleCloudApigeeV1SecurityReportResultMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1SecurityReportResultMetadata
Returns a new instance of GoogleCloudApigeeV1SecurityReportResultMetadata.
12025 12026 12027 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12025 def initialize(**args) update!(**args) end |
Instance Attribute Details
#expires ⇒ String
Output only. Expire_time is set to 7 days after report creation. Query result
will be unaccessable after this time. Example: "2021-05-04T13:38:52-07:00"
Corresponds to the JSON property expires
12015 12016 12017 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12015 def expires @expires end |
#self ⇒ String
Self link of the query results. Example: /organizations/myorg/environments/
myenv/securityReports/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd/result or
following format if query is running at host level: /organizations/myorg/
hostSecurityReports/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd/result
Corresponds to the JSON property self
12023 12024 12025 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12023 def self @self end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12030 12031 12032 12033 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 12030 def update!(**args) @expires = args[:expires] if args.key?(:expires) @self = args[:self] if args.key?(:self) end |