google-apis-securitycenter_v1beta1 0.20.0 → 0.23.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: ef7c1039adedae7fcf888222b42b09539991dfb3d21bf2fc09c647522c4ec252
|
4
|
+
data.tar.gz: ca0a1ece29005d309db75e3f994050d517b3f0ad00eab918582bed801bb2fdd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1e1642059cb2b1a5211e10763b5c94371ca181683329a44b87c58533d67b67ad4927c521e75f13dc4ee7de8386a2bac00a11938c7d17de2625d580562d7f060
|
7
|
+
data.tar.gz: '097de38a1a0302529fdbe42d11fce27eaaeeffc738afd94fe851e31ab09d5ce4e2e6d1f6300ea9a8f6602ac6d1e24de6341d7cc85f088b621abe1c2c21acd74d'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta1
|
2
2
|
|
3
|
+
### v0.23.0 (2022-04-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220401
|
6
|
+
|
7
|
+
### v0.22.0 (2022-03-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220318
|
10
|
+
|
11
|
+
### v0.21.0 (2022-03-15)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220310
|
14
|
+
|
3
15
|
### v0.20.0 (2022-03-08)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220303
|
@@ -434,8 +434,7 @@ module Google
|
|
434
434
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
435
435
|
# messages in your APIs. A typical example is to use it as the request or the
|
436
436
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
437
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
438
|
-
# `Empty` is empty JSON object ````.
|
437
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
439
438
|
class Empty
|
440
439
|
include Google::Apis::Core::Hashable
|
441
440
|
|
@@ -563,6 +562,11 @@ module Google
|
|
563
562
|
# @return [String]
|
564
563
|
attr_accessor :finding_class
|
565
564
|
|
565
|
+
# Represents IAM bindings associated with the Finding.
|
566
|
+
# Corresponds to the JSON property `iamBindings`
|
567
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::IamBinding>]
|
568
|
+
attr_accessor :iam_bindings
|
569
|
+
|
566
570
|
# Represents what's commonly known as an Indicator of compromise (IoC) in
|
567
571
|
# computer forensics. This is an artifact observed on a network or in an
|
568
572
|
# operating system that, with high confidence, indicates a computer intrusion.
|
@@ -577,9 +581,9 @@ module Google
|
|
577
581
|
# @return [Google::Apis::SecuritycenterV1beta1::MitreAttack]
|
578
582
|
attr_accessor :mitre_attack
|
579
583
|
|
580
|
-
# Indicates the mute state of a finding (either
|
581
|
-
#
|
582
|
-
#
|
584
|
+
# Indicates the mute state of a finding (either muted, unmuted or undefined).
|
585
|
+
# Unlike other attributes of a finding, a finding provider shouldn't set the
|
586
|
+
# value of mute.
|
583
587
|
# Corresponds to the JSON property `mute`
|
584
588
|
# @return [String]
|
585
589
|
attr_accessor :mute
|
@@ -604,6 +608,11 @@ module Google
|
|
604
608
|
# @return [String]
|
605
609
|
attr_accessor :name
|
606
610
|
|
611
|
+
# Next steps associate to the finding.
|
612
|
+
# Corresponds to the JSON property `nextSteps`
|
613
|
+
# @return [String]
|
614
|
+
attr_accessor :next_steps
|
615
|
+
|
607
616
|
# The relative resource name of the source the finding belongs to. See: https://
|
608
617
|
# cloud.google.com/apis/design/resource_names#relative_resource_name This field
|
609
618
|
# is immutable after creation time. For example: "organizations/`organization_id`
|
@@ -667,12 +676,14 @@ module Google
|
|
667
676
|
@external_systems = args[:external_systems] if args.key?(:external_systems)
|
668
677
|
@external_uri = args[:external_uri] if args.key?(:external_uri)
|
669
678
|
@finding_class = args[:finding_class] if args.key?(:finding_class)
|
679
|
+
@iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
|
670
680
|
@indicator = args[:indicator] if args.key?(:indicator)
|
671
681
|
@mitre_attack = args[:mitre_attack] if args.key?(:mitre_attack)
|
672
682
|
@mute = args[:mute] if args.key?(:mute)
|
673
683
|
@mute_initiator = args[:mute_initiator] if args.key?(:mute_initiator)
|
674
684
|
@mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
|
675
685
|
@name = args[:name] if args.key?(:name)
|
686
|
+
@next_steps = args[:next_steps] if args.key?(:next_steps)
|
676
687
|
@parent = args[:parent] if args.key?(:parent)
|
677
688
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
678
689
|
@security_marks = args[:security_marks] if args.key?(:security_marks)
|
@@ -806,11 +817,7 @@ module Google
|
|
806
817
|
# all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning
|
807
818
|
# substring matching, for strings. The supported value types are: * string
|
808
819
|
# literals in quotes. * integer literals without quotes. * boolean literals `
|
809
|
-
# true` and `false` without quotes.
|
810
|
-
# finding (https://source.corp.google.com/piper///depot/google3/google/cloud/
|
811
|
-
# securitycenter/v1/finding.proto) and in the ListFindingsRequest for valid
|
812
|
-
# filter syntax. (https://source.corp.google.com/piper///depot/google3/google/
|
813
|
-
# cloud/securitycenter/v1/securitycenter_service.proto).
|
820
|
+
# true` and `false` without quotes.
|
814
821
|
# Corresponds to the JSON property `filter`
|
815
822
|
# @return [String]
|
816
823
|
attr_accessor :filter
|
@@ -1067,7 +1074,7 @@ module Google
|
|
1067
1074
|
# @return [String]
|
1068
1075
|
attr_accessor :project
|
1069
1076
|
|
1070
|
-
# The project
|
1077
|
+
# The project ID that the resource belongs to.
|
1071
1078
|
# Corresponds to the JSON property `projectDisplayName`
|
1072
1079
|
# @return [String]
|
1073
1080
|
attr_accessor :project_display_name
|
@@ -1816,6 +1823,40 @@ module Google
|
|
1816
1823
|
end
|
1817
1824
|
end
|
1818
1825
|
|
1826
|
+
# Represents a particular IAM binding, which captures a member's role addition,
|
1827
|
+
# removal, or state.
|
1828
|
+
class IamBinding
|
1829
|
+
include Google::Apis::Core::Hashable
|
1830
|
+
|
1831
|
+
# The action that was performed on a Binding.
|
1832
|
+
# Corresponds to the JSON property `action`
|
1833
|
+
# @return [String]
|
1834
|
+
attr_accessor :action
|
1835
|
+
|
1836
|
+
# A single identity requesting access for a Cloud Platform resource, e.g. "foo@
|
1837
|
+
# google.com".
|
1838
|
+
# Corresponds to the JSON property `member`
|
1839
|
+
# @return [String]
|
1840
|
+
attr_accessor :member
|
1841
|
+
|
1842
|
+
# Role that is assigned to "members". For example, "roles/viewer", "roles/editor"
|
1843
|
+
# , or "roles/owner".
|
1844
|
+
# Corresponds to the JSON property `role`
|
1845
|
+
# @return [String]
|
1846
|
+
attr_accessor :role
|
1847
|
+
|
1848
|
+
def initialize(**args)
|
1849
|
+
update!(**args)
|
1850
|
+
end
|
1851
|
+
|
1852
|
+
# Update properties of this object
|
1853
|
+
def update!(**args)
|
1854
|
+
@action = args[:action] if args.key?(:action)
|
1855
|
+
@member = args[:member] if args.key?(:member)
|
1856
|
+
@role = args[:role] if args.key?(:role)
|
1857
|
+
end
|
1858
|
+
end
|
1859
|
+
|
1819
1860
|
# Represents what's commonly known as an Indicator of compromise (IoC) in
|
1820
1861
|
# computer forensics. This is an artifact observed on a network or in an
|
1821
1862
|
# operating system that, with high confidence, indicates a computer intrusion.
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220401"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -244,6 +244,12 @@ module Google
|
|
244
244
|
include Google::Apis::Core::JsonObjectSupport
|
245
245
|
end
|
246
246
|
|
247
|
+
class IamBinding
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
247
253
|
class Indicator
|
248
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
255
|
|
@@ -494,6 +500,8 @@ module Google
|
|
494
500
|
|
495
501
|
property :external_uri, as: 'externalUri'
|
496
502
|
property :finding_class, as: 'findingClass'
|
503
|
+
collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1beta1::IamBinding, decorator: Google::Apis::SecuritycenterV1beta1::IamBinding::Representation
|
504
|
+
|
497
505
|
property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1beta1::Indicator, decorator: Google::Apis::SecuritycenterV1beta1::Indicator::Representation
|
498
506
|
|
499
507
|
property :mitre_attack, as: 'mitreAttack', class: Google::Apis::SecuritycenterV1beta1::MitreAttack, decorator: Google::Apis::SecuritycenterV1beta1::MitreAttack::Representation
|
@@ -502,6 +510,7 @@ module Google
|
|
502
510
|
property :mute_initiator, as: 'muteInitiator'
|
503
511
|
property :mute_update_time, as: 'muteUpdateTime'
|
504
512
|
property :name, as: 'name'
|
513
|
+
property :next_steps, as: 'nextSteps'
|
505
514
|
property :parent, as: 'parent'
|
506
515
|
property :resource_name, as: 'resourceName'
|
507
516
|
property :security_marks, as: 'securityMarks', class: Google::Apis::SecuritycenterV1beta1::SecurityMarks, decorator: Google::Apis::SecuritycenterV1beta1::SecurityMarks::Representation
|
@@ -774,6 +783,15 @@ module Google
|
|
774
783
|
end
|
775
784
|
end
|
776
785
|
|
786
|
+
class IamBinding
|
787
|
+
# @private
|
788
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
789
|
+
property :action, as: 'action'
|
790
|
+
property :member, as: 'member'
|
791
|
+
property :role, as: 'role'
|
792
|
+
end
|
793
|
+
end
|
794
|
+
|
777
795
|
class Indicator
|
778
796
|
# @private
|
779
797
|
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.
|
4
|
+
version: 0.23.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: 2022-
|
11
|
+
date: 2022-04-11 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.23.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: []
|