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.



2911
2912
2913
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2911

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



2903
2904
2905
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2903

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)


2909
2910
2911
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2909

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2916
2917
2918
2919
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 2916

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