Class: Google::Apis::DataformV1::PullGitCommitsRequest
- Inherits:
-
Object
- Object
- Google::Apis::DataformV1::PullGitCommitsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataform_v1/classes.rb,
lib/google/apis/dataform_v1/representations.rb,
lib/google/apis/dataform_v1/representations.rb
Overview
PullGitCommits request message.
Instance Attribute Summary collapse
-
#author ⇒ Google::Apis::DataformV1::CommitAuthor
Represents the author of a Git commit.
-
#remote_branch ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PullGitCommitsRequest
constructor
A new instance of PullGitCommitsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PullGitCommitsRequest
Returns a new instance of PullGitCommitsRequest.
2725 2726 2727 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 2725 def initialize(**args) update!(**args) end |
Instance Attribute Details
#author ⇒ Google::Apis::DataformV1::CommitAuthor
Represents the author of a Git commit.
Corresponds to the JSON property author
2717 2718 2719 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 2717 def @author end |
#remote_branch ⇒ String
Optional. The name of the branch in the Git remote from which to pull commits.
If left unset, the repository's default branch name will be used.
Corresponds to the JSON property remoteBranch
2723 2724 2725 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 2723 def remote_branch @remote_branch end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2730 2731 2732 2733 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 2730 def update!(**args) @author = args[:author] if args.key?(:author) @remote_branch = args[:remote_branch] if args.key?(:remote_branch) end |