Class: Google::Apis::CloudbuildV1::ListBitbucketServerRepositoriesResponse

Inherits:
Object
  • Object
show all
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 the ListBitbucketServerRepositories RPC method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListBitbucketServerRepositoriesResponse

Returns a new instance of ListBitbucketServerRepositoriesResponse.



2872
2873
2874
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2872

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bitbucket_server_repositoriesArray<Google::Apis::CloudbuildV1::BitbucketServerRepository>

List of Bitbucket Server repositories. Corresponds to the JSON property bitbucketServerRepositories



2864
2865
2866
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2864

def bitbucket_server_repositories
  @bitbucket_server_repositories
end

#next_page_tokenString

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

Returns:

  • (String)


2870
2871
2872
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2870

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2877
2878
2879
2880
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2877

def update!(**args)
  @bitbucket_server_repositories = args[:bitbucket_server_repositories] if args.key?(:bitbucket_server_repositories)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end