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.



2762
2763
2764
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2762

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



2754
2755
2756
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2754

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)


2760
2761
2762
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2760

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2767
2768
2769
2770
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2767

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