Class: Google::Apis::CloudbuildV1::ListBitbucketServerConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::ListBitbucketServerConfigsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbuild_v1/classes.rb,
lib/google/apis/cloudbuild_v1/representations.rb,
lib/google/apis/cloudbuild_v1/representations.rb
Overview
RPC response object returned by ListBitbucketServerConfigs RPC method.
Instance Attribute Summary collapse
-
#bitbucket_server_configs ⇒ Array<Google::Apis::CloudbuildV1::BitbucketServerConfig>
A list of BitbucketServerConfigs Corresponds to the JSON property
bitbucketServerConfigs
. -
#next_page_token ⇒ String
A token that can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListBitbucketServerConfigsResponse
constructor
A new instance of ListBitbucketServerConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListBitbucketServerConfigsResponse
Returns a new instance of ListBitbucketServerConfigsResponse.
2846 2847 2848 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2846 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bitbucket_server_configs ⇒ Array<Google::Apis::CloudbuildV1::BitbucketServerConfig>
A list of BitbucketServerConfigs
Corresponds to the JSON property bitbucketServerConfigs
2838 2839 2840 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2838 def bitbucket_server_configs @bitbucket_server_configs end |
#next_page_token ⇒ String
A token that 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
2844 2845 2846 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2844 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2851 2852 2853 2854 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2851 def update!(**args) @bitbucket_server_configs = args[:bitbucket_server_configs] if args.key?(:bitbucket_server_configs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |