google-apis-cloudasset_v1 0.62.0 → 0.63.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: b32a6d9802319098d3bd149c610bfcbc35c2fecb5f9295c60dd465566bc7d1df
|
|
4
|
+
data.tar.gz: 2cabe4b7bd239798bfd41155c80c43d6447ccc182fa71f7c1f168d183b834251
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc9458ec9e1cb34a51b2caebebe415e479cbf6340ae2fda1ed6b59863b3abba558e590602621456fe67ccae493fabd02a60cd23b3cf8eaa395251042a524a7d0
|
|
7
|
+
data.tar.gz: 995c9dd36b3270be3270c6bf05a9202a6e891899189c27e0969f2912ef826a2efd9549bfb40d436b89ef691ffed6ec93f4e33e0e8d76413699f02e2c413f67ba
|
data/CHANGELOG.md
CHANGED
|
@@ -2749,17 +2749,16 @@ module Google
|
|
|
2749
2749
|
# @return [String]
|
|
2750
2750
|
attr_accessor :parent
|
|
2751
2751
|
|
|
2752
|
-
# The scopes of
|
|
2753
|
-
# where
|
|
2754
|
-
# folders/123"] has the following behavior: -
|
|
2755
|
-
# projects within folders/123 -
|
|
2756
|
-
#
|
|
2757
|
-
#
|
|
2758
|
-
#
|
|
2759
|
-
#
|
|
2760
|
-
#
|
|
2761
|
-
#
|
|
2762
|
-
# folders/`folder_number`` or `projects/`project_number``
|
|
2752
|
+
# The scopes of the AccessPolicy. Scopes define which resources a policy can
|
|
2753
|
+
# restrict and where its resources can be referenced. For example, policy A with
|
|
2754
|
+
# `scopes=["folders/123"]` has the following behavior: - ServicePerimeter can
|
|
2755
|
+
# only restrict projects within `folders/123`. - ServicePerimeter within policy
|
|
2756
|
+
# A can only reference access levels defined within policy A. - Only one policy
|
|
2757
|
+
# can include a given scope; thus, attempting to create a second policy which
|
|
2758
|
+
# includes `folders/123` will result in an error. If no scopes are provided,
|
|
2759
|
+
# then any resource within the organization can be restricted. Scopes cannot be
|
|
2760
|
+
# modified after a policy is created. Policies can only have a single scope.
|
|
2761
|
+
# Format: list of `folders/`folder_number`` or `projects/`project_number``
|
|
2763
2762
|
# Corresponds to the JSON property `scopes`
|
|
2764
2763
|
# @return [Array<String>]
|
|
2765
2764
|
attr_accessor :scopes
|
|
@@ -5238,6 +5237,18 @@ module Google
|
|
|
5238
5237
|
# @return [Hash<String,Google::Apis::CloudassetV1::RelatedResources>]
|
|
5239
5238
|
attr_accessor :relationships
|
|
5240
5239
|
|
|
5240
|
+
# The actual content of Security Command Center security marks associated with
|
|
5241
|
+
# the asset. Note that both staging & prod SecurityMarks are attached on prod
|
|
5242
|
+
# resources. In CAS preprod/prod, both staging & prod SecurityMarks are ingested
|
|
5243
|
+
# and returned in the following `security_marks` map. In that case, the prefix "
|
|
5244
|
+
# staging." will be added to the keys of all the staging marks. To search
|
|
5245
|
+
# against SCC SecurityMarks field: * Use a field query: - query by a given key
|
|
5246
|
+
# value pair. Example: `sccSecurityMarks.foo=bar` - query by a given key's
|
|
5247
|
+
# existence. Example: `sccSecurityMarks.foo:*`
|
|
5248
|
+
# Corresponds to the JSON property `sccSecurityMarks`
|
|
5249
|
+
# @return [Hash<String,String>]
|
|
5250
|
+
attr_accessor :scc_security_marks
|
|
5251
|
+
|
|
5241
5252
|
# The state of this resource. Different resources types have different state
|
|
5242
5253
|
# definitions that are mapped from various fields of different resource types.
|
|
5243
5254
|
# This field is available only when the resource's Protobuf contains it. Example:
|
|
@@ -5322,6 +5333,7 @@ module Google
|
|
|
5322
5333
|
@parent_full_resource_name = args[:parent_full_resource_name] if args.key?(:parent_full_resource_name)
|
|
5323
5334
|
@project = args[:project] if args.key?(:project)
|
|
5324
5335
|
@relationships = args[:relationships] if args.key?(:relationships)
|
|
5336
|
+
@scc_security_marks = args[:scc_security_marks] if args.key?(:scc_security_marks)
|
|
5325
5337
|
@state = args[:state] if args.key?(:state)
|
|
5326
5338
|
@tag_keys = args[:tag_keys] if args.key?(:tag_keys)
|
|
5327
5339
|
@tag_value_ids = args[:tag_value_ids] if args.key?(:tag_value_ids)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudassetV1
|
|
18
18
|
# Version of the google-apis-cloudasset_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.63.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230902"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2030,6 +2030,7 @@ module Google
|
|
|
2030
2030
|
property :project, as: 'project'
|
|
2031
2031
|
hash :relationships, as: 'relationships', class: Google::Apis::CloudassetV1::RelatedResources, decorator: Google::Apis::CloudassetV1::RelatedResources::Representation
|
|
2032
2032
|
|
|
2033
|
+
hash :scc_security_marks, as: 'sccSecurityMarks'
|
|
2033
2034
|
property :state, as: 'state'
|
|
2034
2035
|
collection :tag_keys, as: 'tagKeys'
|
|
2035
2036
|
collection :tag_value_ids, as: 'tagValueIds'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudasset_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.63.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: 2023-
|
|
11
|
+
date: 2023-09-10 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-cloudasset_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.63.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.4.
|
|
78
|
+
rubygems_version: 3.4.19
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Cloud Asset API V1
|