Class: Google::Apis::NetworksecurityV1beta1::ListClientTlsPoliciesResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::ListClientTlsPoliciesResponse
- 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
Response returned by the ListClientTlsPolicies method.
Instance Attribute Summary collapse
-
#client_tls_policies ⇒ Array<Google::Apis::NetworksecurityV1beta1::ClientTlsPolicy>
List of ClientTlsPolicy resources.
-
#next_page_token ⇒ String
If there might be more results than those appearing in this response, then
next_page_token
is included.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListClientTlsPoliciesResponse
constructor
A new instance of ListClientTlsPoliciesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListClientTlsPoliciesResponse
Returns a new instance of ListClientTlsPoliciesResponse.
2267 2268 2269 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2267 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_tls_policies ⇒ Array<Google::Apis::NetworksecurityV1beta1::ClientTlsPolicy>
List of ClientTlsPolicy resources.
Corresponds to the JSON property clientTlsPolicies
2258 2259 2260 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2258 def client_tls_policies @client_tls_policies end |
#next_page_token ⇒ String
If there might be more results than those appearing in this response, then
next_page_token
is included. To get the next set of results, call this method
again using the value of next_page_token
as page_token
.
Corresponds to the JSON property nextPageToken
2265 2266 2267 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2265 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2272 2273 2274 2275 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2272 def update!(**args) @client_tls_policies = args[:client_tls_policies] if args.key?(:client_tls_policies) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |