google-apis-cloudasset_v1 0.64.0 → 0.65.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 771017a407eca823b837bbd1b8a952cd2eb1c2fcadbfc6e94acdbdfe9650c21d
|
4
|
+
data.tar.gz: f0a59156a0f5e7d471bcd55d42df9335631d9f65844cff18cc6428fde5c3a202
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24088cafbf81bc36c3fff1093901622f9845ffb457fb549ed2b29ee1315ed245d2c917b267546fe7a6740d996de453b471dfb403528ad0c1cfa1ec80295a0ea6
|
7
|
+
data.tar.gz: 8bc454be14de7477593b4fcf670c7d80a8489df05d7af01cc99a578f10bfca7d782bf80a3dd0cb4965a682583e635fd3ac46236dfed21d6d89b187e0c5d3f0b6
|
data/CHANGELOG.md
CHANGED
@@ -962,6 +962,40 @@ module Google
|
|
962
962
|
end
|
963
963
|
end
|
964
964
|
|
965
|
+
# The effective tags and the ancestor resources from which they were inherited.
|
966
|
+
class EffectiveTagDetails
|
967
|
+
include Google::Apis::Core::Hashable
|
968
|
+
|
969
|
+
# The [full resource name](https://cloud.google.com/asset-inventory/docs/
|
970
|
+
# resource-name-format) of the ancestor from which an effective_tag is inherited,
|
971
|
+
# according to [tag inheritance](https://cloud.google.com/resource-manager/docs/
|
972
|
+
# tags/tags-overview#inheritance).
|
973
|
+
# Corresponds to the JSON property `attachedResource`
|
974
|
+
# @return [String]
|
975
|
+
attr_accessor :attached_resource
|
976
|
+
|
977
|
+
# The effective tags inherited from the attached_resource. Note that tags with
|
978
|
+
# the same key but different values may attach to resources at a different
|
979
|
+
# hierarchy levels. The lower hierarchy tag value will overwrite the higher
|
980
|
+
# hierarchy tag value of the same tag key. In this case, the tag value at the
|
981
|
+
# higher hierarchy level will be removed. For more information, see [tag
|
982
|
+
# inheritance](https://cloud.google.com/resource-manager/docs/tags/tags-overview#
|
983
|
+
# inheritance).
|
984
|
+
# Corresponds to the JSON property `effectiveTags`
|
985
|
+
# @return [Array<Google::Apis::CloudassetV1::Tag>]
|
986
|
+
attr_accessor :effective_tags
|
987
|
+
|
988
|
+
def initialize(**args)
|
989
|
+
update!(**args)
|
990
|
+
end
|
991
|
+
|
992
|
+
# Update properties of this object
|
993
|
+
def update!(**args)
|
994
|
+
@attached_resource = args[:attached_resource] if args.key?(:attached_resource)
|
995
|
+
@effective_tags = args[:effective_tags] if args.key?(:effective_tags)
|
996
|
+
end
|
997
|
+
end
|
998
|
+
|
965
999
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
966
1000
|
# messages in your APIs. A typical example is to use it as the request or the
|
967
1001
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -5221,6 +5255,19 @@ module Google
|
|
5221
5255
|
# @return [String]
|
5222
5256
|
attr_accessor :display_name
|
5223
5257
|
|
5258
|
+
# The effective tags on this resource. All of the tags that are both attached to
|
5259
|
+
# and inherited by a resource are collectively called the effective tags. For
|
5260
|
+
# more information, see [tag inheritance](https://cloud.google.com/resource-
|
5261
|
+
# manager/docs/tags/tags-overview#inheritance). To search against the `
|
5262
|
+
# effective_tags`: * Use a field query. Example: - `effectiveTagKeys:"123456789/
|
5263
|
+
# env*"` - `effectiveTagKeys="123456789/env"` - `effectiveTagKeys:"env"` - `
|
5264
|
+
# effectiveTagValues:"env"` - `effectiveTagValues:"env/prod"` - `
|
5265
|
+
# effectiveTagValues:"123456789/env/prod*"` - `effectiveTagValues="123456789/env/
|
5266
|
+
# prod"` - `effectiveTagValueIds="tagValues/456"`
|
5267
|
+
# Corresponds to the JSON property `effectiveTags`
|
5268
|
+
# @return [Array<Google::Apis::CloudassetV1::EffectiveTagDetails>]
|
5269
|
+
attr_accessor :effective_tags
|
5270
|
+
|
5224
5271
|
# The folder(s) that this resource belongs to, in the form of folders/`
|
5225
5272
|
# FOLDER_NUMBER`. This field is available when the resource belongs to one or
|
5226
5273
|
# more folders. To search against `folders`: * Use a field query. Example: `
|
@@ -5368,29 +5415,43 @@ module Google
|
|
5368
5415
|
# @return [String]
|
5369
5416
|
attr_accessor :state
|
5370
5417
|
|
5371
|
-
#
|
5372
|
-
#
|
5373
|
-
#
|
5374
|
-
#
|
5418
|
+
# This field is only present for the purpose of backward compatibility. Please
|
5419
|
+
# use the `tags` field instead. TagKey namespaced names, in the format of `
|
5420
|
+
# ORG_ID`/`TAG_KEY_SHORT_NAME`. To search against the `tagKeys`: * Use a field
|
5421
|
+
# query. Example: - `tagKeys:"123456789/env*"` - `tagKeys="123456789/env"` - `
|
5422
|
+
# tagKeys:"env"` * Use a free text query. Example: - `env`
|
5375
5423
|
# Corresponds to the JSON property `tagKeys`
|
5376
5424
|
# @return [Array<String>]
|
5377
5425
|
attr_accessor :tag_keys
|
5378
5426
|
|
5379
|
-
#
|
5380
|
-
#
|
5427
|
+
# This field is only present for the purpose of backward compatibility. Please
|
5428
|
+
# use the `tags` field instead. TagValue IDs, in the format of tagValues/`
|
5429
|
+
# TAG_VALUE_ID`. To search against the `tagValueIds`: * Use a field query.
|
5430
|
+
# Example: - `tagValueIds="tagValues/456"` * Use a free text query. Example: - `
|
5431
|
+
# 456`
|
5381
5432
|
# Corresponds to the JSON property `tagValueIds`
|
5382
5433
|
# @return [Array<String>]
|
5383
5434
|
attr_accessor :tag_value_ids
|
5384
5435
|
|
5385
|
-
#
|
5386
|
-
#
|
5387
|
-
#
|
5388
|
-
#
|
5389
|
-
#
|
5436
|
+
# This field is only present for the purpose of backward compatibility. Please
|
5437
|
+
# use the `tags` field instead. TagValue namespaced names, in the format of `
|
5438
|
+
# ORG_ID`/`TAG_KEY_SHORT_NAME`/`TAG_VALUE_SHORT_NAME`. To search against the `
|
5439
|
+
# tagValues`: * Use a field query. Example: - `tagValues:"env"` - `tagValues:"
|
5440
|
+
# env/prod"` - `tagValues:"123456789/env/prod*"` - `tagValues="123456789/env/
|
5441
|
+
# prod"` * Use a free text query. Example: - `prod`
|
5390
5442
|
# Corresponds to the JSON property `tagValues`
|
5391
5443
|
# @return [Array<String>]
|
5392
5444
|
attr_accessor :tag_values
|
5393
5445
|
|
5446
|
+
# The tags directly attached to this resource. To search against the `tags`: *
|
5447
|
+
# Use a field query. Example: - `tagKeys:"123456789/env*"` - `tagKeys="123456789/
|
5448
|
+
# env"` - `tagKeys:"env"` - `tagValues:"env"` - `tagValues:"env/prod"` - `
|
5449
|
+
# tagValues:"123456789/env/prod*"` - `tagValues="123456789/env/prod"` - `
|
5450
|
+
# tagValueIds="tagValues/456"` * Use a free text query. Example: - `env/prod`
|
5451
|
+
# Corresponds to the JSON property `tags`
|
5452
|
+
# @return [Array<Google::Apis::CloudassetV1::Tag>]
|
5453
|
+
attr_accessor :tags
|
5454
|
+
|
5394
5455
|
# The last update timestamp of this resource, at which the resource was last
|
5395
5456
|
# modified or deleted. The granularity is in seconds. Timestamp.nanos will
|
5396
5457
|
# always be 0. This field is available only when the resource's Protobuf
|
@@ -5423,6 +5484,7 @@ module Google
|
|
5423
5484
|
@create_time = args[:create_time] if args.key?(:create_time)
|
5424
5485
|
@description = args[:description] if args.key?(:description)
|
5425
5486
|
@display_name = args[:display_name] if args.key?(:display_name)
|
5487
|
+
@effective_tags = args[:effective_tags] if args.key?(:effective_tags)
|
5426
5488
|
@folders = args[:folders] if args.key?(:folders)
|
5427
5489
|
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
5428
5490
|
@kms_keys = args[:kms_keys] if args.key?(:kms_keys)
|
@@ -5440,6 +5502,7 @@ module Google
|
|
5440
5502
|
@tag_keys = args[:tag_keys] if args.key?(:tag_keys)
|
5441
5503
|
@tag_value_ids = args[:tag_value_ids] if args.key?(:tag_value_ids)
|
5442
5504
|
@tag_values = args[:tag_values] if args.key?(:tag_values)
|
5505
|
+
@tags = args[:tags] if args.key?(:tags)
|
5443
5506
|
@update_time = args[:update_time] if args.key?(:update_time)
|
5444
5507
|
@versioned_resources = args[:versioned_resources] if args.key?(:versioned_resources)
|
5445
5508
|
end
|
@@ -5773,6 +5836,39 @@ module Google
|
|
5773
5836
|
end
|
5774
5837
|
end
|
5775
5838
|
|
5839
|
+
# The key and value for a [tag](https://cloud.google.com/resource-manager/docs/
|
5840
|
+
# tags/tags-overview),
|
5841
|
+
class Tag
|
5842
|
+
include Google::Apis::Core::Hashable
|
5843
|
+
|
5844
|
+
# TagKey namespaced name, in the format of `ORG_ID`/`TAG_KEY_SHORT_NAME`.
|
5845
|
+
# Corresponds to the JSON property `tagKey`
|
5846
|
+
# @return [String]
|
5847
|
+
attr_accessor :tag_key
|
5848
|
+
|
5849
|
+
# TagValue namespaced name, in the format of `ORG_ID`/`TAG_KEY_SHORT_NAME`/`
|
5850
|
+
# TAG_VALUE_SHORT_NAME`.
|
5851
|
+
# Corresponds to the JSON property `tagValue`
|
5852
|
+
# @return [String]
|
5853
|
+
attr_accessor :tag_value
|
5854
|
+
|
5855
|
+
# TagValue ID, in the format of tagValues/`TAG_VALUE_ID`.
|
5856
|
+
# Corresponds to the JSON property `tagValueId`
|
5857
|
+
# @return [String]
|
5858
|
+
attr_accessor :tag_value_id
|
5859
|
+
|
5860
|
+
def initialize(**args)
|
5861
|
+
update!(**args)
|
5862
|
+
end
|
5863
|
+
|
5864
|
+
# Update properties of this object
|
5865
|
+
def update!(**args)
|
5866
|
+
@tag_key = args[:tag_key] if args.key?(:tag_key)
|
5867
|
+
@tag_value = args[:tag_value] if args.key?(:tag_value)
|
5868
|
+
@tag_value_id = args[:tag_value_id] if args.key?(:tag_value_id)
|
5869
|
+
end
|
5870
|
+
end
|
5871
|
+
|
5776
5872
|
# An asset in Google Cloud and its temporal metadata, including the time window
|
5777
5873
|
# when it was observed and its status during that window.
|
5778
5874
|
class TemporalAsset
|
@@ -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.65.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 = "20230922"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -166,6 +166,12 @@ module Google
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
167
167
|
end
|
168
168
|
|
169
|
+
class EffectiveTagDetails
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
169
175
|
class Empty
|
170
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
177
|
|
@@ -778,6 +784,12 @@ module Google
|
|
778
784
|
include Google::Apis::Core::JsonObjectSupport
|
779
785
|
end
|
780
786
|
|
787
|
+
class Tag
|
788
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
789
|
+
|
790
|
+
include Google::Apis::Core::JsonObjectSupport
|
791
|
+
end
|
792
|
+
|
781
793
|
class TemporalAsset
|
782
794
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
783
795
|
|
@@ -1077,6 +1089,15 @@ module Google
|
|
1077
1089
|
end
|
1078
1090
|
end
|
1079
1091
|
|
1092
|
+
class EffectiveTagDetails
|
1093
|
+
# @private
|
1094
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1095
|
+
property :attached_resource, as: 'attachedResource'
|
1096
|
+
collection :effective_tags, as: 'effectiveTags', class: Google::Apis::CloudassetV1::Tag, decorator: Google::Apis::CloudassetV1::Tag::Representation
|
1097
|
+
|
1098
|
+
end
|
1099
|
+
end
|
1100
|
+
|
1080
1101
|
class Empty
|
1081
1102
|
# @private
|
1082
1103
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2063,6 +2084,8 @@ module Google
|
|
2063
2084
|
property :create_time, as: 'createTime'
|
2064
2085
|
property :description, as: 'description'
|
2065
2086
|
property :display_name, as: 'displayName'
|
2087
|
+
collection :effective_tags, as: 'effectiveTags', class: Google::Apis::CloudassetV1::EffectiveTagDetails, decorator: Google::Apis::CloudassetV1::EffectiveTagDetails::Representation
|
2088
|
+
|
2066
2089
|
collection :folders, as: 'folders'
|
2067
2090
|
property :kms_key, as: 'kmsKey'
|
2068
2091
|
collection :kms_keys, as: 'kmsKeys'
|
@@ -2081,6 +2104,8 @@ module Google
|
|
2081
2104
|
collection :tag_keys, as: 'tagKeys'
|
2082
2105
|
collection :tag_value_ids, as: 'tagValueIds'
|
2083
2106
|
collection :tag_values, as: 'tagValues'
|
2107
|
+
collection :tags, as: 'tags', class: Google::Apis::CloudassetV1::Tag, decorator: Google::Apis::CloudassetV1::Tag::Representation
|
2108
|
+
|
2084
2109
|
property :update_time, as: 'updateTime'
|
2085
2110
|
collection :versioned_resources, as: 'versionedResources', class: Google::Apis::CloudassetV1::VersionedResource, decorator: Google::Apis::CloudassetV1::VersionedResource::Representation
|
2086
2111
|
|
@@ -2179,6 +2204,15 @@ module Google
|
|
2179
2204
|
end
|
2180
2205
|
end
|
2181
2206
|
|
2207
|
+
class Tag
|
2208
|
+
# @private
|
2209
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2210
|
+
property :tag_key, as: 'tagKey'
|
2211
|
+
property :tag_value, as: 'tagValue'
|
2212
|
+
property :tag_value_id, as: 'tagValueId'
|
2213
|
+
end
|
2214
|
+
end
|
2215
|
+
|
2182
2216
|
class TemporalAsset
|
2183
2217
|
# @private
|
2184
2218
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1285,12 +1285,9 @@ module Google
|
|
1285
1285
|
# Optional. A comma-separated list of fields specifying the sorting order of the
|
1286
1286
|
# results. The default order is ascending. Add " DESC" after the field name to
|
1287
1287
|
# indicate descending order. Redundant space characters are ignored. Example: "
|
1288
|
-
# location DESC, name". Only
|
1289
|
-
#
|
1288
|
+
# location DESC, name". Only the following fields in the response are sortable: *
|
1289
|
+
# name * assetType * project * displayName * description * location *
|
1290
1290
|
# createTime * updateTime * state * parentFullResourceName * parentAssetType
|
1291
|
-
# All the other fields such as repeated fields (e.g., `networkTags`, `kmsKeys`),
|
1292
|
-
# map fields (e.g., `labels`) and struct fields (e.g., `additionalAttributes`)
|
1293
|
-
# are not supported.
|
1294
1291
|
# @param [Fixnum] page_size
|
1295
1292
|
# Optional. The page size for search result pagination. Page size is capped at
|
1296
1293
|
# 500 even if a larger value is given. If set to zero or a negative value,
|
@@ -1307,54 +1304,74 @@ module Google
|
|
1307
1304
|
# google.com/asset-inventory/docs/searching-resources#how_to_construct_a_query)
|
1308
1305
|
# for more information. If not specified or empty, it will search all the
|
1309
1306
|
# resources within the specified `scope`. Examples: * `name:Important` to find
|
1310
|
-
# Google Cloud resources whose name contains
|
1311
|
-
# Important` to find the Google Cloud resource whose name is exactly
|
1307
|
+
# Google Cloud resources whose name contains `Important` as a word. * `name=
|
1308
|
+
# Important` to find the Google Cloud resource whose name is exactly `Important`.
|
1312
1309
|
# * `displayName:Impor*` to find Google Cloud resources whose display name
|
1313
|
-
# contains
|
1314
|
-
# to find Google Cloud resources whose location contains both
|
1315
|
-
# prefixes. * `labels:prod` to find Google Cloud resources whose labels contain
|
1316
|
-
# prod
|
1317
|
-
# that have a label
|
1318
|
-
# Google Cloud resources that have a label
|
1319
|
-
# Cloud resources
|
1320
|
-
#
|
1321
|
-
#
|
1322
|
-
#
|
1323
|
-
#
|
1324
|
-
#
|
1310
|
+
# contains `Impor` as a prefix of any word in the field. * `location:us-west*`
|
1311
|
+
# to find Google Cloud resources whose location contains both `us` and `west` as
|
1312
|
+
# prefixes. * `labels:prod` to find Google Cloud resources whose labels contain `
|
1313
|
+
# prod` as a key or value. * `labels.env:prod` to find Google Cloud resources
|
1314
|
+
# that have a label `env` and its value is `prod`. * `labels.env:*` to find
|
1315
|
+
# Google Cloud resources that have a label `env`. * `tagKeys:env` to find Google
|
1316
|
+
# Cloud resources that have directly attached tags where the [`TagKey`](https://
|
1317
|
+
# cloud.google.com/resource-manager/reference/rest/v3/tagKeys#resource:-tagkey) .
|
1318
|
+
# `namespacedName` contains `env`. * `tagValues:prod*` to find Google Cloud
|
1319
|
+
# resources that have directly attached tags where the [`TagValue`](https://
|
1320
|
+
# cloud.google.com/resource-manager/reference/rest/v3/tagValues#resource:-
|
1321
|
+
# tagvalue) .`namespacedName` contains a word prefixed by `prod`. * `tagValueIds=
|
1322
|
+
# tagValues/123` to find Google Cloud resources that have directly attached tags
|
1323
|
+
# where the [`TagValue`](https://cloud.google.com/resource-manager/reference/
|
1324
|
+
# rest/v3/tagValues#resource:-tagvalue) .`name` is exactly `tagValues/123`. * `
|
1325
|
+
# effectiveTagKeys:env` to find Google Cloud resources that have directly
|
1326
|
+
# attached or inherited tags where the [`TagKey`](https://cloud.google.com/
|
1327
|
+
# resource-manager/reference/rest/v3/tagKeys#resource:-tagkey) .`namespacedName`
|
1328
|
+
# contains `env`. * `effectiveTagValues:prod*` to find Google Cloud resources
|
1329
|
+
# that have directly attached or inherited tags where the [`TagValue`](https://
|
1330
|
+
# cloud.google.com/resource-manager/reference/rest/v3/tagValues#resource:-
|
1331
|
+
# tagvalue) .`namespacedName` contains a word prefixed by `prod`. * `
|
1332
|
+
# effectiveTagValueIds=tagValues/123` to find Google Cloud resources that have
|
1333
|
+
# directly attached or inherited tags where the [`TagValue`](https://cloud.
|
1334
|
+
# google.com/resource-manager/reference/rest/v3/tagValues#resource:-tagvalue) .`
|
1335
|
+
# name` is exactly `tagValues/123`. * `kmsKey:key` to find Google Cloud
|
1336
|
+
# resources encrypted with a customer-managed encryption key whose name contains
|
1337
|
+
# `key` as a word. This field is deprecated. Please use the `kmsKeys` field to
|
1338
|
+
# retrieve Cloud KMS key information. * `kmsKeys:key` to find Google Cloud
|
1339
|
+
# resources encrypted with customer-managed encryption keys whose name contains
|
1340
|
+
# the word `key`. * `relationships:instance-group-1` to find Google Cloud
|
1341
|
+
# resources that have relationships with `instance-group-1` in the related
|
1325
1342
|
# resource name. * `relationships:INSTANCE_TO_INSTANCEGROUP` to find Compute
|
1326
|
-
# Engine instances that have relationships of type
|
1343
|
+
# Engine instances that have relationships of type `INSTANCE_TO_INSTANCEGROUP`. *
|
1327
1344
|
# `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find Compute
|
1328
|
-
# Engine instances that have relationships with
|
1329
|
-
# Compute Engine instance group resource name, for relationship type
|
1330
|
-
# INSTANCE_TO_INSTANCEGROUP
|
1331
|
-
# whose state contains
|
1332
|
-
# Cloud resources whose state doesn't contain
|
1333
|
-
# 1609459200` to find Google Cloud resources that were created before
|
1334
|
-
# 01 00:00:00 UTC
|
1335
|
-
# UTC
|
1336
|
-
# were updated after
|
1337
|
-
# timestamp of
|
1338
|
-
# Google Cloud resources that contain
|
1339
|
-
# searchable fields. * `Impor*` to find Google Cloud resources that contain
|
1340
|
-
# Impor
|
1341
|
-
# location:(us-west1 OR global)` to find Google Cloud resources that contain
|
1342
|
-
# Important
|
1343
|
-
# the
|
1345
|
+
# Engine instances that have relationships with `instance-group-1` in the
|
1346
|
+
# Compute Engine instance group resource name, for relationship type `
|
1347
|
+
# INSTANCE_TO_INSTANCEGROUP`. * `state:ACTIVE` to find Google Cloud resources
|
1348
|
+
# whose state contains `ACTIVE` as a word. * `NOT state:ACTIVE` to find Google
|
1349
|
+
# Cloud resources whose state doesn't contain `ACTIVE` as a word. * `createTime<
|
1350
|
+
# 1609459200` to find Google Cloud resources that were created before `2021-01-
|
1351
|
+
# 01 00:00:00 UTC`. `1609459200` is the epoch timestamp of `2021-01-01 00:00:00
|
1352
|
+
# UTC` in seconds. * `updateTime>1609459200` to find Google Cloud resources that
|
1353
|
+
# were updated after `2021-01-01 00:00:00 UTC`. `1609459200` is the epoch
|
1354
|
+
# timestamp of `2021-01-01 00:00:00 UTC` in seconds. * `Important` to find
|
1355
|
+
# Google Cloud resources that contain `Important` as a word in any of the
|
1356
|
+
# searchable fields. * `Impor*` to find Google Cloud resources that contain `
|
1357
|
+
# Impor` as a prefix of any word in any of the searchable fields. * `Important
|
1358
|
+
# location:(us-west1 OR global)` to find Google Cloud resources that contain `
|
1359
|
+
# Important` as a word in any of the searchable fields and are also located in
|
1360
|
+
# the `us-west1` region or the `global` location.
|
1344
1361
|
# @param [String] read_mask
|
1345
1362
|
# Optional. A comma-separated list of fields that you want returned in the
|
1346
1363
|
# results. The following fields are returned by default if not specified: * `
|
1347
1364
|
# name` * `assetType` * `project` * `folders` * `organization` * `displayName` *
|
1348
|
-
# `description` * `location` * `labels` * `
|
1349
|
-
#
|
1350
|
-
# parentFullResourceName` * `parentAssetType` Some
|
1351
|
-
#
|
1352
|
-
#
|
1353
|
-
# If `"*"` is specified,
|
1354
|
-
# inventory/docs/reference/
|
1355
|
-
# resourcesearchresult) are returned.
|
1356
|
-
# versionedResources"`, `"*"`. Any invalid
|
1357
|
-
# INVALID_ARGUMENT error.
|
1365
|
+
# `description` * `location` * `labels` * `tags` * `effectiveTags` * `
|
1366
|
+
# networkTags` * `kmsKeys` * `createTime` * `updateTime` * `state` * `
|
1367
|
+
# additionalAttributes` * `parentFullResourceName` * `parentAssetType` Some
|
1368
|
+
# fields of large size, such as `versionedResources`, `attachedResources`, `
|
1369
|
+
# effectiveTags` etc., are not returned by default, but you can specify them in
|
1370
|
+
# the `read_mask` parameter if you want to include them. If `"*"` is specified,
|
1371
|
+
# all [available fields](https://cloud.google.com/asset-inventory/docs/reference/
|
1372
|
+
# rest/v1/TopLevel/searchAllResources#resourcesearchresult) are returned.
|
1373
|
+
# Examples: `"name,location"`, `"name,versionedResources"`, `"*"`. Any invalid
|
1374
|
+
# field path will trigger INVALID_ARGUMENT error.
|
1358
1375
|
# @param [String] fields
|
1359
1376
|
# Selector specifying which fields to include in a partial response.
|
1360
1377
|
# @param [String] quota_user
|
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.65.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-10-01 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.65.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: []
|