google-apis-securitycenter_v1 0.2.0 → 0.7.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: 13e1de19a45302c8f67f98cc91124fd8849f8ddedc701121e1ac6e686d774a9d
4
- data.tar.gz: f83b129a1db67d40acc77760af6035b7e908701f201233cfd80fbfc647881591
3
+ metadata.gz: 78a0801e776f341d1ba8850593378e3d26f7b41026ed6d54b2ab6c2203e15e94
4
+ data.tar.gz: d681ae711fed202f641eed646edf87dbae62df9cececdb4176fe4f275ab1c77c
5
5
  SHA512:
6
- metadata.gz: 314b25fbc7d2fb2e6fbc45a0c2e39b2101c38b01bf0ec6c3c159a5217c3e4e96f556f384bad62b3a3e65d88cfd4d104f6449197404643a2afe34eb2206a2e316
7
- data.tar.gz: 03da773922fd429cd54d96732fd6a7aae2f310411147641b0cce02284b9a188ebe69f0ee5105657464e939c1f21b31c484027fcf1c4fd994d1a0bbc0ef25009b
6
+ metadata.gz: e4ab4a677e0b0e57a191ad030003846d962b257a58f2b0239a57616a2d160d98756fa437ef7bfd180b50389cab7c9896bb042d52fb44651f2de9a1ca011554c2
7
+ data.tar.gz: 692d196bda58ce8ab31e78e299cafb63a7b126238f58efdcf5a8348bab36c1e612b5358b2d8509df084f80213533f10d9fbcbed2498534bcd9939561df05c38b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.7.0 (2021-06-15)
4
+
5
+ * Regenerated from discovery document revision 20210611
6
+ * Regenerated using generator version 0.3.0
7
+
8
+ ### v0.6.0 (2021-05-20)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.5.0 (2021-04-27)
13
+
14
+ * Regenerated from discovery document revision 20210422
15
+
16
+ ### v0.4.0 (2021-03-30)
17
+
18
+ * Regenerated from discovery document revision 20210326
19
+ * Regenerated using generator version 0.2.0
20
+
21
+ ### v0.3.0 (2021-03-04)
22
+
23
+ * Unspecified changes
24
+
3
25
  ### v0.2.0 (2021-02-17)
4
26
 
5
27
  * Regenerated from discovery document revision 20210212
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1'
32
32
 
33
- # View and manage your data across Google Cloud Platform services
33
+ # See, edit, configure, and delete your Google Cloud Platform data
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
@@ -30,6 +30,14 @@ module Google
30
30
  class Asset
31
31
  include Google::Apis::Core::Hashable
32
32
 
33
+ # The canonical name of the resource. It's either "organizations/`
34
+ # organization_id`/assets/`asset_id`", "folders/`folder_id`/assets/`asset_id`"
35
+ # or "projects/`project_number`/assets/`asset_id`", depending on the closest CRM
36
+ # ancestor of the resource.
37
+ # Corresponds to the JSON property `canonicalName`
38
+ # @return [String]
39
+ attr_accessor :canonical_name
40
+
33
41
  # The time at which the asset was created in Security Command Center.
34
42
  # Corresponds to the JSON property `createTime`
35
43
  # @return [String]
@@ -80,6 +88,7 @@ module Google
80
88
 
81
89
  # Update properties of this object
82
90
  def update!(**args)
91
+ @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
83
92
  @create_time = args[:create_time] if args.key?(:create_time)
84
93
  @iam_policy = args[:iam_policy] if args.key?(:iam_policy)
85
94
  @name = args[:name] if args.key?(:name)
@@ -343,6 +352,15 @@ module Google
343
352
  class Finding
344
353
  include Google::Apis::Core::Hashable
345
354
 
355
+ # The canonical name of the finding. It's either "organizations/`organization_id`
356
+ # /sources/`source_id`/findings/`finding_id`", "folders/`folder_id`/sources/`
357
+ # source_id`/findings/`finding_id`" or "projects/`project_number`/sources/`
358
+ # source_id`/findings/`finding_id`", depending on the closest CRM ancestor of
359
+ # the resource associated with the finding.
360
+ # Corresponds to the JSON property `canonicalName`
361
+ # @return [String]
362
+ attr_accessor :canonical_name
363
+
346
364
  # The additional taxonomy group within findings from a given source. This field
347
365
  # is immutable after creation time. Example: "XSS_FLASH_INJECTION"
348
366
  # Corresponds to the JSON property `category`
@@ -358,7 +376,8 @@ module Google
358
376
  # occurred. For example, if the finding represents an open firewall it would
359
377
  # capture the time the detector believes the firewall became open. The accuracy
360
378
  # is determined by the detector. If the finding were to be resolved afterward,
361
- # this time would reflect when the finding was resolved.
379
+ # this time would reflect when the finding was resolved. Must not be set to a
380
+ # value greater than the current timestamp.
362
381
  # Corresponds to the JSON property `eventTime`
363
382
  # @return [String]
364
383
  attr_accessor :event_time
@@ -427,6 +446,7 @@ module Google
427
446
 
428
447
  # Update properties of this object
429
448
  def update!(**args)
449
+ @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
430
450
  @category = args[:category] if args.key?(:category)
431
451
  @create_time = args[:create_time] if args.key?(:create_time)
432
452
  @event_time = args[:event_time] if args.key?(:event_time)
@@ -655,6 +675,15 @@ module Google
655
675
  class GoogleCloudSecuritycenterV1p1beta1Finding
656
676
  include Google::Apis::Core::Hashable
657
677
 
678
+ # The canonical name of the finding. It's either "organizations/`organization_id`
679
+ # /sources/`source_id`/findings/`finding_id`", "folders/`folder_id`/sources/`
680
+ # source_id`/findings/`finding_id`" or "projects/`project_number`/sources/`
681
+ # source_id`/findings/`finding_id`", depending on the closest CRM ancestor of
682
+ # the resource associated with the finding.
683
+ # Corresponds to the JSON property `canonicalName`
684
+ # @return [String]
685
+ attr_accessor :canonical_name
686
+
658
687
  # The additional taxonomy group within findings from a given source. This field
659
688
  # is immutable after creation time. Example: "XSS_FLASH_INJECTION"
660
689
  # Corresponds to the JSON property `category`
@@ -670,7 +699,8 @@ module Google
670
699
  # occurred. For example, if the finding represents an open firewall it would
671
700
  # capture the time the detector believes the firewall became open. The accuracy
672
701
  # is determined by the detector. If the finding were to be resolved afterward,
673
- # this time would reflect when the finding was resolved.
702
+ # this time would reflect when the finding was resolved. Must not be set to a
703
+ # value greater than the current timestamp.
674
704
  # Corresponds to the JSON property `eventTime`
675
705
  # @return [String]
676
706
  attr_accessor :event_time
@@ -739,6 +769,7 @@ module Google
739
769
 
740
770
  # Update properties of this object
741
771
  def update!(**args)
772
+ @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
742
773
  @category = args[:category] if args.key?(:category)
743
774
  @create_time = args[:create_time] if args.key?(:create_time)
744
775
  @event_time = args[:event_time] if args.key?(:event_time)
@@ -897,6 +928,17 @@ module Google
897
928
  class GoogleCloudSecuritycenterV1p1beta1SecurityMarks
898
929
  include Google::Apis::Core::Hashable
899
930
 
931
+ # The canonical name of the marks. Examples: "organizations/`organization_id`/
932
+ # assets/`asset_id`/securityMarks" "folders/`folder_id`/assets/`asset_id`/
933
+ # securityMarks" "projects/`project_number`/assets/`asset_id`/securityMarks" "
934
+ # organizations/`organization_id`/sources/`source_id`/findings/`finding_id`/
935
+ # securityMarks" "folders/`folder_id`/sources/`source_id`/findings/`finding_id`/
936
+ # securityMarks" "projects/`project_number`/sources/`source_id`/findings/`
937
+ # finding_id`/securityMarks"
938
+ # Corresponds to the JSON property `canonicalName`
939
+ # @return [String]
940
+ attr_accessor :canonical_name
941
+
900
942
  # Mutable user specified security marks belonging to the parent resource.
901
943
  # Constraints are as follows: * Keys and values are treated as case insensitive *
902
944
  # Keys must be between 1 - 256 characters (inclusive) * Keys must be letters,
@@ -920,6 +962,7 @@ module Google
920
962
 
921
963
  # Update properties of this object
922
964
  def update!(**args)
