google-apis-securitycenter_v1beta1 0.67.0 → 0.68.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 530c0d862979113d46ec219b43f621e38c5d3f1482717d0bc3a29100f49de28a
4
- data.tar.gz: 2ba79d389b78737fae2895c8ba97e654a2a578aa3364532aba3c374d07b34594
3
+ metadata.gz: cf5d805e338983197b0e9329d08dbfdf1c1eaee2f873e4ee0f67721e475b962a
4
+ data.tar.gz: 8cbf05ecb7e7189d8abc443cdd8835e98a41b638da74c1541ee69cdc114ef696
5
5
  SHA512:
6
- metadata.gz: 2a8422cba85c623c17811454c2d07e2d1b91b113250c7735bebd89bd6f894faac33cc4ca45bc8d06ee109f941f3dc91db495d073354d05c16065324b596b949d
7
- data.tar.gz: f0ea41b22163fceda0e51beb82f5e166d0135f753770da99a3c64697043186077e995ebaf442f625183c722559ca71c5a71d1b9cd50069200547c6facbccfa41
6
+ metadata.gz: b24c8edc2a3606d74cf1860d6ea2c4e45441d7497b98afde99b1f7b12d2c64d2f4170858d41917c17930a68d6ae9f8b16b587b190ccdf878b49122bf1f760807
7
+ data.tar.gz: d49b66f0babdcd49a6074343705e2e6bbe0f1f2ca0846033c72a41b4885824035d774bc35dcb443b580a56a7c93adfccb534b879f4fa73733bfc54a75472aced
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.68.0 (2024-01-07)
4
+
5
+ * Regenerated from discovery document revision 20240101
6
+
3
7
  ### v0.67.0 (2023-12-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20231218
@@ -2102,6 +2102,21 @@ module Google
2102
2102
  # @return [Array<String>]
2103
2103
  attr_accessor :assignees
2104
2104
 
2105
+ # The priority of the finding's corresponding case in the external system.
2106
+ # Corresponds to the JSON property `casePriority`
2107
+ # @return [String]
2108
+ attr_accessor :case_priority
2109
+
2110
+ # The SLA of the finding's corresponding case in the external system.
2111
+ # Corresponds to the JSON property `caseSla`
2112
+ # @return [String]
2113
+ attr_accessor :case_sla
2114
+
2115
+ # The link to the finding's corresponding case in the external system.
2116
+ # Corresponds to the JSON property `caseUri`
2117
+ # @return [String]
2118
+ attr_accessor :case_uri
2119
+
2105
2120
  # The time when the case was last updated, as reported by the external system.
2106
2121
  # Corresponds to the JSON property `externalSystemUpdateTime`
2107
2122
  # @return [String]
@@ -2127,6 +2142,12 @@ module Google
2127
2142
  # @return [String]
2128
2143
  attr_accessor :status
2129
2144
 
2145
+ # Information about the ticket, if any, that is being used to track the
2146
+ # resolution of the issue that is identified by this finding.
2147
+ # Corresponds to the JSON property `ticketInfo`
2148
+ # @return [Google::Apis::SecuritycenterV1beta1::TicketInfo]
2149
+ attr_accessor :ticket_info
2150
+
2130
2151
  def initialize(**args)
2131
2152
  update!(**args)
2132
2153
  end
@@ -2134,10 +2155,14 @@ module Google
2134
2155
  # Update properties of this object
2135
2156
  def update!(**args)
2136
2157
  @assignees = args[:assignees] if args.key?(:assignees)
2158
+ @case_priority = args[:case_priority] if args.key?(:case_priority)
2159
+ @case_sla = args[:case_sla] if args.key?(:case_sla)
2160
+ @case_uri = args[:case_uri] if args.key?(:case_uri)
2137
2161
  @external_system_update_time = args[:external_system_update_time] if args.key?(:external_system_update_time)
2138
2162
  @external_uid = args[:external_uid] if args.key?(:external_uid)
2139
2163
  @name = args[:name] if args.key?(:name)
2140
2164
  @status = args[:status] if args.key?(:status)
2165
+ @ticket_info = args[:ticket_info] if args.key?(:ticket_info)
2141
2166
  end
2142
2167
  end
2143
2168
 
@@ -4767,6 +4792,56 @@ module Google
4767
4792
  end
4768
4793
  end
4769
4794
 
4795
+ # Information about the ticket, if any, that is being used to track the
4796
+ # resolution of the issue that is identified by this finding.
4797
+ class TicketInfo
4798
+ include Google::Apis::Core::Hashable
4799
+
4800
+ # The assignee of the ticket in the ticket system.
4801
+ # Corresponds to the JSON property `assignee`
4802
+ # @return [String]
4803
+ attr_accessor :assignee
4804
+
4805
+ # The description of the ticket in the ticket system.
4806
+ # Corresponds to the JSON property `description`
4807
+ # @return [String]
4808
+ attr_accessor :description
4809
+
4810
+ # The identifier of the ticket in the ticket system.
4811
+ # Corresponds to the JSON property `id`
4812
+ # @return [String]
4813
+ attr_accessor :id
4814
+
4815
+ # The latest status of the ticket, as reported by the ticket system.
4816
+ # Corresponds to the JSON property `status`
4817
+ # @return [String]
4818
+ attr_accessor :status
4819
+
4820
+ # The time when the ticket was last updated, as reported by the ticket system.
4821
+ # Corresponds to the JSON property `updateTime`
4822
+ # @return [String]
4823
+ attr_accessor :update_time
4824
+
4825
+ # The link to the ticket in the ticket system.
4826
+ # Corresponds to the JSON property `uri`
4827
+ # @return [String]
4828
+ attr_accessor :uri
4829
+
4830
+ def initialize(**args)
4831
+ update!(**args)
4832
+ end
4833
+
4834
+ # Update properties of this object
4835
+ def update!(**args)
4836
+ @assignee = args[:assignee] if args.key?(:assignee)
4837
+ @description = args[:description] if args.key?(:description)
4838
+ @id = args[:id] if args.key?(:id)
4839
+ @status = args[:status] if args.key?(:status)
4840
+ @update_time = args[:update_time] if args.key?(:update_time)
4841
+ @uri = args[:uri] if args.key?(:uri)
4842
+ end
4843
+ end
4844
+
4770
4845
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
4771
4846
  class Vulnerability
4772
4847
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1beta1
18
18
  # Version of the google-apis-securitycenter_v1beta1 gem
19
- GEM_VERSION = "0.67.0"
19
+ GEM_VERSION = "0.68.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231218"
25
+ REVISION = "20240101"
26
26
  end
27
27
  end
28
28
  end
@@ -646,6 +646,12 @@ module Google
646
646
  include Google::Apis::Core::JsonObjectSupport
647
647
  end
648
648
 
649
+ class TicketInfo
650
+ class Representation < Google::Apis::Core::JsonRepresentation; end
651
+
652
+ include Google::Apis::Core::JsonObjectSupport
653
+ end
654
+
649
655
  class Vulnerability
650
656
  class Representation < Google::Apis::Core::JsonRepresentation; end
651
657
 
@@ -1146,10 +1152,15 @@ module Google
1146
1152
  # @private
1147
1153
  class Representation < Google::Apis::Core::JsonRepresentation
1148
1154
  collection :assignees, as: 'assignees'
1155
+ property :case_priority, as: 'casePriority'
1156
+ property :case_sla, as: 'caseSla'
1157
+ property :case_uri, as: 'caseUri'
1149
1158
  property :external_system_update_time, as: 'externalSystemUpdateTime'
1150
1159
  property :external_uid, as: 'externalUid'
1151
1160
  property :name, as: 'name'
1152
1161
  property :status, as: 'status'
1162
+ property :ticket_info, as: 'ticketInfo', class: Google::Apis::SecuritycenterV1beta1::TicketInfo, decorator: Google::Apis::SecuritycenterV1beta1::TicketInfo::Representation
1163
+
1153
1164
  end
1154
1165
  end
1155
1166
 
@@ -1795,6 +1806,18 @@ module Google
1795
1806
  end
1796
1807
  end
1797
1808
 
1809
+ class TicketInfo
1810
+ # @private
1811
+ class Representation < Google::Apis::Core::JsonRepresentation
1812
+ property :assignee, as: 'assignee'
1813
+ property :description, as: 'description'
1814
+ property :id, as: 'id'
1815
+ property :status, as: 'status'
1816
+ property :update_time, as: 'updateTime'
1817
+ property :uri, as: 'uri'
1818
+ end
1819
+ end
1820
+
1798
1821
  class Vulnerability
1799
1822
  # @private
1800
1823
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.67.0
4
+ version: 0.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-24 00:00:00.000000000 Z
11
+ date: 2024-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.67.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.68.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Security Command Center API V1beta1