google-apis-securitycenter_v1beta2 0.15.0 → 0.18.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: f475b18c808684b31aa4a1d0c16cf7cdf1b7ce0afe9466a859a48597367dfccf
4
- data.tar.gz: 0f77294a6ff512e4dcc3417fd5111e089de39049f96db9c8fc57386fead7acec
3
+ metadata.gz: 649b72f275982e8ce42ee00477d298852f695cff9214843d133cb20896751c76
4
+ data.tar.gz: d21bb4ed974fe239ab73e4c099f5b7619673319b404e33c03188cfd48453276d
5
5
  SHA512:
6
- metadata.gz: cd54e068badfd502bccf6daaa24225d644e32da08ed62f46bc000395646d8e57162b018a1397c6e8a14b4ccbd495b64e1bd9ebf30d99c9331dc3eee81f5ada8a
7
- data.tar.gz: b787a37bc6f38d02167d6e02328c83db8d819f42ee243db18196f90609f3983d44dd2f8868cdc53e990efbb42f3868d823c646350a963917e33c706fdc55d7bf
6
+ metadata.gz: eb184273b41dffeb5db1214cab06d3d83af71f69781a4867c9e9f5b893e752d23486fc2adca94168fc0a65bfed971d9d2656552aa23b1a1f5ec9fcce553a9d2a
7
+ data.tar.gz: 454e57102779c680ec1749cc12f0d185ab79a2aa0403bb665cc183cbcb3b6ec0db1c1d102332fabb005b7fc7573c9814f8e9c01e53ddf22a7c920527042ac50d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.18.0 (2022-03-15)
4
+
5
+ * Regenerated from discovery document revision 20220310
6
+
7
+ ### v0.17.0 (2022-03-08)
8
+
9
+ * Regenerated from discovery document revision 20220303
10
+
11
+ ### v0.16.0 (2022-02-23)
12
+
13
+ * Regenerated from discovery document revision 20220219
14
+
3
15
  ### v0.15.0 (2022-02-15)
4
16
 
5
17
  * Regenerated from discovery document revision 20220210
@@ -567,6 +567,89 @@ module Google
567
567
  end
568
568
  end
569
569
 
570
+ # Configures how to deliver Findings to BigQuery Instance.
571
+ class GoogleCloudSecuritycenterV1BigQueryExport
572
+ include Google::Apis::Core::Hashable
573
+
574
+ # Output only. The time at which the big query export was created. This field is
575
+ # set by the server and will be ignored if provided on export on creation.
576
+ # Corresponds to the JSON property `createTime`
577
+ # @return [String]
578
+ attr_accessor :create_time
579
+
580
+ # The dataset to write findings' updates to. Its format is "projects/[project_id]
581
+ # /datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only
582
+ # letters (a-z, A-Z), numbers (0-9), or underscores (_).
583
+ # Corresponds to the JSON property `dataset`
584
+ # @return [String]
585
+ attr_accessor :dataset
586
+
587
+ # The description of the export (max of 1024 characters).
588
+ # Corresponds to the JSON property `description`
589
+ # @return [String]
590
+ attr_accessor :description
591
+
592
+ # Expression that defines the filter to apply across create/update events of
593
+ # findings. The expression is a list of zero or more restrictions combined via
594
+ # logical operators `AND` and `OR`. Parentheses are supported, and `OR` has
595
+ # higher precedence than `AND`. Restrictions have the form ` ` and may have a `-`
596
+ # character in front of them to indicate negation. The fields map to those
597
+ # defined in the corresponding resource. The supported operators are: * `=` for
598
+ # all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning
599
+ # substring matching, for strings. The supported value types are: * string
600
+ # literals in quotes. * integer literals without quotes. * boolean literals `
601
+ # true` and `false` without quotes.
602
+ # Corresponds to the JSON property `filter`
603
+ # @return [String]
604
+ attr_accessor :filter
605
+
606
+ # Output only. Email address of the user who last edited the big query export.
607
+ # This field is set by the server and will be ignored if provided on export
608
+ # creation or update.
609
+ # Corresponds to the JSON property `mostRecentEditor`
610
+ # @return [String]
611
+ attr_accessor :most_recent_editor
612
+
613
+ # The relative resource name of this export. See: https://cloud.google.com/apis/
614
+ # design/resource_names#relative_resource_name. Example format: "organizations/`
615
+ # organization_id`/bigQueryExports/`export_id`" Example format: "folders/`
616
+ # folder_id`/bigQueryExports/`export_id`" Example format: "projects/`project_id`/
617
+ # bigQueryExports/`export_id`" This field is provided in responses, and is
618
+ # ignored when provided in create requests.
619
+ # Corresponds to the JSON property `name`
620
+ # @return [String]
621
+ attr_accessor :name
622
+
623
+ # Output only. The service account that needs permission to create table, upload
624
+ # data to the big query dataset.
625
+ # Corresponds to the JSON property `principal`
626
+ # @return [String]
627
+ attr_accessor :principal
628
+
629
+ # Output only. The most recent time at which the big export was updated. This
630
+ # field is set by the server and will be ignored if provided on export creation
631
+ # or update.
632
+ # Corresponds to the JSON property `updateTime`
633
+ # @return [String]
634
+ attr_accessor :update_time
635
+
636
+ def initialize(**args)
637
+ update!(**args)
638
+ end
639
+
640
+ # Update properties of this object
641
+ def update!(**args)
642
+ @create_time = args[:create_time] if args.key?(:create_time)
643
+ @dataset = args[:dataset] if args.key?(:dataset)
644
+ @description = args[:description] if args.key?(:description)
645
+ @filter = args[:filter] if args.key?(:filter)
646
+ @most_recent_editor = args[:most_recent_editor] if args.key?(:most_recent_editor)
647
+ @name = args[:name] if args.key?(:name)
648
+ @principal = args[:principal] if args.key?(:principal)
649
+ @update_time = args[:update_time] if args.key?(:update_time)
650
+ end
651
+ end
652
+
570
653
  # The response to a BulkMute request. Contains the LRO information.
