google-apis-securitycenter_v1 0.72.0 → 0.73.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 05a5a4a30aec8d1f49ad4599232b8c41f9c37e9422d04c5217186ed067cec193
4
- data.tar.gz: 7a7602d7419773ea00b3045f8773459a436d970df69e26a317af204ecba048ef
3
+ metadata.gz: 54f29848fa48a148735f83189999adae9962384d603e1f7b185ca85446a905ec
4
+ data.tar.gz: 9aa19802961078c47f9a49e92ecf495d90bb3469debdd03bda5cd6464592e5e9
5
5
  SHA512:
6
- metadata.gz: c38b749116c0df1459adbd0dd76b109f3a4a72c871ea7ba65032bd7356df0d1d7935a2006f4d0a80f114feed5d64022fa54f7283a0d7b18d076bf589e87e9c31
7
- data.tar.gz: d5a7fa60cb089f320665d44c1b96db6765560b7f30a804df7eeee93addc037a7dfec118394671c400f75d80d74ea2429a070e21292f0df2fc2ced3c672f9a16f
6
+ metadata.gz: 80229234b07a426500190dbbe3ff28cd77104e25c78cc78ef4a893be10651dedd869a058a1be4d398eea6ac336e3b68b99236a26332459b648775ed129f634a5
7
+ data.tar.gz: 3199854e7ca783b0a33a833cd0fc056a30e99bccf286d56c60140d206d45477cbc14d7881d0f19461defa637fcb789cd7af73a78a2c945878689d4dd33e4cb79
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.73.0 (2024-01-07)
4
+
5
+ * Regenerated from discovery document revision 20240101
6
+
3
7
  ### v0.72.0 (2023-12-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20231218
@@ -2565,6 +2565,21 @@ module Google
2565
2565
  # @return [Array<String>]
2566
2566
  attr_accessor :assignees
2567
2567
 
2568
+ # The priority of the finding's corresponding case in the external system.
2569
+ # Corresponds to the JSON property `casePriority`
2570
+ # @return [String]
2571
+ attr_accessor :case_priority
2572
+
2573
+ # The SLA of the finding's corresponding case in the external system.
2574
+ # Corresponds to the JSON property `caseSla`
2575
+ # @return [String]
2576
+ attr_accessor :case_sla
2577
+
2578
+ # The link to the finding's corresponding case in the external system.
2579
+ # Corresponds to the JSON property `caseUri`
2580
+ # @return [String]
2581
+ attr_accessor :case_uri
2582
+
2568
2583
  # The time when the case was last updated, as reported by the external system.
2569
2584
  # Corresponds to the JSON property `externalSystemUpdateTime`
2570
2585
  # @return [String]
@@ -2590,6 +2605,12 @@ module Google
2590
2605
  # @return [String]
2591
2606
  attr_accessor :status
2592
2607
 
2608
+ # Information about the ticket, if any, that is being used to track the
2609
+ # resolution of the issue that is identified by this finding.
2610
+ # Corresponds to the JSON property `ticketInfo`
2611
+ # @return [Google::Apis::SecuritycenterV1::TicketInfo]
2612
+ attr_accessor :ticket_info
2613
+
2593
2614
  def initialize(**args)
2594
2615
  update!(**args)
2595
2616
  end
@@ -2597,10 +2618,14 @@ module Google
2597
2618
  # Update properties of this object
2598
2619
  def update!(**args)
2599
2620
  @assignees = args[:assignees] if args.key?(:assignees)
2621
+ @case_priority = args[:case_priority] if args.key?(:case_priority)
2622
+ @case_sla = args[:case_sla] if args.key?(:case_sla)
2623
+ @case_uri = args[:case_uri] if args.key?(:case_uri)
2600
2624
  @external_system_update_time = args[:external_system_update_time] if args.key?(:external_system_update_time)
2601
2625
  @external_uid = args[:external_uid] if args.key?(:external_uid)
2602
2626
  @name = args[:name] if args.key?(:name)
2603
2627
  @status = args[:status] if args.key?(:status)
2628
+ @ticket_info = args[:ticket_info] if args.key?(:ticket_info)
2604
2629
  end
2605
2630
  end
2606
2631
 
@@ -6014,6 +6039,56 @@ module Google
6014
6039
  end
6015
6040
  end
6016
6041
 
6042
+ # Information about the ticket, if any, that is being used to track the
6043
+ # resolution of the issue that is identified by this finding.
6044
+ class TicketInfo
6045
+ include Google::Apis::Core::Hashable
6046
+
6047
+ # The assignee of the ticket in the ticket system.
6048
+ # Corresponds to the JSON property `assignee`
6049
+ # @return [String]
6050
+ attr_accessor :assignee
6051
+
6052
+ # The description of the ticket in the ticket system.
6053
+ # Corresponds to the JSON property `description`
6054
+ # @return [String]
6055
+ attr_accessor :description
6056
+
6057
+ # The identifier of the ticket in the ticket system.
6058
+ # Corresponds to the JSON property `id`
6059
+ # @return [String]
6060
+ attr_accessor :id
6061
+
6062
+ # The latest status of the ticket, as reported by the ticket system.
6063
+ # Corresponds to the JSON property `status`
6064
+ # @return [String]
6065
+ attr_accessor :status
6066
+
6067
+ # The time when the ticket was last updated, as reported by the ticket system.
6068
+ # Corresponds to the JSON property `updateTime`
6069
+ # @return [String]
6070
+ attr_accessor :update_time
6071
+
6072
+ # The link to the ticket in the ticket system.
6073
+ # Corresponds to the JSON property `uri`
6074
+ # @return [String]
6075
+ attr_accessor :uri
6076
+
6077
+ def initialize(**args)
6078
+ update!(**args)
6079
+ end
6080
+
6081
+ # Update properties of this object
6082
+ def update!(**args)
6083
+ @assignee = args[:assignee] if args.key?(:assignee)
6084
+ @description = args[:description] if args.key?(:description)
6085
+ @id = args[:id] if args.key?(:id)
6086
+ @status = args[:status] if args.key?(:status)
6087
+ @update_time = args[:update_time] if args.key?(:update_time)
6088
+ @uri = args[:uri] if args.key?(:uri)
6089
+ end
6090
+ end
6091
+
6017
6092
  # Request to validate an Event Threat Detection custom module.
6018
6093
  class ValidateEventThreatDetectionCustomModuleRequest
6019
6094
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1
18
18
  # Version of the google-apis-securitycenter_v1 gem
19
- GEM_VERSION = "0.72.0"
19
+ GEM_VERSION = "0.73.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
@@ -856,6 +856,12 @@ module Google
856
856
  include Google::Apis::Core::JsonObjectSupport
857
857
  end
858
858
 
859
+ class TicketInfo
860
+ class Representation < Google::Apis::Core::JsonRepresentation; end
861
+
862
+ include Google::Apis::Core::JsonObjectSupport
863
+ end
864
+
859
865
  class ValidateEventThreatDetectionCustomModuleRequest
860
866
  class Representation < Google::Apis::Core::JsonRepresentation; end
861
867
 
@@ -1496,10 +1502,15 @@ module Google
1496
1502
  # @private
1497
1503
  class Representation < Google::Apis::Core::JsonRepresentation
1498
1504
  collection :assignees, as: 'assignees'
1505
+ property :case_priority, as: 'casePriority'
1506
+ property :case_sla, as: 'caseSla'
1507
+ property :case_uri, as: 'caseUri'
1499
1508
  property :external_system_update_time, as: 'externalSystemUpdateTime'
1500
1509
  property :external_uid, as: 'externalUid'
1501
1510
  property :name, as: 'name'
1502
1511
  property :status, as: 'status'
1512
+ property :ticket_info, as: 'ticketInfo', class: Google::Apis::SecuritycenterV1::TicketInfo, decorator: Google::Apis::SecuritycenterV1::TicketInfo::Representation
1513
+
1503
1514
  end
1504
1515
  end
1505
1516
 
@@ -2371,6 +2382,18 @@ module Google
2371
2382
  end
2372
2383
  end
2373
2384
 
2385
+ class TicketInfo
2386
+ # @private
2387
+ class Representation < Google::Apis::Core::JsonRepresentation
2388
+ property :assignee, as: 'assignee'
2389
+ property :description, as: 'description'
2390
+ property :id, as: 'id'
2391
+ property :status, as: 'status'
2392
+ property :update_time, as: 'updateTime'
2393
+ property :uri, as: 'uri'
2394
+ end
2395
+ end
2396
+
2374
2397
  class ValidateEventThreatDetectionCustomModuleRequest
2375
2398
  # @private
2376
2399
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.72.0
4
+ version: 0.73.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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.72.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.73.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
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 V1