Class: Google::Apis::ClouddeployV1::ListDeployPoliciesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::ListDeployPoliciesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb
Overview
The response object from ListDeployPolicies.
Instance Attribute Summary collapse
-
#deploy_policies ⇒ Array<Google::Apis::ClouddeployV1::DeployPolicy>
The
DeployPolicyobjects. -
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDeployPoliciesResponse
constructor
A new instance of ListDeployPoliciesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDeployPoliciesResponse
Returns a new instance of ListDeployPoliciesResponse.
2923 2924 2925 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2923 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deploy_policies ⇒ Array<Google::Apis::ClouddeployV1::DeployPolicy>
The DeployPolicy objects.
Corresponds to the JSON property deployPolicies
2910 2911 2912 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2910 def deploy_policies @deploy_policies end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
2916 2917 2918 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2916 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
2921 2922 2923 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2921 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2928 2929 2930 2931 2932 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2928 def update!(**args) @deploy_policies = args[:deploy_policies] if args.key?(:deploy_policies) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |