google-apis-securitycenter_v1beta1 0.18.0 → 0.21.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: 5ef5c123e01a47b3b4991c7cc4b070192f68b3e35a8c62f4f2eeb63281eacf92
4
- data.tar.gz: 75bb6ac738c052eceddaa1f25178b16ff2f30b398688783d3f956b860d21a3c3
3
+ metadata.gz: 07b596657efd2deca35f72310a415c208cc08ae6242e228212c9542f44f362f3
4
+ data.tar.gz: 3b197d9e610d6201d4c0b6e61a4425771d6a69b8f2b4d965831eaa51aadd78e8
5
5
  SHA512:
6
- metadata.gz: 54da7dc28bde09285217da56803ebecca538f117efcf66827ddae6e3138741caf71862751d0da1d99b4ec7bb82d6133bfaa817b0c732b8dad08f95497a206681
7
- data.tar.gz: 56beedc13092d38aa09bacedd238adce266cce4fe3ddbea6a2c76ba69e976ba51205f08a92082d0cecc04127f63e0164f9194527dc08c7d49b0191d34cbd7cdf
6
+ metadata.gz: 2a8bbbde906aea07c88d85df5e69c8c22030b548685c158bfc6dd35a938522c0c2b8787908551628d732c1fdc7a8e6dc023c969d48b879645c27a17aeae119af
7
+ data.tar.gz: 48163441adcf3b2553592bfe1537cafdebc0e4c01cd21911285f5ca211e68f8954448e9aff582cafc06736b882c7a634c7c0f05e8fa72d03745cefcb099bc66d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.21.0 (2022-03-15)
4
+
5
+ * Regenerated from discovery document revision 20220310
6
+
7
+ ### v0.20.0 (2022-03-08)
8
+
9
+ * Regenerated from discovery document revision 20220303
10
+
11
+ ### v0.19.0 (2022-02-23)
12
+
13
+ * Regenerated from discovery document revision 20220219
14
+
3
15
  ### v0.18.0 (2022-02-15)
4
16
 
5
17
  * Regenerated from discovery document revision 20220210
@@ -775,6 +775,89 @@ 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.
810
+ # Corresponds to the JSON property `filter`
811
+ # @return [String]
812
+ attr_accessor :filter
813
+
814
+ # Output only. Email address of the user who last edited the big query export.
815
+ # This field is set by the server and will be ignored if provided on export
816
+ # creation or update.
817
+ # Corresponds to the JSON property `mostRecentEditor`
818
+ # @return [String]
819
+ attr_accessor :most_recent_editor
820
+
821
+ # The relative resource name of this export. See: https://cloud.google.com/apis/
822
+ # design/resource_names#relative_resource_name. Example format: "organizations/`
823
+ # organization_id`/bigQueryExports/`export_id`" Example format: "folders/`
824
+ # folder_id`/bigQueryExports/`export_id`" Example format: "projects/`project_id`/
825
+ # bigQueryExports/`export_id`" This field is provided in responses, and is
826
+ # ignored when provided in create requests.
827
+ # Corresponds to the JSON property `name`
828
+ # @return [String]
829
+ attr_accessor :name
830
+
831
+ # Output only. The service account that needs permission to create table, upload
832
+ # data to the big query dataset.
833
+ # Corresponds to the JSON property `principal`
834
+ # @return [String]
835
+ attr_accessor :principal
836
+
837
+ # Output only. The most recent time at which the big export was updated. This
838
+ # field is set by the server and will be ignored if provided on export creation
839
+ # or update.
840
+ # Corresponds to the JSON property `updateTime`
841
+ # @return [String]
842
+ attr_accessor :update_time
843
+
844
+ def initialize(**args)
845
+ update!(**args)
846
+ end
847
+
848
+ # Update properties of this object
849
+ def update!(**args)
850
+ @create_time = args[:create_time] if args.key?(:create_time)
851
+ @dataset = args[:dataset] if args.key?(:dataset)
852
+ @description = args[:description] if args.key?(:description)
853
+ @filter = args[:filter] if args.key?(:filter)
854
+ @most_recent_editor = args[:most_recent_editor] if args.key?(:most_recent_editor)
855
+ @name = args[:name] if args.key?(:name)
856
+ @principal = args[:principal] if args.key?(:principal)
857
+ @update_time = args[:update_time] if args.key?(:update_time)
858
+ end
859
+ end
860
+
778
861
  # The response to a BulkMute request. Contains the LRO information.
779
862
  class GoogleCloudSecuritycenterV1BulkMuteFindingsResponse
780
863
  include Google::Apis::Core::Hashable
@@ -808,10 +891,10 @@ module Google
808
891
  # @return [String]
809
892
  attr_accessor :external_uid
810
893
 
811
- # External System Name e.g. jira, demisto, etc. e.g.: organizations/1234/sources/
812
- # 5678/findings/123456/externalSystems/jira folders/1234/sources/5678/findings/
813
- # 123456/externalSystems/jira projects/1234/sources/5678/findings/123456/
814
- # externalSystems/jira
894
+ # External System Name e.g. jira, demisto, etc. e.g.: `organizations/1234/
895
+ # sources/5678/findings/123456/externalSystems/jira` `folders/1234/sources/5678/
896
+ # findings/123456/externalSystems/jira` `projects/1234/sources/5678/findings/
897
+ # 123456/externalSystems/jira`
815
898
  # Corresponds to the JSON property `name`
816
899
  # @return [String]
817
900
  attr_accessor :name
@@ -980,7 +1063,7 @@ module Google
980
1063
  # @return [String]
981
1064
  attr_accessor :project
982
1065
 
983
- # The human readable name of project that the resource belongs to.
1066
+ # The project id that the resource belongs to.
984
1067
  # Corresponds to the JSON property `projectDisplayName`
985
1068
  # @return [String]
986
1069
  attr_accessor :project_display_name
@@ -1398,7 +1481,7 @@ module Google
1398
1481
  # @return [String]
1399
1482
  attr_accessor :project
1400
1483
 
1401
- # The human readable name of project that the resource belongs to.
1484
+ # The project id that the resource belongs to.
1402
1485
  # Corresponds to the JSON property `projectDisplayName`
1403
1486
  # @return [String]
1404
1487
  attr_accessor :project_display_name
@@ -1937,9 +2020,9 @@ module Google
1937
2020
  # The MITRE ATT&CK technique most closely represented by this finding, if any.
1938
2021
  # primary_techniques is a repeated field because there are multiple levels of
1939
2022
  # MITRE ATT&CK techniques. If the technique most closely represented by this
1940
- # finding is a sub-technique (e.g. SCANNING_IP_BLOCKS), both the sub-technique
1941
- # and its parent technique(s) will be listed (e.g. SCANNING_IP_BLOCKS,
1942
- # ACTIVE_SCANNING).
2023
+ # finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique
2024
+ # and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `
2025
+ # ACTIVE_SCANNING`).
1943
2026
  # Corresponds to the JSON property `primaryTechniques`
1944
2027
  # @return [Array<String>]
1945
2028
  attr_accessor :primary_techniques
@@ -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.18.0"
19
+ GEM_VERSION = "0.21.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 = "20220210"
25
+ REVISION = "20220310"
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.18.0
4
+ version: 0.21.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-21 00:00:00.000000000 Z
11
+ date: 2022-03-21 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.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.21.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: []