Class: Google::Apis::NetworksecurityV1beta1::ListInterceptDeploymentGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::ListInterceptDeploymentGroupsResponse
- 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
Message for response to listing InterceptDeploymentGroups
Instance Attribute Summary collapse
-
#intercept_deployment_groups ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup>
The list of InterceptDeploymentGroup Corresponds to the JSON property
interceptDeploymentGroups. -
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListInterceptDeploymentGroupsResponse
constructor
A new instance of ListInterceptDeploymentGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListInterceptDeploymentGroupsResponse
Returns a new instance of ListInterceptDeploymentGroupsResponse.
2434 2435 2436 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2434 def initialize(**args) update!(**args) end |
Instance Attribute Details
#intercept_deployment_groups ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup>
The list of InterceptDeploymentGroup
Corresponds to the JSON property interceptDeploymentGroups
2427 2428 2429 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2427 def intercept_deployment_groups @intercept_deployment_groups end |
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Corresponds to the JSON property nextPageToken
2432 2433 2434 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2432 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2439 2440 2441 2442 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2439 def update!(**args) @intercept_deployment_groups = args[:intercept_deployment_groups] if args.key?(:intercept_deployment_groups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |