google-apis-securitycenter_v1beta2 0.60.0 → 0.61.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0e28ecbf50620b770dc2a15917ceff07ac9a031ab69c728c61b4f7f86adce58
|
4
|
+
data.tar.gz: c65dca557fd4c9db264e8db4324e230e43a8377385109f2635fa0d5cef88a203
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8aed726c753c83d873e511eb97e553c012a92121e0dfc0a8c636975b3146852afa5f10d1aef7f354cf5cec0a52da826930d4e27b9e48645a8f1530e7fad21541
|
7
|
+
data.tar.gz: 3d0379e6946cf8ec5f17c7f88b0bba9592741aa551042918a28e7e353ce3438c9e7c08a1fe1ceaebe9f4782243264ba8e8bb34c7ea7ee0f6f43a6ebeb0bf69a9
|
data/CHANGELOG.md
CHANGED
@@ -1922,6 +1922,21 @@ module Google
|
|
1922
1922
|
# @return [Array<String>]
|
1923
1923
|
attr_accessor :assignees
|
1924
1924
|
|
1925
|
+
# The priority of the finding's corresponding case in the external system.
|
1926
|
+
# Corresponds to the JSON property `casePriority`
|
1927
|
+
# @return [String]
|
1928
|
+
attr_accessor :case_priority
|
1929
|
+
|
1930
|
+
# The SLA of the finding's corresponding case in the external system.
|
1931
|
+
# Corresponds to the JSON property `caseSla`
|
1932
|
+
# @return [String]
|
1933
|
+
attr_accessor :case_sla
|
1934
|
+
|
1935
|
+
# The link to the finding's corresponding case in the external system.
|
1936
|
+
# Corresponds to the JSON property `caseUri`
|
1937
|
+
# @return [String]
|
1938
|
+
attr_accessor :case_uri
|
1939
|
+
|
1925
1940
|
# The time when the case was last updated, as reported by the external system.
|
1926
1941
|
# Corresponds to the JSON property `externalSystemUpdateTime`
|
1927
1942
|
# @return [String]
|
@@ -1947,6 +1962,12 @@ module Google
|
|
1947
1962
|
# @return [String]
|
1948
1963
|
attr_accessor :status
|
1949
1964
|
|
1965
|
+
# Information about the ticket, if any, that is being used to track the
|
1966
|
+
# resolution of the issue that is identified by this finding.
|
1967
|
+
# Corresponds to the JSON property `ticketInfo`
|
1968
|
+
# @return [Google::Apis::SecuritycenterV1beta2::TicketInfo]
|
1969
|
+
attr_accessor :ticket_info
|
1970
|
+
|
1950
1971
|
def initialize(**args)
|
1951
1972
|
update!(**args)
|
1952
1973
|
end
|
@@ -1954,10 +1975,14 @@ module Google
|
|
1954
1975
|
# Update properties of this object
|
1955
1976
|
def update!(**args)
|
1956
1977
|
@assignees = args[:assignees] if args.key?(:assignees)
|
1978
|
+
@case_priority = args[:case_priority] if args.key?(:case_priority)
|
1979
|
+
@case_sla = args[:case_sla] if args.key?(:case_sla)
|
1980
|
+
@case_uri = args[:case_uri] if args.key?(:case_uri)
|
1957
1981
|
@external_system_update_time = args[:external_system_update_time] if args.key?(:external_system_update_time)
|
1958
1982
|
@external_uid = args[:external_uid] if args.key?(:external_uid)
|
1959
1983
|
@name = args[:name] if args.key?(:name)
|
1960
1984
|
@status = args[:status] if args.key?(:status)
|
1985
|
+
@ticket_info = args[:ticket_info] if args.key?(:ticket_info)
|
1961
1986
|
end
|
1962
1987
|
end
|
1963
1988
|
|
@@ -3772,6 +3797,56 @@ module Google
|
|
3772
3797
|
end
|
3773
3798
|
end
|
3774
3799
|
|
3800
|
+
# Information about the ticket, if any, that is being used to track the
|
3801
|
+
# resolution of the issue that is identified by this finding.
|
3802
|
+
class TicketInfo
|
3803
|
+
include Google::Apis::Core::Hashable
|
3804
|
+
|
3805
|
+
# The assignee of the ticket in the ticket system.
|
3806
|
+
# Corresponds to the JSON property `assignee`
|
3807
|
+
# @return [String]
|
3808
|
+
attr_accessor :assignee
|
3809
|
+
|
3810
|
+
# The description of the ticket in the ticket system.
|
3811
|
+
# Corresponds to the JSON property `description`
|
3812
|
+
# @return [String]
|
3813
|
+
attr_accessor :description
|
3814
|
+
|
3815
|
+
# The identifier of the ticket in the ticket system.
|
3816
|
+
# Corresponds to the JSON property `id`
|
3817
|
+
# @return [String]
|
3818
|
+
attr_accessor :id
|
3819
|
+
|
3820
|
+
# The latest status of the ticket, as reported by the ticket system.
|
3821
|
+
# Corresponds to the JSON property `status`
|
3822
|
+
# @return [String]
|
3823
|
+
attr_accessor :status
|
3824
|
+
|
3825
|
+
# The time when the ticket was last updated, as reported by the ticket system.
|
3826
|
+
# Corresponds to the JSON property `updateTime`
|
3827
|
+
# @return [String]
|
3828
|
+
attr_accessor :update_time
|
3829
|
+
|
3830
|
+
# The link to the ticket in the ticket system.
|
3831
|
+
# Corresponds to the JSON property `uri`
|
3832
|
+
# @return [String]
|
3833
|
+
attr_accessor :uri
|
3834
|
+
|
3835
|
+
def initialize(**args)
|
3836
|
+
update!(**args)
|
3837
|
+
end
|
3838
|
+
|
3839
|
+
# Update properties of this object
|
3840
|
+
def update!(**args)
|
3841
|
+
@assignee = args[:assignee] if args.key?(:assignee)
|
3842
|
+
@description = args[:description] if args.key?(:description)
|
3843
|
+
@id = args[:id] if args.key?(:id)
|
3844
|
+
@status = args[:status] if args.key?(:status)
|
3845
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
3846
|
+
@uri = args[:uri] if args.key?(:uri)
|
3847
|
+
end
|
3848
|
+
end
|
3849
|
+
|
3775
3850
|
# Resource capturing the settings for the Virtual Machine Threat Detection
|
3776
3851
|
# service.
|
3777
3852
|
class VirtualMachineThreatDetectionSettings
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1beta2
|
18
18
|
# Version of the google-apis-securitycenter_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.61.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 = "
|
25
|
+
REVISION = "20240101"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -502,6 +502,12 @@ module Google
|
|
502
502
|
include Google::Apis::Core::JsonObjectSupport
|
503
503
|
end
|
504
504
|
|
505
|
+
class TicketInfo
|
506
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
|
+
|
508
|
+
include Google::Apis::Core::JsonObjectSupport
|
509
|
+
end
|
510
|
+
|
505
511
|
class VirtualMachineThreatDetectionSettings
|
506
512
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
513
|
|
@@ -978,10 +984,15 @@ module Google
|
|
978
984
|
# @private
|
979
985
|
class Representation < Google::Apis::Core::JsonRepresentation
|
980
986
|
collection :assignees, as: 'assignees'
|
987
|
+
property :case_priority, as: 'casePriority'
|
988
|
+
property :case_sla, as: 'caseSla'
|
989
|
+
property :case_uri, as: 'caseUri'
|
981
990
|
property :external_system_update_time, as: 'externalSystemUpdateTime'
|
982
991
|
property :external_uid, as: 'externalUid'
|
983
992
|
property :name, as: 'name'
|
984
993
|
property :status, as: 'status'
|
994
|
+
property :ticket_info, as: 'ticketInfo', class: Google::Apis::SecuritycenterV1beta2::TicketInfo, decorator: Google::Apis::SecuritycenterV1beta2::TicketInfo::Representation
|
995
|
+
|
985
996
|
end
|
986
997
|
end
|
987
998
|
|
@@ -1445,6 +1456,18 @@ module Google
|
|
1445
1456
|
end
|
1446
1457
|
end
|
1447
1458
|
|
1459
|
+
class TicketInfo
|
1460
|
+
# @private
|
1461
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1462
|
+
property :assignee, as: 'assignee'
|
1463
|
+
property :description, as: 'description'
|
1464
|
+
property :id, as: 'id'
|
1465
|
+
property :status, as: 'status'
|
1466
|
+
property :update_time, as: 'updateTime'
|
1467
|
+
property :uri, as: 'uri'
|
1468
|
+
end
|
1469
|
+
end
|
1470
|
+
|
1448
1471
|
class VirtualMachineThreatDetectionSettings
|
1449
1472
|
# @private
|
1450
1473
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.61.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:
|
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_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.61.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
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.
|
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 V1beta2
|