google-cloud-asset-v1 0.27.0 → 0.28.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/asset/v1/asset_service/client.rb +148 -106
- data/lib/google/cloud/asset/v1/asset_service/rest/client.rb +148 -106
- data/lib/google/cloud/asset/v1/asset_service_pb.rb +1 -1
- data/lib/google/cloud/asset/v1/asset_service_services_pb.rb +4 -6
- data/lib/google/cloud/asset/v1/assets_pb.rb +3 -2
- data/lib/google/cloud/asset/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +13 -0
- data/proto_docs/google/cloud/asset/v1/asset_service.rb +148 -101
- data/proto_docs/google/cloud/asset/v1/assets.rb +118 -16
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c67b73d598930bfc47dd2e882d34d13cec911b3ea0ce52056759e85ef3a44208
|
4
|
+
data.tar.gz: fab0851234a71440509abaf9d2aa972adc1f8cc44c9224a57e93a27d185aeff6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1aa714630a9020b57a30a5d2079ec5eb6cf75a7620d6dcc6e2219f677d0e724c027ce4bdca0ecd529ca621e75d4b80a1d49ef967fd5a4584d9b6cbeab30afdb0
|
7
|
+
data.tar.gz: d94d925daefa019d4e2a64f1f59f73c106662c258f6b0c0b03d585ac5e4dbb6380141602898cbdad407cf446e5b573ca24d3c5b19121aecb0e73a8310005354e
|
@@ -1174,54 +1174,82 @@ module Google
|
|
1174
1174
|
# Examples:
|
1175
1175
|
#
|
1176
1176
|
# * `name:Important` to find Google Cloud resources whose name contains
|
1177
|
-
#
|
1177
|
+
# `Important` as a word.
|
1178
1178
|
# * `name=Important` to find the Google Cloud resource whose name is exactly
|
1179
|
-
#
|
1179
|
+
# `Important`.
|
1180
1180
|
# * `displayName:Impor*` to find Google Cloud resources whose display name
|
1181
|
-
# contains
|
1181
|
+
# contains `Impor` as a prefix of any word in the field.
|
1182
1182
|
# * `location:us-west*` to find Google Cloud resources whose location
|
1183
|
-
# contains both
|
1184
|
-
# * `labels:prod` to find Google Cloud resources whose labels contain
|
1183
|
+
# contains both `us` and `west` as prefixes.
|
1184
|
+
# * `labels:prod` to find Google Cloud resources whose labels contain `prod`
|
1185
1185
|
# as a key or value.
|
1186
|
-
# * `labels.env:prod` to find Google Cloud resources that have a label
|
1187
|
-
# and its value is
|
1188
|
-
# * `labels.env:*` to find Google Cloud resources that have a label
|
1186
|
+
# * `labels.env:prod` to find Google Cloud resources that have a label `env`
|
1187
|
+
# and its value is `prod`.
|
1188
|
+
# * `labels.env:*` to find Google Cloud resources that have a label `env`.
|
1189
|
+
# * `tagKeys:env` to find Google Cloud resources that have directly
|
1190
|
+
# attached tags where the
|
1191
|
+
# [`TagKey.namespacedName`](https://cloud.google.com/resource-manager/reference/rest/v3/tagKeys#resource:-tagkey)
|
1192
|
+
# contains `env`.
|
1193
|
+
# * `tagValues:prod*` to find Google Cloud resources that have directly
|
1194
|
+
# attached tags where the
|
1195
|
+
# [`TagValue.namespacedName`](https://cloud.google.com/resource-manager/reference/rest/v3/tagValues#resource:-tagvalue)
|
1196
|
+
# contains a word prefixed by `prod`.
|
1197
|
+
# * `tagValueIds=tagValues/123` to find Google Cloud resources that have
|
1198
|
+
# directly attached tags where the
|
1199
|
+
# [`TagValue.name`](https://cloud.google.com/resource-manager/reference/rest/v3/tagValues#resource:-tagvalue)
|
1200
|
+
# is exactly `tagValues/123`.
|
1201
|
+
# * `effectiveTagKeys:env` to find Google Cloud resources that have
|
1202
|
+
# directly attached or inherited tags where the
|
1203
|
+
# [`TagKey.namespacedName`](https://cloud.google.com/resource-manager/reference/rest/v3/tagKeys#resource:-tagkey)
|
1204
|
+
# contains `env`.
|
1205
|
+
# * `effectiveTagValues:prod*` to find Google Cloud resources that have
|
1206
|
+
# directly attached or inherited tags where the
|
1207
|
+
# [`TagValue.namespacedName`](https://cloud.google.com/resource-manager/reference/rest/v3/tagValues#resource:-tagvalue)
|
1208
|
+
# contains a word prefixed by `prod`.
|
1209
|
+
# * `effectiveTagValueIds=tagValues/123` to find Google Cloud resources that
|
1210
|
+
# have directly attached or inherited tags where the
|
1211
|
+
# [`TagValue.name`](https://cloud.google.com/resource-manager/reference/rest/v3/tagValues#resource:-tagvalue)
|
1212
|
+
# is exactly `tagValues/123`.
|
1189
1213
|
# * `kmsKey:key` to find Google Cloud resources encrypted with a
|
1190
|
-
# customer-managed encryption key whose name contains
|
1191
|
-
# field is deprecated.
|
1214
|
+
# customer-managed encryption key whose name contains `key` as a word. This
|
1215
|
+
# field is deprecated. Use the `kmsKeys` field to retrieve Cloud KMS
|
1192
1216
|
# key information.
|
1193
1217
|
# * `kmsKeys:key` to find Google Cloud resources encrypted with
|
1194
|
-
# customer-managed encryption keys whose name contains the word
|
1218
|
+
# customer-managed encryption keys whose name contains the word `key`.
|
1195
1219
|
# * `relationships:instance-group-1` to find Google Cloud resources that have
|
1196
|
-
# relationships with
|
1220
|
+
# relationships with `instance-group-1` in the related resource name.
|
1197
1221
|
# * `relationships:INSTANCE_TO_INSTANCEGROUP` to find Compute Engine
|
1198
|
-
# instances that have relationships of type
|
1222
|
+
# instances that have relationships of type `INSTANCE_TO_INSTANCEGROUP`.
|
1199
1223
|
# * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
|
1200
|
-
# Compute Engine instances that have relationships with
|
1224
|
+
# Compute Engine instances that have relationships with `instance-group-1`
|
1201
1225
|
# in the Compute Engine instance group resource name, for relationship type
|
1202
|
-
#
|
1226
|
+
# `INSTANCE_TO_INSTANCEGROUP`.
|
1227
|
+
# * `sccSecurityMarks.key=value` to find Cloud resources that are attached
|
1228
|
+
# with security marks whose key is `key` and value is `value`.
|
1229
|
+
# * `sccSecurityMarks.key:*` to find Cloud resources that are attached with
|
1230
|
+
# security marks whose key is `key`.
|
1203
1231
|
# * `state:ACTIVE` to find Google Cloud resources whose state contains
|
1204
|
-
#
|
1232
|
+
# `ACTIVE` as a word.
|
1205
1233
|
# * `NOT state:ACTIVE` to find Google Cloud resources whose state doesn't
|
1206
|
-
# contain
|
1234
|
+
# contain `ACTIVE` as a word.
|
1207
1235
|
# * `createTime<1609459200` to find Google Cloud resources that were created
|
1208
|
-
# before
|
1209
|
-
#
|
1236
|
+
# before `2021-01-01 00:00:00 UTC`. `1609459200` is the epoch timestamp of
|
1237
|
+
# `2021-01-01 00:00:00 UTC` in seconds.
|
1210
1238
|
# * `updateTime>1609459200` to find Google Cloud resources that were updated
|
1211
|
-
# after
|
1212
|
-
#
|
1213
|
-
# * `Important` to find Google Cloud resources that contain
|
1239
|
+
# after `2021-01-01 00:00:00 UTC`. `1609459200` is the epoch timestamp of
|
1240
|
+
# `2021-01-01 00:00:00 UTC` in seconds.
|
1241
|
+
# * `Important` to find Google Cloud resources that contain `Important` as a
|
1214
1242
|
# word in any of the searchable fields.
|
1215
|
-
# * `Impor*` to find Google Cloud resources that contain
|
1243
|
+
# * `Impor*` to find Google Cloud resources that contain `Impor` as a prefix
|
1216
1244
|
# of any word in any of the searchable fields.
|
1217
1245
|
# * `Important location:(us-west1 OR global)` to find Google Cloud
|
1218
|
-
# resources that contain
|
1219
|
-
# fields and are also located in the
|
1246
|
+
# resources that contain `Important` as a word in any of the searchable
|
1247
|
+
# fields and are also located in the `us-west1` region or the `global`
|
1220
1248
|
# location.
|
1221
1249
|
# @param asset_types [::Array<::String>]
|
1222
1250
|
# Optional. A list of asset types that this request searches for. If empty,
|
1223
1251
|
# it will search all the [searchable asset
|
1224
|
-
# types](https://cloud.google.com/asset-inventory/docs/supported-asset-types
|
1252
|
+
# types](https://cloud.google.com/asset-inventory/docs/supported-asset-types).
|
1225
1253
|
#
|
1226
1254
|
# Regular expressions are also supported. For example:
|
1227
1255
|
#
|
@@ -1235,10 +1263,10 @@ module Google
|
|
1235
1263
|
# supported asset type, an INVALID_ARGUMENT error will be returned.
|
1236
1264
|
# @param page_size [::Integer]
|
1237
1265
|
# Optional. The page size for search result pagination. Page size is capped
|
1238
|
-
# at 500 even if a larger value is given. If set to zero
|
1239
|
-
# appropriate default. Returned results may be fewer than
|
1240
|
-
# this happens, there could be more results as long as
|
1241
|
-
# returned.
|
1266
|
+
# at 500 even if a larger value is given. If set to zero or a negative value,
|
1267
|
+
# server will pick an appropriate default. Returned results may be fewer than
|
1268
|
+
# requested. When this happens, there could be more results as long as
|
1269
|
+
# `next_page_token` is returned.
|
1242
1270
|
# @param page_token [::String]
|
1243
1271
|
# Optional. If present, then retrieve the next batch of results from the
|
1244
1272
|
# preceding call to this method. `page_token` must be the value of
|
@@ -1249,7 +1277,7 @@ module Google
|
|
1249
1277
|
# the results. The default order is ascending. Add " DESC" after the field
|
1250
1278
|
# name to indicate descending order. Redundant space characters are ignored.
|
1251
1279
|
# Example: "location DESC, name".
|
1252
|
-
# Only
|
1280
|
+
# Only the following fields in the response are sortable:
|
1253
1281
|
#
|
1254
1282
|
# * name
|
1255
1283
|
# * assetType
|
@@ -1262,43 +1290,37 @@ module Google
|
|
1262
1290
|
# * state
|
1263
1291
|
# * parentFullResourceName
|
1264
1292
|
# * parentAssetType
|
1265
|
-
#
|
1266
|
-
# All the other fields such as repeated fields (e.g., `networkTags`,
|
1267
|
-
# `kmsKeys`), map fields (e.g., `labels`) and struct fields (e.g.,
|
1268
|
-
# `additionalAttributes`) are not supported.
|
1269
1293
|
# @param read_mask [::Google::Protobuf::FieldMask, ::Hash]
|
1270
|
-
# Optional. A comma-separated list of fields
|
1271
|
-
#
|
1272
|
-
#
|
1273
|
-
#
|
1274
|
-
#
|
1275
|
-
#
|
1276
|
-
#
|
1277
|
-
#
|
1278
|
-
# *
|
1279
|
-
# *
|
1280
|
-
# *
|
1281
|
-
# *
|
1282
|
-
# *
|
1283
|
-
# *
|
1284
|
-
# *
|
1285
|
-
# *
|
1286
|
-
# *
|
1287
|
-
# *
|
1288
|
-
# *
|
1289
|
-
# *
|
1290
|
-
#
|
1291
|
-
# *
|
1292
|
-
#
|
1293
|
-
#
|
1294
|
-
#
|
1295
|
-
#
|
1296
|
-
#
|
1297
|
-
#
|
1298
|
-
#
|
1299
|
-
#
|
1300
|
-
# If only '*' is specified, all fields including versionedResources will be
|
1301
|
-
# returned.
|
1294
|
+
# Optional. A comma-separated list of fields that you want returned in the
|
1295
|
+
# results. The following fields are returned by default if not specified:
|
1296
|
+
#
|
1297
|
+
# * `name`
|
1298
|
+
# * `assetType`
|
1299
|
+
# * `project`
|
1300
|
+
# * `folders`
|
1301
|
+
# * `organization`
|
1302
|
+
# * `displayName`
|
1303
|
+
# * `description`
|
1304
|
+
# * `location`
|
1305
|
+
# * `labels`
|
1306
|
+
# * `tags`
|
1307
|
+
# * `effectiveTags`
|
1308
|
+
# * `networkTags`
|
1309
|
+
# * `kmsKeys`
|
1310
|
+
# * `createTime`
|
1311
|
+
# * `updateTime`
|
1312
|
+
# * `state`
|
1313
|
+
# * `additionalAttributes`
|
1314
|
+
# * `parentFullResourceName`
|
1315
|
+
# * `parentAssetType`
|
1316
|
+
#
|
1317
|
+
# Some fields of large size, such as `versionedResources`,
|
1318
|
+
# `attachedResources`, `effectiveTags` etc., are not returned by default, but
|
1319
|
+
# you can specify them in the `read_mask` parameter if you want to include
|
1320
|
+
# them. If `"*"` is specified, all [available
|
1321
|
+
# fields](https://cloud.google.com/asset-inventory/docs/reference/rest/v1/TopLevel/searchAllResources#resourcesearchresult)
|
1322
|
+
# are returned.
|
1323
|
+
# Examples: `"name,location"`, `"name,versionedResources"`, `"*"`.
|
1302
1324
|
# Any invalid field path will trigger INVALID_ARGUMENT error.
|
1303
1325
|
#
|
1304
1326
|
# @yield [response, operation] Access the result along with the RPC operation
|
@@ -1449,10 +1471,10 @@ module Google
|
|
1449
1471
|
# principal type "user".
|
1450
1472
|
# @param page_size [::Integer]
|
1451
1473
|
# Optional. The page size for search result pagination. Page size is capped
|
1452
|
-
# at 500 even if a larger value is given. If set to zero
|
1453
|
-
# appropriate default. Returned results may be fewer than
|
1454
|
-
# this happens, there could be more results as long as
|
1455
|
-
# returned.
|
1474
|
+
# at 500 even if a larger value is given. If set to zero or a negative value,
|
1475
|
+
# server will pick an appropriate default. Returned results may be fewer than
|
1476
|
+
# requested. When this happens, there could be more results as long as
|
1477
|
+
# `next_page_token` is returned.
|
1456
1478
|
# @param page_token [::String]
|
1457
1479
|
# Optional. If present, retrieve the next batch of results from the preceding
|
1458
1480
|
# call to this method. `page_token` must be the value of `next_page_token`
|
@@ -1462,7 +1484,7 @@ module Google
|
|
1462
1484
|
# Optional. A list of asset types that the IAM policies are attached to. If
|
1463
1485
|
# empty, it will search the IAM policies that are attached to all the
|
1464
1486
|
# [searchable asset
|
1465
|
-
# types](https://cloud.google.com/asset-inventory/docs/supported-asset-types
|
1487
|
+
# types](https://cloud.google.com/asset-inventory/docs/supported-asset-types).
|
1466
1488
|
#
|
1467
1489
|
# Regular expressions are also supported. For example:
|
1468
1490
|
#
|
@@ -1588,7 +1610,7 @@ module Google
|
|
1588
1610
|
# If both `analysis_query` and `saved_analysis_query` are provided, they
|
1589
1611
|
# will be merged together with the `saved_analysis_query` as base and
|
1590
1612
|
# the `analysis_query` as overrides. For more details of the merge behavior,
|
1591
|
-
#
|
1613
|
+
# refer to the
|
1592
1614
|
# [MergeFrom](https://developers.google.com/protocol-buffers/docs/reference/cpp/google.protobuf.message#Message.MergeFrom.details)
|
1593
1615
|
# page.
|
1594
1616
|
#
|
@@ -1711,7 +1733,7 @@ module Google
|
|
1711
1733
|
# If both `analysis_query` and `saved_analysis_query` are provided, they
|
1712
1734
|
# will be merged together with the `saved_analysis_query` as base and
|
1713
1735
|
# the `analysis_query` as overrides. For more details of the merge behavior,
|
1714
|
-
#
|
1736
|
+
# refer to the
|
1715
1737
|
# [MergeFrom](https://developers.google.com/protocol-buffers/docs/reference/cpp/google.protobuf.message#Message.MergeFrom.details)
|
1716
1738
|
# doc.
|
1717
1739
|
#
|
@@ -1897,8 +1919,7 @@ module Google
|
|
1897
1919
|
|
1898
1920
|
##
|
1899
1921
|
# Issue a job that queries assets using a SQL statement compatible with
|
1900
|
-
# [BigQuery
|
1901
|
-
# SQL](http://cloud/bigquery/docs/reference/standard-sql/enabling-standard-sql).
|
1922
|
+
# [BigQuery SQL](https://cloud.google.com/bigquery/docs/introduction-sql).
|
1902
1923
|
#
|
1903
1924
|
# If the query execution finishes within timeout and there's no pagination,
|
1904
1925
|
# the full query results will be returned in the `QueryAssetsResponse`.
|
@@ -1907,9 +1928,8 @@ module Google
|
|
1907
1928
|
# with the `job_reference` from the a previous `QueryAssets` call.
|
1908
1929
|
#
|
1909
1930
|
# Note, the query result has approximately 10 GB limitation enforced by
|
1910
|
-
# BigQuery
|
1911
|
-
#
|
1912
|
-
# queries return larger results will result in errors.
|
1931
|
+
# [BigQuery](https://cloud.google.com/bigquery/docs/best-practices-performance-output).
|
1932
|
+
# Queries return larger results will result in errors.
|
1913
1933
|
#
|
1914
1934
|
# @overload query_assets(request, options = nil)
|
1915
1935
|
# Pass arguments to `query_assets` via a request object, either of type
|
@@ -1934,8 +1954,8 @@ module Google
|
|
1934
1954
|
#
|
1935
1955
|
# Only assets belonging to the `parent` will be returned.
|
1936
1956
|
# @param statement [::String]
|
1937
|
-
# Optional. A SQL statement that's compatible with [BigQuery
|
1938
|
-
# SQL](
|
1957
|
+
# Optional. A SQL statement that's compatible with [BigQuery
|
1958
|
+
# SQL](https://cloud.google.com/bigquery/docs/introduction-sql).
|
1939
1959
|
# @param job_reference [::String]
|
1940
1960
|
# Optional. Reference to the query job, which is from the
|
1941
1961
|
# `QueryAssetsResponse` of previous `QueryAssets` call.
|
@@ -2567,7 +2587,7 @@ module Google
|
|
2567
2587
|
# Required. The names refer to the [full_resource_names]
|
2568
2588
|
# (https://cloud.google.com/asset-inventory/docs/resource-name-format)
|
2569
2589
|
# of [searchable asset
|
2570
|
-
# types](https://cloud.google.com/asset-inventory/docs/supported-asset-types
|
2590
|
+
# types](https://cloud.google.com/asset-inventory/docs/supported-asset-types).
|
2571
2591
|
# A maximum of 20 resources' effective policies can be retrieved in a batch.
|
2572
2592
|
#
|
2573
2593
|
# @yield [response, operation] Access the result along with the RPC operation
|
@@ -2664,12 +2684,15 @@ module Google
|
|
2664
2684
|
# @param filter [::String]
|
2665
2685
|
# The expression to filter
|
2666
2686
|
# {::Google::Cloud::Asset::V1::AnalyzeOrgPoliciesResponse#org_policy_results AnalyzeOrgPoliciesResponse.org_policy_results}.
|
2667
|
-
#
|
2668
|
-
#
|
2687
|
+
# Filtering is currently available for bare literal values and the following
|
2688
|
+
# fields:
|
2689
|
+
# * consolidated_policy.attached_resource
|
2690
|
+
# * consolidated_policy.rules.enforce
|
2669
2691
|
#
|
2670
|
-
#
|
2692
|
+
# When filtering by a specific field, the only supported operator is `=`.
|
2693
|
+
# For example, filtering by
|
2671
2694
|
# consolidated_policy.attached_resource="//cloudresourcemanager.googleapis.com/folders/001"
|
2672
|
-
# will return the
|
2695
|
+
# will return all the Organization Policy results attached to "folders/001".
|
2673
2696
|
# @param page_size [::Integer]
|
2674
2697
|
# The maximum number of items to return per page. If unspecified,
|
2675
2698
|
# {::Google::Cloud::Asset::V1::AnalyzeOrgPoliciesResponse#org_policy_results AnalyzeOrgPoliciesResponse.org_policy_results}
|
@@ -2777,13 +2800,17 @@ module Google
|
|
2777
2800
|
# The analysis only contains organization policies for the provided
|
2778
2801
|
# constraint.
|
2779
2802
|
# @param filter [::String]
|
2780
|
-
# The expression to filter
|
2781
|
-
#
|
2782
|
-
#
|
2783
|
-
#
|
2784
|
-
#
|
2785
|
-
#
|
2786
|
-
#
|
2803
|
+
# The expression to filter
|
2804
|
+
# {::Google::Cloud::Asset::V1::AnalyzeOrgPolicyGovernedContainersResponse#governed_containers AnalyzeOrgPolicyGovernedContainersResponse.governed_containers}.
|
2805
|
+
# Filtering is currently available for bare literal values and the following
|
2806
|
+
# fields:
|
2807
|
+
# * parent
|
2808
|
+
# * consolidated_policy.rules.enforce
|
2809
|
+
#
|
2810
|
+
# When filtering by a specific field, the only supported operator is `=`.
|
2811
|
+
# For example, filtering by
|
2812
|
+
# parent="//cloudresourcemanager.googleapis.com/folders/001"
|
2813
|
+
# will return all the containers under "folders/001".
|
2787
2814
|
# @param page_size [::Integer]
|
2788
2815
|
# The maximum number of items to return per page. If unspecified,
|
2789
2816
|
# {::Google::Cloud::Asset::V1::AnalyzeOrgPolicyGovernedContainersResponse#governed_containers AnalyzeOrgPolicyGovernedContainersResponse.governed_containers}
|
@@ -2878,7 +2905,7 @@ module Google
|
|
2878
2905
|
#
|
2879
2906
|
# This RPC only returns either resources of types supported by [searchable
|
2880
2907
|
# asset
|
2881
|
-
# types](https://cloud.google.com/asset-inventory/docs/supported-asset-types
|
2908
|
+
# types](https://cloud.google.com/asset-inventory/docs/supported-asset-types),
|
2882
2909
|
# or IAM policies.
|
2883
2910
|
#
|
2884
2911
|
# @overload analyze_org_policy_governed_assets(request, options = nil)
|
@@ -2908,18 +2935,33 @@ module Google
|
|
2908
2935
|
# analysis only contains analyzed organization policies for the provided
|
2909
2936
|
# constraint.
|
2910
2937
|
# @param filter [::String]
|
2911
|
-
# The expression to filter
|
2912
|
-
#
|
2913
|
-
#
|
2914
|
-
#
|
2915
|
-
#
|
2916
|
-
#
|
2917
|
-
#
|
2918
|
-
#
|
2919
|
-
#
|
2920
|
-
#
|
2921
|
-
#
|
2922
|
-
#
|
2938
|
+
# The expression to filter
|
2939
|
+
# {::Google::Cloud::Asset::V1::AnalyzeOrgPolicyGovernedAssetsResponse#governed_assets AnalyzeOrgPolicyGovernedAssetsResponse.governed_assets}.
|
2940
|
+
#
|
2941
|
+
# For governed resources, filtering is currently available for bare literal
|
2942
|
+
# values and the following fields:
|
2943
|
+
# * governed_resource.project
|
2944
|
+
# * governed_resource.folders
|
2945
|
+
# * consolidated_policy.rules.enforce
|
2946
|
+
# When filtering by `governed_resource.project` or
|
2947
|
+
# `consolidated_policy.rules.enforce`, the only supported operator is `=`.
|
2948
|
+
# When filtering by `governed_resource.folders`, the supported operators
|
2949
|
+
# are `=` and `:`.
|
2950
|
+
# For example, filtering by `governed_resource.project="projects/12345678"`
|
2951
|
+
# will return all the governed resources under "projects/12345678",
|
2952
|
+
# including the project itself if applicable.
|
2953
|
+
#
|
2954
|
+
# For governed IAM policies, filtering is currently available for bare
|
2955
|
+
# literal values and the following fields:
|
2956
|
+
# * governed_iam_policy.project
|
2957
|
+
# * governed_iam_policy.folders
|
2958
|
+
# * consolidated_policy.rules.enforce
|
2959
|
+
# When filtering by `governed_iam_policy.project` or
|
2960
|
+
# `consolidated_policy.rules.enforce`, the only supported operator is `=`.
|
2961
|
+
# When filtering by `governed_iam_policy.folders`, the supported operators
|
2962
|
+
# are `=` and `:`.
|
2963
|
+
# For example, filtering by `governed_iam_policy.folders:"folders/12345678"`
|
2964
|
+
# will return all the governed IAM policies under "folders/001".
|
2923
2965
|
# @param page_size [::Integer]
|
2924
2966
|
# The maximum number of items to return per page. If unspecified,
|
2925
2967
|
# {::Google::Cloud::Asset::V1::AnalyzeOrgPolicyGovernedAssetsResponse#governed_assets AnalyzeOrgPolicyGovernedAssetsResponse.governed_assets}
|