965
+ @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
923
966
  @marks = args[:marks] if args.key?(:marks)
924
967
  @name = args[:name] if args.key?(:name)
925
968
  end
@@ -1117,14 +1160,17 @@ module Google
1117
1160
  # false` without quotes. The following field and operator combinations are
1118
1161
  # supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=
1119
1162
  # `, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<
1120
- # `, `>=`, `<=` * severity: `=`, `:` Usage: This should be milliseconds since
1121
- # epoch or an RFC3339 string. Examples: `event_time = "2019-06-10T16:07:18-07:00"
1122
- # ` `event_time = 1560208038000` * security_marks.marks: `=`, `:` *
1123
- # source_properties: `=`, `:`, `>`, `<`, `>=`, `<=` For example, `
1124
- # source_properties.size = 100` is a valid filter string. Use a partial match on
1125
- # the empty string to filter based on a property existing: `source_properties.
1126
- # my_property : ""` Use a negated partial match on the empty string to filter
1127
- # based on a property not existing: `-source_properties.my_property : ""`
1163
+ # `, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339
1164
+ # string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time =
1165
+ # 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` *
1166
+ # security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `
1167
+ # <=` For example, `source_properties.size = 100` is a valid filter string. Use
1168
+ # a partial match on the empty string to filter based on a property existing: `
1169
+ # source_properties.my_property : ""` Use a negated partial match on the empty
1170
+ # string to filter based on a property not existing: `-source_properties.
1171
+ # my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name:
1172
+ # `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`
1173
+ # , `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:`
1128
1174
  # Corresponds to the JSON property `filter`
1129
1175
  # @return [String]
1130
1176
  attr_accessor :filter
@@ -1380,7 +1426,7 @@ module Google
1380
1426
  attr_accessor :finding
1381
1427
 
1382
1428
  # Information related to the Google Cloud resource that is associated with this
1383
- # finding. LINT.IfChange
1429
+ # finding.
1384
1430
  # Corresponds to the JSON property `resource`
1385
1431
  # @return [Google::Apis::SecuritycenterV1::Resource]
1386
1432
  attr_accessor :resource
@@ -1719,7 +1765,7 @@ module Google
1719
1765
  end
1720
1766
 
1721
1767
  # Information related to the Google Cloud resource that is associated with this
1722
- # finding. LINT.IfChange
1768
+ # finding.
1723
1769
  class Resource
1724
1770
  include Google::Apis::Core::Hashable
1725
1771
 
@@ -1867,6 +1913,17 @@ module Google
1867
1913
  class SecurityMarks
1868
1914
  include Google::Apis::Core::Hashable
1869
1915
 
1916
+ # The canonical name of the marks. Examples: "organizations/`organization_id`/
1917
+ # assets/`asset_id`/securityMarks" "folders/`folder_id`/assets/`asset_id`/
1918
+ # securityMarks" "projects/`project_number`/assets/`asset_id`/securityMarks" "
1919
+ # organizations/`organization_id`/sources/`source_id`/findings/`finding_id`/
1920
+ # securityMarks" "folders/`folder_id`/sources/`source_id`/findings/`finding_id`/
1921
+ # securityMarks" "projects/`project_number`/sources/`source_id`/findings/`
1922
+ # finding_id`/securityMarks"
1923
+ # Corresponds to the JSON property `canonicalName`
1924
+ # @return [String]
1925
+ attr_accessor :canonical_name
1926
+
1870
1927
  # Mutable user specified security marks belonging to the parent resource.
1871
1928
  # Constraints are as follows: * Keys and values are treated as case insensitive *
1872
1929
  # Keys must be between 1 - 256 characters (inclusive) * Keys must be letters,
@@ -1890,6 +1947,7 @@ module Google
1890
1947
 
1891
1948
  # Update properties of this object
1892
1949
  def update!(**args)
1950
+ @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
1893
1951
  @marks = args[:marks] if args.key?(:marks)
1894
1952
  @name = args[:name] if args.key?(:name)
1895
1953
  end
@@ -1979,6 +2037,14 @@ module Google
1979
2037
  class Source
1980
2038
  include Google::Apis::Core::Hashable
1981
2039
 