571
654
  class GoogleCloudSecuritycenterV1BulkMuteFindingsResponse
572
655
  include Google::Apis::Core::Hashable
@@ -600,10 +683,10 @@ module Google
600
683
  # @return [String]
601
684
  attr_accessor :external_uid
602
685
 
603
- # External System Name e.g. jira, demisto, etc. e.g.: organizations/1234/sources/
604
- # 5678/findings/123456/externalSystems/jira folders/1234/sources/5678/findings/
605
- # 123456/externalSystems/jira projects/1234/sources/5678/findings/123456/
606
- # externalSystems/jira
686
+ # External System Name e.g. jira, demisto, etc. e.g.: `organizations/1234/
687
+ # sources/5678/findings/123456/externalSystems/jira` `folders/1234/sources/5678/
688
+ # findings/123456/externalSystems/jira` `projects/1234/sources/5678/findings/
689
+ # 123456/externalSystems/jira`
607
690
  # Corresponds to the JSON property `name`
608
691
  # @return [String]
609
692
  attr_accessor :name
@@ -772,7 +855,7 @@ module Google
772
855
  # @return [String]
773
856
  attr_accessor :project
774
857
 
775
- # The human readable name of project that the resource belongs to.
858
+ # The project id that the resource belongs to.
776
859
  # Corresponds to the JSON property `projectDisplayName`
777
860
  # @return [String]
778
861
  attr_accessor :project_display_name
@@ -1057,7 +1140,7 @@ module Google
1057
1140
  # @return [String]
1058
1141
  attr_accessor :project
1059
1142
 
1060
- # The human readable name of project that the resource belongs to.
1143
+ # The project id that the resource belongs to.
1061
1144
  # Corresponds to the JSON property `projectDisplayName`
1062
1145
  # @return [String]
1063
1146
  attr_accessor :project_display_name
@@ -1201,9 +1284,9 @@ module Google
1201
1284
  # The MITRE ATT&CK technique most closely represented by this finding, if any.
1202
1285
  # primary_techniques is a repeated field because there are multiple levels of
1203
1286
  # MITRE ATT&CK techniques. If the technique most closely represented by this
1204
- # finding is a sub-technique (e.g. SCANNING_IP_BLOCKS), both the sub-technique
1205
- # and its parent technique(s) will be listed (e.g. SCANNING_IP_BLOCKS,
1206
- # ACTIVE_SCANNING).
1287
+ # finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique
1288
+ # and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `
1289
+ # ACTIVE_SCANNING`).
1207
1290
  # Corresponds to the JSON property `primaryTechniques`
1208
1291
  # @return [Array<String>]
1209
1292
  attr_accessor :primary_techniques
@@ -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.15.0"
19
+ GEM_VERSION = "0.18.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
@@ -82,6 +82,12 @@ module Google
82
82
  include Google::Apis::Core::JsonObjectSupport
83
83
  end
84
84
 
85
+ class GoogleCloudSecuritycenterV1BigQueryExport
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
85
91
  class GoogleCloudSecuritycenterV1BulkMuteFindingsResponse
86
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
93
 
@@ -348,6 +354,20 @@ module Google
348
354
  end
349
355
  end
350
356
 
357
+ class GoogleCloudSecuritycenterV1BigQueryExport
358
+ # @private
359
+ class Representation < Google::Apis::Core::JsonRepresentation
360
+ property :create_time, as: 'createTime'
361
+ property :dataset, as: 'dataset'
362
+ property :description, as: 'description'
363
+ property :filter, as: 'filter'
364
+ property :most_recent_editor, as: 'mostRecentEditor'
365
+ property :name, as: 'name'
366
+ property :principal, as: 'principal'
367
+ property :update_time, as: 'updateTime'
368
+ end
369
+ end
370
+
351
371
  class GoogleCloudSecuritycenterV1BulkMuteFindingsResponse
352
372
  # @private
353
373
  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.15.0
4
+ version: 0.18.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_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.18.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: []