google-apis-securitycenter_v1beta1 0.18.0 → 0.19.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: 7eca08decab35b478f3357a82a7b6a88e983262383e3c7777fe03619003419d5
|
4
|
+
data.tar.gz: e95571eca66f7e99454cbd7eec83cef4f882b11c3d95a20b49025ba9126ee580
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b3522a7ac3ea8ac032fe167274c1440e6e49c3b67cb70a6f2b337b896230f1a74d349c38dd4df272ac58e81ee8c7877b8195eaded210035490c31597f7b7f00
|
7
|
+
data.tar.gz: 6a6ad361a4aac56cbfa5c8cf4d58845144bd80c3c9eacd27f6dc4d8ac2c495ea74ed80e152eb330f0a0d5a64f86ef82e7e98bc9c7becb0e484e50ea3b851e9c1
|
data/CHANGELOG.md
CHANGED
@@ -775,6 +775,93 @@ module Google
|
|
775
775
|
end
|
776
776
|
end
|
777
777
|
|
778
|
+
# Configures how to deliver Findings to BigQuery Instance.
|
779
|
+
class GoogleCloudSecuritycenterV1BigQueryExport
|
780
|
+
include Google::Apis::Core::Hashable
|
781
|
+
|
782
|
+
# Output only. The time at which the big query export was created. This field is
|
783
|
+
# set by the server and will be ignored if provided on export on creation.
|
784
|
+
# Corresponds to the JSON property `createTime`
|
785
|
+
# @return [String]
|
786
|
+
attr_accessor :create_time
|
787
|
+
|
788
|
+
# The dataset to write findings' updates to. Its format is "projects/[project_id]
|
789
|
+
# /datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only
|
790
|
+
# letters (a-z, A-Z), numbers (0-9), or underscores (_).
|
791
|
+
# Corresponds to the JSON property `dataset`
|
792
|
+
# @return [String]
|
793
|
+
attr_accessor :dataset
|
794
|
+
|
795
|
+
# The description of the export (max of 1024 characters).
|
796
|
+
# Corresponds to the JSON property `description`
|
797
|
+
# @return [String]
|
798
|
+
attr_accessor :description
|
799
|
+
|
800
|
+
# Expression that defines the filter to apply across create/update events of
|
801
|
+
# findings. The expression is a list of zero or more restrictions combined via
|
802
|
+
# logical operators `AND` and `OR`. Parentheses are supported, and `OR` has
|
803
|
+
# higher precedence than `AND`. Restrictions have the form ` ` and may have a `-`
|
804
|
+
# character in front of them to indicate negation. The fields map to those
|
805
|
+
# defined in the corresponding resource. The supported operators are: * `=` for
|
806
|
+
# all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning
|
807
|
+
# substring matching, for strings. The supported value types are: * string
|
808
|
+
# literals in quotes. * integer literals without quotes. * boolean literals `
|
809
|
+
# true` and `false` without quotes. Please see the proto documentation in the
|
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).
|
814
|
+
# Corresponds to the JSON property `filter`
|
815
|
+
# @return [String]
|
816
|
+
attr_accessor :filter
|
817
|
+
|
818
|
+
# Output only. Email address of the user who last edited the big query export.
|
819
|
+
# This field is set by the server and will be ignored if provided on export
|
820
|
+
# creation or update.
|
821
|
+
# Corresponds to the JSON property `mostRecentEditor`
|
822
|
+
# @return [String]
|
823
|
+
attr_accessor :most_recent_editor
|
824
|
+
|
825
|
+
# The relative resource name of this export. See: https://cloud.google.com/apis/
|
826
|
+
# design/resource_names#relative_resource_name. Example format: "organizations/`
|
827
|
+
# organization_id`/bigQueryExports/`export_id`" Example format: "folders/`
|
828
|
+
# folder_id`/bigQueryExports/`export_id`" Example format: "projects/`project_id`/
|
829
|
+
# bigQueryExports/`export_id`" This field is provided in responses, and is
|
830
|
+
# ignored when provided in create requests.
|
831
|
+
# Corresponds to the JSON property `name`
|
832
|
+
# @return [String]
|
833
|
+
attr_accessor :name
|
834
|
+
|
835
|
+
# Output only. The service account that needs permission to create table, upload
|
836
|
+
# data to the big query dataset.
|
837
|
+
# Corresponds to the JSON property `principal`
|
838
|
+
# @return [String]
|
839
|
+
attr_accessor :principal
|
840
|
+
|
841
|
+
# Output only. The most recent time at which the big export was updated. This
|
842
|
+
# field is set by the server and will be ignored if provided on export creation
|
843
|
+
# or update.
|
844
|
+
# Corresponds to the JSON property `updateTime`
|
845
|
+
# @return [String]
|
846
|
+
attr_accessor :update_time
|
847
|
+
|
848
|
+
def initialize(**args)
|
849
|
+
update!(**args)
|
850
|
+
end
|
851
|
+
|
852
|
+
# Update properties of this object
|
853
|
+
def update!(**args)
|
854
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
855
|
+
@dataset = args[:dataset] if args.key?(:dataset)
|
856
|
+
@description = args[:description] if args.key?(:description)
|
857
|
+
@filter = args[:filter] if args.key?(:filter)
|
858
|
+
@most_recent_editor = args[:most_recent_editor] if args.key?(:most_recent_editor)
|
859
|
+
@name = args[:name] if args.key?(:name)
|
860
|
+
@principal = args[:principal] if args.key?(:principal)
|
861
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
862
|
+
end
|
863
|
+
end
|
864
|
+
|
778
865
|
# The response to a BulkMute request. Contains the LRO information.
|
779
866
|
class GoogleCloudSecuritycenterV1BulkMuteFindingsResponse
|
780
867
|
include Google::Apis::Core::Hashable
|
@@ -980,7 +1067,7 @@ module Google
|
|
980
1067
|
# @return [String]
|
981
1068
|
attr_accessor :project
|
982
1069
|
|
983
|
-
# The
|
1070
|
+
# The project id that the resource belongs to.
|
984
1071
|
# Corresponds to the JSON property `projectDisplayName`
|
985
1072
|
# @return [String]
|
986
1073
|
attr_accessor :project_display_name
|
@@ -1398,7 +1485,7 @@ module Google
|
|
1398
1485
|
# @return [String]
|
1399
1486
|
attr_accessor :project
|
1400
1487
|
|
1401
|
-
# The
|
1488
|
+
# The project id that the resource belongs to.
|
1402
1489
|
# Corresponds to the JSON property `projectDisplayName`
|
1403
1490
|
# @return [String]
|
1404
1491
|
attr_accessor :project_display_name
|
@@ -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.19.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 = "20220219"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -118,6 +118,12 @@ module Google
|
|
118
118
|
include Google::Apis::Core::JsonObjectSupport
|
119
119
|
end
|
120
120
|
|
121
|
+
class GoogleCloudSecuritycenterV1BigQueryExport
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
121
127
|
class GoogleCloudSecuritycenterV1BulkMuteFindingsResponse
|
122
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
129
|
|
@@ -538,6 +544,20 @@ module Google
|
|
538
544
|
end
|
539
545
|
end
|
540
546
|
|
547
|
+
class GoogleCloudSecuritycenterV1BigQueryExport
|
548
|
+
# @private
|
549
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
550
|
+
property :create_time, as: 'createTime'
|
551
|
+
property :dataset, as: 'dataset'
|
552
|
+
property :description, as: 'description'
|
553
|
+
property :filter, as: 'filter'
|
554
|
+
property :most_recent_editor, as: 'mostRecentEditor'
|
555
|
+
property :name, as: 'name'
|
556
|
+
property :principal, as: 'principal'
|
557
|
+
property :update_time, as: 'updateTime'
|
558
|
+
end
|
559
|
+
end
|
560
|
+
|
541
561
|
class GoogleCloudSecuritycenterV1BulkMuteFindingsResponse
|
542
562
|
# @private
|
543
563
|
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.19.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-02-
|
11
|
+
date: 2022-02-28 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.19.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: []
|