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_tokento 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.
2885 2886 2887 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2885 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
2877 2878 2879 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2877 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
2883 2884 2885 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2883 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2890 2891 2892 2893 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2890 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 |