Class: OCI::Devops::Models::RepositoryBranchSummary

Inherits:
RepositoryRefSummary show all
Defined in:
lib/oci/devops/models/repository_branch_summary.rb

Overview

Branch related information.

Instance Attribute Summary collapse

Attributes inherited from RepositoryRefSummary

#defined_tags, #freeform_tags, #full_ref_name, #ref_name, #ref_type, #repository_id, #system_tags, #time_created, #time_updated

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from RepositoryRefSummary

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ RepositoryBranchSummary

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 88

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['refType'] = 'BRANCH'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.commit_id = attributes[:'commitId'] if attributes[:'commitId']

  raise 'You cannot provide both :commitId and :commit_id' if attributes.key?(:'commitId') && attributes.key?(:'commit_id')

  self.commit_id = attributes[:'commit_id'] if attributes[:'commit_id']

  self.latest_commit_author_name = attributes[:'latestCommitAuthorName'] if attributes[:'latestCommitAuthorName']

  raise 'You cannot provide both :latestCommitAuthorName and :latest_commit_author_name' if attributes.key?(:'latestCommitAuthorName') && attributes.key?(:'latest_commit_author_name')

  self.latest_commit_author_name = attributes[:'latest_commit_author_name'] if attributes[:'latest_commit_author_name']

  self.top_n_pull_requests = attributes[:'topNPullRequests'] if attributes[:'topNPullRequests']

  raise 'You cannot provide both :topNPullRequests and :top_n_pull_requests' if attributes.key?(:'topNPullRequests') && attributes.key?(:'top_n_pull_requests')

  self.top_n_pull_requests = attributes[:'top_n_pull_requests'] if attributes[:'top_n_pull_requests']

  self.pull_request_state_counts = attributes[:'pullRequestStateCounts'] if attributes[:'pullRequestStateCounts']

  raise 'You cannot provide both :pullRequestStateCounts and :pull_request_state_counts' if attributes.key?(:'pullRequestStateCounts') && attributes.key?(:'pull_request_state_counts')

  self.pull_request_state_counts = attributes[:'pull_request_state_counts'] if attributes[:'pull_request_state_counts']
end

Instance Attribute Details

#commit_idString

[Required] Commit ID pointed to by the new branch.

Returns:

  • (String)


14
15
16
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 14

def commit_id
  @commit_id
end

#latest_commit_author_nameString

The author of latest commit

Returns:

  • (String)


18
19
20
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 18

def latest_commit_author_name
  @latest_commit_author_name
end

#pull_request_state_countsHash<String, Integer>

Counts of pull requests for this branch grouped by their state.

Returns:

  • (Hash<String, Integer>)


26
27
28
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 26

def pull_request_state_counts
  @pull_request_state_counts
end

#top_n_pull_requestsArray<OCI::Devops::Models::PullRequestSummary>

Up to 5 pull requests associated with this branch.



22
23
24
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 22

def top_n_pull_requests
  @top_n_pull_requests
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 29

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'ref_name': :'refName',
    'ref_type': :'refType',
    'full_ref_name': :'fullRefName',
    'repository_id': :'repositoryId',
    'time_created': :'timeCreated',
    'time_updated': :'timeUpdated',
    'freeform_tags': :'freeformTags',
    'defined_tags': :'definedTags',
    'system_tags': :'systemTags',
    'commit_id': :'commitId',
    'latest_commit_author_name': :'latestCommitAuthorName',
    'top_n_pull_requests': :'topNPullRequests',
    'pull_request_state_counts': :'pullRequestStateCounts'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 50

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'ref_name': :'String',
    'ref_type': :'String',
    'full_ref_name': :'String',
    'repository_id': :'String',
    'time_created': :'DateTime',
    'time_updated': :'DateTime',
    'freeform_tags': :'Hash<String, String>',
    'defined_tags': :'Hash<String, Hash<String, Object>>',
    'system_tags': :'Hash<String, Hash<String, Object>>',
    'commit_id': :'String',
    'latest_commit_author_name': :'String',
    'top_n_pull_requests': :'Array<OCI::Devops::Models::PullRequestSummary>',
    'pull_request_state_counts': :'Hash<String, Integer>'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 130

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    ref_name == other.ref_name &&
    ref_type == other.ref_type &&
    full_ref_name == other.full_ref_name &&
    repository_id == other.repository_id &&
    time_created == other.time_created &&
    time_updated == other.time_updated &&
    freeform_tags == other.freeform_tags &&
    defined_tags == other.defined_tags &&
    system_tags == other.system_tags &&
    commit_id == other.commit_id &&
    latest_commit_author_name == other.latest_commit_author_name &&
    top_n_pull_requests == other.top_n_pull_requests &&
    pull_request_state_counts == other.pull_request_state_counts
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 172

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)

  self.class.swagger_types.each_pair do |key, type|
    if type =~ /^Array<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        public_method("#{key}=").call(
          attributes[self.class.attribute_map[key]]
            .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) }
        )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      public_method("#{key}=").call(
        OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]])
      )
    end
    # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(other) ⇒ Boolean

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


152
153
154
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 152

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



161
162
163
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 161

def hash
  [ref_name, ref_type, full_ref_name, repository_id, time_created, time_updated, freeform_tags, defined_tags, system_tags, commit_id, latest_commit_author_name, top_n_pull_requests, pull_request_state_counts].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



205
206
207
208
209
210
211
212
213
214
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 205

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = public_method(attr).call
    next if value.nil? && !instance_variable_defined?("@#{attr}")

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



199
200
201
# File 'lib/oci/devops/models/repository_branch_summary.rb', line 199

def to_s
  to_hash.to_s
end