2040
+ # The canonical name of the finding. It's either "organizations/`organization_id`
2041
+ # /sources/`source_id`", "folders/`folder_id`/sources/`source_id`" or "projects/`
2042
+ # project_number`/sources/`source_id`", depending on the closest CRM ancestor of
2043
+ # the resource associated with the finding.
2044
+ # Corresponds to the JSON property `canonicalName`
2045
+ # @return [String]
2046
+ attr_accessor :canonical_name
2047
+
1982
2048
  # The description of the source (max of 1024 characters). Example: "Web Security
1983
2049
  # Scanner is a web security scanner for common vulnerabilities in App Engine
1984
2050
  # applications. It can automatically scan and detect four common vulnerabilities,
@@ -2009,6 +2075,7 @@ module Google
2009
2075
 
2010
2076
  # Update properties of this object
2011
2077
  def update!(**args)
2078
+ @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
2012
2079
  @description = args[:description] if args.key?(:description)
2013
2080
  @display_name = args[:display_name] if args.key?(:display_name)
2014
2081
  @name = args[:name] if args.key?(:name)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1
18
18
  # Version of the google-apis-securitycenter_v1 gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210212"
25
+ REVISION = "20210611"
26
26
  end
27
27
  end
28
28
  end
@@ -319,6 +319,7 @@ module Google
319
319
  class Asset
320
320
  # @private
321
321
  class Representation < Google::Apis::Core::JsonRepresentation
322
+ property :canonical_name, as: 'canonicalName'
322
323
  property :create_time, as: 'createTime'
323
324
  property :iam_policy, as: 'iamPolicy', class: Google::Apis::SecuritycenterV1::IamPolicy, decorator: Google::Apis::SecuritycenterV1::IamPolicy::Representation
324
325
 
@@ -387,6 +388,7 @@ module Google
387
388
  class Finding
388
389
  # @private
389
390
  class Representation < Google::Apis::Core::JsonRepresentation
391
+ property :canonical_name, as: 'canonicalName'
390
392
  property :category, as: 'category'
391
393
  property :create_time, as: 'createTime'
392
394
  property :event_time, as: 'eventTime'
@@ -468,6 +470,7 @@ module Google
468
470
  class GoogleCloudSecuritycenterV1p1beta1Finding
469
471
  # @private
470
472
  class Representation < Google::Apis::Core::JsonRepresentation
473
+ property :canonical_name, as: 'canonicalName'
471
474
  property :category, as: 'category'
472
475
  property :create_time, as: 'createTime'
473
476
  property :event_time, as: 'eventTime'
@@ -526,6 +529,7 @@ module Google
526
529
  class GoogleCloudSecuritycenterV1p1beta1SecurityMarks
527
530
  # @private
528
531
  class Representation < Google::Apis::Core::JsonRepresentation
532
+ property :canonical_name, as: 'canonicalName'
529
533
  hash :marks, as: 'marks'
530
534
  property :name, as: 'name'
531
535
  end
@@ -745,6 +749,7 @@ module Google
745
749
  class SecurityMarks
746
750
  # @private
747
751
  class Representation < Google::Apis::Core::JsonRepresentation
752
+ property :canonical_name, as: 'canonicalName'
748
753
  hash :marks, as: 'marks'
749
754
  property :name, as: 'name'
750
755
  end
@@ -770,6 +775,7 @@ module Google
770
775
  class Source
771
776
  # @private
772
777
  class Representation < Google::Apis::Core::JsonRepresentation
778
+ property :canonical_name, as: 'canonicalName'
773
779
  property :description, as: 'description'
774
780
  property :display_name, as: 'displayName'
775
781
  property :name, as: 'name'
@@ -376,14 +376,18 @@ module Google
376
376
  # false` without quotes. The following field and operator combinations are
377
377
  # supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=
378
378
  # `, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<
379
- # `, `>=`, `<=` * severity: `=`, `:` Usage: This should be milliseconds since
380
- # epoch or an RFC3339 string. Examples: `event_time = "2019-06-10T16:07:18-07:00"
381
- # ` `event_time = 1560208038000` security_marks.marks: `=`, `:`
382
- # source_properties: `=`, `:`, `>`, `<`, `>=`, `<=` For example, `
383
- # source_properties.size = 100` is a valid filter string. Use a partial match on
384
- # the empty string to filter based on a property existing: `source_properties.
385
- # my_property : ""` Use a negated partial match on the empty string to filter
386
- # based on a property not existing: `-source_properties.my_property : ""`
379
+ # `, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339
380
+ # string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time =
381
+ # 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` *
382
+ # security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `
383
+ # <=` For example, `source_properties.size = 100` is a valid filter string. Use
384
+ # a partial match on the empty string to filter based on a property existing: `
385
+ # source_properties.my_property : ""` Use a negated partial match on the empty
386
+ # string to filter based on a property not existing: `-source_properties.
387
+ # my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name:
388
+ # `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`
389
+ # , `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:` *
390
+ # resource.folders.resource_folder: `=`, `:`
387
391
  # @param [String] order_by
388
392
  # Expression that defines what fields and order to use for sorting. The string
389
393
  # value should follow SQL syntax: comma separated list of fields. For example: "
@@ -1569,14 +1573,18 @@ module Google
1569
1573
  # false` without quotes. The following field and operator combinations are
1570
1574
  # supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=
1571
1575
  # `, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<
1572
- # `, `>=`, `<=` * severity: `=`, `:` Usage: This should be milliseconds since
1573
- # epoch or an RFC3339 string. Examples: `event_time = "2019-06-10T16:07:18-07:00"
1574
- # ` `event_time = 1560208038000` security_marks.marks: `=`, `:`
1575
- # source_properties: `=`, `:`, `>`, `<`, `>=`, `<=` For example, `
1576
- # source_properties.size = 100` is a valid filter string. Use a partial match on
1577
- # the empty string to filter based on a property existing: `source_properties.
1578
- # my_property : ""` Use a negated partial match on the empty string to filter
1579
- # based on a property not existing: `-source_properties.my_property : ""`
1576
+ # `, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339
1577
+ # string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time =
1578
+ # 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` *
1579
+ # security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `
1580
+ # <=` For example, `source_properties.size = 100` is a valid filter string. Use
1581
+ # a partial match on the empty string to filter based on a property existing: `
1582
+ # source_properties.my_property : ""` Use a negated partial match on the empty
1583
+ # string to filter based on a property not existing: `-source_properties.
1584
+ # my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name:
1585
+ # `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`
1586
+ # , `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:` *
1587
+ # resource.folders.resource_folder: `=`, `:`
1580
1588
  # @param [String] order_by
1581
1589
  # Expression that defines what fields and order to use for sorting. The string
1582
1590
  # value should follow SQL syntax: comma separated list of fields. For example: "
@@ -2082,14 +2090,18 @@ module Google
2082
2090
  # false` without quotes. The following field and operator combinations are
2083
2091
  # supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=
2084
2092
  # `, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<
2085
- # `, `>=`, `<=` * severity: `=`, `:` Usage: This should be milliseconds since
2086
- # epoch or an RFC3339 string. Examples: `event_time = "2019-06-10T16:07:18-07:00"
2087
- # ` `event_time = 1560208038000` security_marks.marks: `=`, `:`
2088
- # source_properties: `=`, `:`, `>`, `<`, `>=`, `<=` For example, `
2089
- # source_properties.size = 100` is a valid filter string. Use a partial match on
2090
- # the empty string to filter based on a property existing: `source_properties.
2091
- # my_property : ""` Use a negated partial match on the empty string to filter
2092
- # based on a property not existing: `-source_properties.my_property : ""`
2093
+ # `, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339
2094
+ # string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time =
2095
+ # 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` *
2096
+ # security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `
2097
+ # <=` For example, `source_properties.size = 100` is a valid filter string. Use
2098
+ # a partial match on the empty string to filter based on a property existing: `
2099
+ # source_properties.my_property : ""` Use a negated partial match on the empty
2100
+ # string to filter based on a property not existing: `-source_properties.
2101
+ # my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name:
2102
+ # `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`
2103
+ # , `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:` *
2104
+ # resource.folders.resource_folder: `=`, `:`
2093
2105
  # @param [String] order_by
2094
2106
  # Expression that defines what fields and order to use for sorting. The string
2095
2107
  # value should follow SQL syntax: comma separated list of fields. For example: "
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.7.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: 2021-02-22 00:00:00.000000000 Z
11
+ date: 2021-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-securitycenter_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.7.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-securitycenter_v1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Security Command Center API V1