google-apis-securitycenter_v1beta2 0.38.0 → 0.39.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: ee8e06603b4125c6044aa3b8bb7a9c1dcd27dd0ee9507fdc3a5b6477d9c08205
4
- data.tar.gz: 9e80cfdfe8effff7c2e22364392b9b0fac73b4a8020313406440e11c7f0c642b
3
+ metadata.gz: 1c4801dfd57bdb0872f4ecca20e7c5eaa6ed62e42a856e2b6fa9b1cfa2fa025f
4
+ data.tar.gz: 4ff41360bf2d4cd2e54a1ef105938dfeba380401d15f8315ec9ae9c466a6c9b0
5
5
  SHA512:
6
- metadata.gz: 665629a0834d39a25eca5bcc78b04fc01ed144c3b964103b7f6914cac2dd085dfe7bc0f7b27e02674be6eb3eebe003de9374f44438aaf38ddac079ae95ecbcd6
7
- data.tar.gz: 3255afea05f15f8b9ee7667a5387d5d2ec370661c7d08770fa4ec84eee172db050ccc2c251ce29749e9c068865224d7f8bda3133361cd26fb66e8ad3994a03a5
6
+ metadata.gz: 6c38f16c79d3a701850b6d0533ab845c3f5516a94cdc2c631a4e6d29c3e15973a18d0ae668f1a87d535d6ec272f3ea934d0f2916f004004bf0eaddf30949c6f4
7
+ data.tar.gz: 67092f02139ff0eb7916ed8996a8f4eb0f635291edd463c979c3c67e23c891030627492ac19c9a8f4cef0ad38b6c4ee1f9fd30cab94a5240c32823d1065aa5fa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.39.0 (2022-11-04)
4
+
5
+ * Regenerated from discovery document revision 20221027
6
+
3
7
  ### v0.38.0 (2022-10-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20221014
@@ -1630,11 +1630,26 @@ module Google
1630
1630
  # @return [String]
1631
1631
  attr_accessor :name
1632
1632
 
1633
+ # Apply resource_value only to resources that match resource_type. resource_type
1634
+ # will be checked with "AND" of other resources. E.g. "storage.googleapis.com/
1635
+ # Bucket" with resource_value "HIGH" will apply "HIGH" value only to "storage.
1636
+ # googleapis.com/Bucket" resources.
1637
+ # Corresponds to the JSON property `resourceType`
1638
+ # @return [String]
1639
+ attr_accessor :resource_type
1640
+
1633
1641
  # Required. Resource value level this expression represents
1634
1642
  # Corresponds to the JSON property `resourceValue`
1635
1643
  # @return [String]
1636
1644
  attr_accessor :resource_value
1637
1645
 
1646
+ # Project or folder to scope this config to. For example, "project/456" would
1647
+ # apply this config only to resources in "project/456" scope will be checked
1648
+ # with "AND" of other resources.
1649
+ # Corresponds to the JSON property `scope`
1650
+ # @return [String]
1651
+ attr_accessor :scope
1652
+
1638
1653
  # Required. Tag values combined with AND to check against. Values in the form "
1639
1654
  # tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
1640
1655
  # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
@@ -1649,7 +1664,9 @@ module Google
1649
1664
  # Update properties of this object
1650
1665
  def update!(**args)
1651
1666
  @name = args[:name] if args.key?(:name)
1667
+ @resource_type = args[:resource_type] if args.key?(:resource_type)
1652
1668
  @resource_value = args[:resource_value] if args.key?(:resource_value)
1669
+ @scope = args[:scope] if args.key?(:scope)
1653
1670
  @tag_values = args[:tag_values] if args.key?(:tag_values)
1654
1671
  end
1655
1672
  end
@@ -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.38.0"
19
+ GEM_VERSION = "0.39.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221014"
25
+ REVISION = "20221027"
26
26
  end
27
27
  end
28
28
  end
@@ -827,7 +827,9 @@ module Google
827
827
  # @private
828
828
  class Representation < Google::Apis::Core::JsonRepresentation
829
829
  property :name, as: 'name'
830
+ property :resource_type, as: 'resourceType'
830
831
  property :resource_value, as: 'resourceValue'
832
+ property :scope, as: 'scope'
831
833
  collection :tag_values, as: 'tagValues'
832
834
  end
833
835
  end
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.38.0
4
+ version: 0.39.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-10-21 00:00:00.000000000 Z
11
+ date: 2022-11-07 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.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.39.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: []