Class: Google::Apis::CloudbuildV1::DeveloperConnectConfig
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::DeveloperConnectConfig
- 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
This config defines the location of a source through Developer Connect.
Instance Attribute Summary collapse
-
#dir ⇒ String
Required.
-
#git_repository_link ⇒ String
Required.
-
#revision ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeveloperConnectConfig
constructor
A new instance of DeveloperConnectConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeveloperConnectConfig
Returns a new instance of DeveloperConnectConfig.
1970 1971 1972 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1970 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dir ⇒ String
Required. Directory, relative to the source root, in which to run the build.
Corresponds to the JSON property dir
1956 1957 1958 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1956 def dir @dir end |
#git_repository_link ⇒ String
Required. The Developer Connect Git repository link, formatted as projects/*/
locations/*/connections/*/gitRepositoryLink/*
.
Corresponds to the JSON property gitRepositoryLink
1962 1963 1964 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1962 def git_repository_link @git_repository_link end |
#revision ⇒ String
Required. The revision to fetch from the Git repository such as a branch, a
tag, a commit SHA, or any Git ref.
Corresponds to the JSON property revision
1968 1969 1970 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1968 def revision @revision end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1975 1976 1977 1978 1979 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1975 def update!(**args) @dir = args[:dir] if args.key?(:dir) @git_repository_link = args[:git_repository_link] if args.key?(:git_repository_link) @revision = args[:revision] if args.key?(:revision) end |