Class: Google::Apis::CloudbuildV1::GitRepoSource
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::GitRepoSource
- 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
GitRepoSource describes a repo and ref of a code repository.
Instance Attribute Summary collapse
-
#bitbucket_server_config ⇒ String
The full resource name of the bitbucket server config.
-
#github_enterprise_config ⇒ String
The full resource name of the github enterprise config.
-
#ref ⇒ String
The branch or tag to use.
-
#repo_type ⇒ String
See RepoType below.
-
#uri ⇒ String
The URI of the repo.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GitRepoSource
constructor
A new instance of GitRepoSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GitRepoSource
Returns a new instance of GitRepoSource.
1985 1986 1987 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1985 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bitbucket_server_config ⇒ String
The full resource name of the bitbucket server config. Format: projects/
project/locations/location/bitbucketServerConfigs/id`.
Corresponds to the JSON propertybitbucketServerConfig`
1961 1962 1963 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1961 def bitbucket_server_config @bitbucket_server_config end |
#github_enterprise_config ⇒ String
The full resource name of the github enterprise config. Format: projects/
project/locations/location/githubEnterpriseConfigs/id. `projects/`
project`/githubEnterpriseConfigs/`id.
Corresponds to the JSON property githubEnterpriseConfig
1968 1969 1970 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1968 def github_enterprise_config @github_enterprise_config end |
#ref ⇒ String
The branch or tag to use. Must start with "refs/" (required).
Corresponds to the JSON property ref
1973 1974 1975 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1973 def ref @ref end |
#repo_type ⇒ String
See RepoType below.
Corresponds to the JSON property repoType
1978 1979 1980 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1978 def repo_type @repo_type end |
#uri ⇒ String
The URI of the repo. Either uri or repository can be specified and is required.
Corresponds to the JSON property uri
1983 1984 1985 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1983 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1990 1991 1992 1993 1994 1995 1996 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1990 def update!(**args) @bitbucket_server_config = args[:bitbucket_server_config] if args.key?(:bitbucket_server_config) @github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config) @ref = args[:ref] if args.key?(:ref) @repo_type = args[:repo_type] if args.key?(:repo_type) @uri = args[:uri] if args.key?(:uri) end |