Class: Google::Apis::NetworksecurityV1beta1::ListDnsThreatDetectorsResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::ListDnsThreatDetectorsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networksecurity_v1beta1/classes.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb
Overview
The response message to requesting a list of DnsThreatDetectors.
Instance Attribute Summary collapse
-
#dns_threat_detectors ⇒ Array<Google::Apis::NetworksecurityV1beta1::DnsThreatDetector>
The list of DnsThreatDetector resources.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token, to retrieve the next page. -
#unreachable ⇒ Array<String>
Unordered list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDnsThreatDetectorsResponse
constructor
A new instance of ListDnsThreatDetectorsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDnsThreatDetectorsResponse
Returns a new instance of ListDnsThreatDetectorsResponse.
3000 3001 3002 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3000 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dns_threat_detectors ⇒ Array<Google::Apis::NetworksecurityV1beta1::DnsThreatDetector>
The list of DnsThreatDetector resources.
Corresponds to the JSON property dnsThreatDetectors
2988 2989 2990 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2988 def dns_threat_detectors @dns_threat_detectors end |
#next_page_token ⇒ String
A token, which can be sent as page_token, to retrieve the next page.
Corresponds to the JSON property nextPageToken
2993 2994 2995 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2993 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Unordered list. Unreachable DnsThreatDetector resources.
Corresponds to the JSON property unreachable
2998 2999 3000 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2998 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3005 3006 3007 3008 3009 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3005 def update!(**args) @dns_threat_detectors = args[:dns_threat_detectors] if args.key?(:dns_threat_detectors) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |