google-cloud-asset-v1 0.26.1 → 0.28.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 +4 -4
- data/lib/google/cloud/asset/v1/asset_service/client.rb +102 -77
- data/lib/google/cloud/asset/v1/asset_service/operations.rb +10 -1
- data/lib/google/cloud/asset/v1/asset_service/rest/client.rb +502 -76
- data/lib/google/cloud/asset/v1/asset_service/rest/operations.rb +75 -0
- data/lib/google/cloud/asset/v1/asset_service_services_pb.rb +3 -5
- data/lib/google/cloud/asset/v1/assets_pb.rb +3 -1
- data/lib/google/cloud/asset/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +13 -0
- data/proto_docs/google/api/field_behavior.rb +14 -0
- data/proto_docs/google/cloud/asset/v1/asset_service.rb +94 -73
- data/proto_docs/google/cloud/asset/v1/assets.rb +114 -6
- metadata +5 -5
@@ -136,6 +136,26 @@ module Google
|
|
136
136
|
# @return [::Gapic::Operation]
|
137
137
|
#
|
138
138
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
139
|
+
#
|
140
|
+
# @example Basic example
|
141
|
+
# require "google/longrunning"
|
142
|
+
#
|
143
|
+
# # Create a client object. The client can be reused for multiple calls.
|
144
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
145
|
+
#
|
146
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
147
|
+
# request = Google::Longrunning::ListOperationsRequest.new
|
148
|
+
#
|
149
|
+
# # Call the list_operations method.
|
150
|
+
# result = client.list_operations request
|
151
|
+
#
|
152
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
153
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
154
|
+
# result.each do |item|
|
155
|
+
# # Each element is of type ::Google::Longrunning::Operation.
|
156
|
+
# p item
|
157
|
+
# end
|
158
|
+
#
|
139
159
|
def list_operations request, options = nil
|
140
160
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
141
161
|
|
@@ -201,6 +221,29 @@ module Google
|
|
201
221
|
# @return [::Gapic::Operation]
|
202
222
|
#
|
203
223
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
224
|
+
#
|
225
|
+
# @example Basic example
|
226
|
+
# require "google/longrunning"
|
227
|
+
#
|
228
|
+
# # Create a client object. The client can be reused for multiple calls.
|
229
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
230
|
+
#
|
231
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
232
|
+
# request = Google::Longrunning::GetOperationRequest.new
|
233
|
+
#
|
234
|
+
# # Call the get_operation method.
|
235
|
+
# result = client.get_operation request
|
236
|
+
#
|
237
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
238
|
+
# # check the status of an operation, cancel it, or wait for results.
|
239
|
+
# # Here is how to wait for a response.
|
240
|
+
# result.wait_until_done! timeout: 60
|
241
|
+
# if result.response?
|
242
|
+
# p result.response
|
243
|
+
# else
|
244
|
+
# puts "No response received."
|
245
|
+
# end
|
246
|
+
#
|
204
247
|
def get_operation request, options = nil
|
205
248
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
206
249
|
|
@@ -267,6 +310,22 @@ module Google
|
|
267
310
|
# @return [::Google::Protobuf::Empty]
|
268
311
|
#
|
269
312
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
313
|
+
#
|
314
|
+
# @example Basic example
|
315
|
+
# require "google/longrunning"
|
316
|
+
#
|
317
|
+
# # Create a client object. The client can be reused for multiple calls.
|
318
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
319
|
+
#
|
320
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
321
|
+
# request = Google::Longrunning::DeleteOperationRequest.new
|
322
|
+
#
|
323
|
+
# # Call the delete_operation method.
|
324
|
+
# result = client.delete_operation request
|
325
|
+
#
|
326
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
327
|
+
# p result
|
328
|
+
#
|
270
329
|
def delete_operation request, options = nil
|
271
330
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
272
331
|
|
@@ -338,6 +397,22 @@ module Google
|
|
338
397
|
# @return [::Google::Protobuf::Empty]
|
339
398
|
#
|
340
399
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
400
|
+
#
|
401
|
+
# @example Basic example
|
402
|
+
# require "google/longrunning"
|
403
|
+
#
|
404
|
+
# # Create a client object. The client can be reused for multiple calls.
|
405
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
406
|
+
#
|
407
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
408
|
+
# request = Google::Longrunning::CancelOperationRequest.new
|
409
|
+
#
|
410
|
+
# # Call the cancel_operation method.
|
411
|
+
# result = client.cancel_operation request
|
412
|
+
#
|
413
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
414
|
+
# p result
|
415
|
+
#
|
341
416
|
def cancel_operation request, options = nil
|
342
417
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
343
418
|
|
@@ -98,8 +98,7 @@ module Google
|
|
98
98
|
# resource migration takes place.
|
99
99
|
rpc :AnalyzeMove, ::Google::Cloud::Asset::V1::AnalyzeMoveRequest, ::Google::Cloud::Asset::V1::AnalyzeMoveResponse
|
100
100
|
# Issue a job that queries assets using a SQL statement compatible with
|
101
|
-
# [BigQuery
|
102
|
-
# SQL](http://cloud/bigquery/docs/reference/standard-sql/enabling-standard-sql).
|
101
|
+
# [BigQuery SQL](https://cloud.google.com/bigquery/docs/introduction-sql).
|
103
102
|
#
|
104
103
|
# If the query execution finishes within timeout and there's no pagination,
|
105
104
|
# the full query results will be returned in the `QueryAssetsResponse`.
|
@@ -108,9 +107,8 @@ module Google
|
|
108
107
|
# with the `job_reference` from the a previous `QueryAssets` call.
|
109
108
|
#
|
110
109
|
# Note, the query result has approximately 10 GB limitation enforced by
|
111
|
-
# BigQuery
|
112
|
-
#
|
113
|
-
# queries return larger results will result in errors.
|
110
|
+
# [BigQuery](https://cloud.google.com/bigquery/docs/best-practices-performance-output).
|
111
|
+
# Queries return larger results will result in errors.
|
114
112
|
rpc :QueryAssets, ::Google::Cloud::Asset::V1::QueryAssetsRequest, ::Google::Cloud::Asset::V1::QueryAssetsResponse
|
115
113
|
# Creates a saved query in a parent project/folder/organization.
|
116
114
|
rpc :CreateSavedQuery, ::Google::Cloud::Asset::V1::CreateSavedQueryRequest, ::Google::Cloud::Asset::V1::SavedQuery
|
@@ -17,7 +17,7 @@ require 'google/protobuf/timestamp_pb'
|
|
17
17
|
require 'google/rpc/code_pb'
|
18
18
|
|
19
19
|
|
20
|
-
descriptor_data = "\n\"google/cloud/asset/v1/assets.proto\x12\x15google.cloud.asset.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a)google/cloud/orgpolicy/v1/orgpolicy.proto\x1a(google/cloud/osconfig/v1/inventory.proto\x1a\x1agoogle/iam/v1/policy.proto\x1a:google/identity/accesscontextmanager/v1/access_level.proto\x1a;google/identity/accesscontextmanager/v1/access_policy.proto\x1a?google/identity/accesscontextmanager/v1/service_perimeter.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x15google/rpc/code.proto\"\xf5\x02\n\rTemporalAsset\x12\x31\n\x06window\x18\x01 \x01(\x0b\x32!.google.cloud.asset.v1.TimeWindow\x12\x0f\n\x07\x64\x65leted\x18\x02 \x01(\x08\x12+\n\x05\x61sset\x18\x03 \x01(\x0b\x32\x1c.google.cloud.asset.v1.Asset\x12O\n\x11prior_asset_state\x18\x04 \x01(\x0e\x32\x34.google.cloud.asset.v1.TemporalAsset.PriorAssetState\x12\x31\n\x0bprior_asset\x18\x05 \x01(\x0b\x32\x1c.google.cloud.asset.v1.Asset\"o\n\x0fPriorAssetState\x12!\n\x1dPRIOR_ASSET_STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07PRESENT\x10\x01\x12\x0b\n\x07INVALID\x10\x02\x12\x12\n\x0e\x44OES_NOT_EXIST\x10\x03\x12\x0b\n\x07\x44\x45LETED\x10\x04\"j\n\nTimeWindow\x12.\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xf3\x05\n\x05\x41sset\x12/\n\x0bupdate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x12\n\nasset_type\x18\x02 \x01(\t\x12\x31\n\x08resource\x18\x03 \x01(\x0b\x32\x1f.google.cloud.asset.v1.Resource\x12)\n\niam_policy\x18\x04 \x01(\x0b\x32\x15.google.iam.v1.Policy\x12\x35\n\norg_policy\x18\x06 \x03(\x0b\x32!.google.cloud.orgpolicy.v1.Policy\x12N\n\raccess_policy\x18\x07 \x01(\x0b\x32\x35.google.identity.accesscontextmanager.v1.AccessPolicyH\x00\x12L\n\x0c\x61\x63\x63\x65ss_level\x18\x08 \x01(\x0b\x32\x34.google.identity.accesscontextmanager.v1.AccessLevelH\x00\x12V\n\x11service_perimeter\x18\t \x01(\x0b\x32\x39.google.identity.accesscontextmanager.v1.ServicePerimeterH\x00\x12\x39\n\x0cos_inventory\x18\x0c \x01(\x0b\x32#.google.cloud.osconfig.v1.Inventory\x12@\n\x0erelated_assets\x18\r \x01(\x0b\x32$.google.cloud.asset.v1.RelatedAssetsB\x02\x18\x01\x12:\n\rrelated_asset\x18\x0f \x01(\x0b\x32#.google.cloud.asset.v1.RelatedAsset\x12\x11\n\tancestors\x18\n \x03(\t:\'\xea\x41$\n\x1f\x63loudasset.googleapis.com/Asset\x12\x01*B\x17\n\x15\x61\x63\x63\x65ss_context_policy\"\xb2\x01\n\x08Resource\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x1e\n\x16\x64iscovery_document_uri\x18\x02 \x01(\t\x12\x16\n\x0e\x64iscovery_name\x18\x03 \x01(\t\x12\x14\n\x0cresource_url\x18\x04 \x01(\t\x12\x0e\n\x06parent\x18\x05 \x01(\t\x12%\n\x04\x64\x61ta\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x10\n\x08location\x18\x08 \x01(\t\"\x98\x01\n\rRelatedAssets\x12N\n\x17relationship_attributes\x18\x01 \x01(\x0b\x32-.google.cloud.asset.v1.RelationshipAttributes\x12\x33\n\x06\x61ssets\x18\x02 \x03(\x0b\x32#.google.cloud.asset.v1.RelatedAsset:\x02\x18\x01\"v\n\x16RelationshipAttributes\x12\x0c\n\x04type\x18\x04 \x01(\t\x12\x1c\n\x14source_resource_type\x18\x01 \x01(\t\x12\x1c\n\x14target_resource_type\x18\x02 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x03 \x01(\t:\x02\x18\x01\"\x85\x01\n\x0cRelatedAsset\x12\x33\n\x05\x61sset\x18\x01 \x01(\tB$\xfa\x41!\n\x1f\x63loudasset.googleapis.com/Asset\x12\x12\n\nasset_type\x18\x02 \x01(\t\x12\x11\n\tancestors\x18\x03 \x03(\t\x12\x19\n\x11relationship_type\x18\x04 \x01(\t\"\
|
20
|
+
descriptor_data = "\n\"google/cloud/asset/v1/assets.proto\x12\x15google.cloud.asset.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a)google/cloud/orgpolicy/v1/orgpolicy.proto\x1a(google/cloud/osconfig/v1/inventory.proto\x1a\x1agoogle/iam/v1/policy.proto\x1a:google/identity/accesscontextmanager/v1/access_level.proto\x1a;google/identity/accesscontextmanager/v1/access_policy.proto\x1a?google/identity/accesscontextmanager/v1/service_perimeter.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x15google/rpc/code.proto\"\xf5\x02\n\rTemporalAsset\x12\x31\n\x06window\x18\x01 \x01(\x0b\x32!.google.cloud.asset.v1.TimeWindow\x12\x0f\n\x07\x64\x65leted\x18\x02 \x01(\x08\x12+\n\x05\x61sset\x18\x03 \x01(\x0b\x32\x1c.google.cloud.asset.v1.Asset\x12O\n\x11prior_asset_state\x18\x04 \x01(\x0e\x32\x34.google.cloud.asset.v1.TemporalAsset.PriorAssetState\x12\x31\n\x0bprior_asset\x18\x05 \x01(\x0b\x32\x1c.google.cloud.asset.v1.Asset\"o\n\x0fPriorAssetState\x12!\n\x1dPRIOR_ASSET_STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07PRESENT\x10\x01\x12\x0b\n\x07INVALID\x10\x02\x12\x12\n\x0e\x44OES_NOT_EXIST\x10\x03\x12\x0b\n\x07\x44\x45LETED\x10\x04\"j\n\nTimeWindow\x12.\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xf3\x05\n\x05\x41sset\x12/\n\x0bupdate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x12\n\nasset_type\x18\x02 \x01(\t\x12\x31\n\x08resource\x18\x03 \x01(\x0b\x32\x1f.google.cloud.asset.v1.Resource\x12)\n\niam_policy\x18\x04 \x01(\x0b\x32\x15.google.iam.v1.Policy\x12\x35\n\norg_policy\x18\x06 \x03(\x0b\x32!.google.cloud.orgpolicy.v1.Policy\x12N\n\raccess_policy\x18\x07 \x01(\x0b\x32\x35.google.identity.accesscontextmanager.v1.AccessPolicyH\x00\x12L\n\x0c\x61\x63\x63\x65ss_level\x18\x08 \x01(\x0b\x32\x34.google.identity.accesscontextmanager.v1.AccessLevelH\x00\x12V\n\x11service_perimeter\x18\t \x01(\x0b\x32\x39.google.identity.accesscontextmanager.v1.ServicePerimeterH\x00\x12\x39\n\x0cos_inventory\x18\x0c \x01(\x0b\x32#.google.cloud.osconfig.v1.Inventory\x12@\n\x0erelated_assets\x18\r \x01(\x0b\x32$.google.cloud.asset.v1.RelatedAssetsB\x02\x18\x01\x12:\n\rrelated_asset\x18\x0f \x01(\x0b\x32#.google.cloud.asset.v1.RelatedAsset\x12\x11\n\tancestors\x18\n \x03(\t:\'\xea\x41$\n\x1f\x63loudasset.googleapis.com/Asset\x12\x01*B\x17\n\x15\x61\x63\x63\x65ss_context_policy\"\xb2\x01\n\x08Resource\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x1e\n\x16\x64iscovery_document_uri\x18\x02 \x01(\t\x12\x16\n\x0e\x64iscovery_name\x18\x03 \x01(\t\x12\x14\n\x0cresource_url\x18\x04 \x01(\t\x12\x0e\n\x06parent\x18\x05 \x01(\t\x12%\n\x04\x64\x61ta\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x10\n\x08location\x18\x08 \x01(\t\"\x98\x01\n\rRelatedAssets\x12N\n\x17relationship_attributes\x18\x01 \x01(\x0b\x32-.google.cloud.asset.v1.RelationshipAttributes\x12\x33\n\x06\x61ssets\x18\x02 \x03(\x0b\x32#.google.cloud.asset.v1.RelatedAsset:\x02\x18\x01\"v\n\x16RelationshipAttributes\x12\x0c\n\x04type\x18\x04 \x01(\t\x12\x1c\n\x14source_resource_type\x18\x01 \x01(\t\x12\x1c\n\x14target_resource_type\x18\x02 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x03 \x01(\t:\x02\x18\x01\"\x85\x01\n\x0cRelatedAsset\x12\x33\n\x05\x61sset\x18\x01 \x01(\tB$\xfa\x41!\n\x1f\x63loudasset.googleapis.com/Asset\x12\x12\n\nasset_type\x18\x02 \x01(\t\x12\x11\n\tancestors\x18\x03 \x03(\t\x12\x19\n\x11relationship_type\x18\x04 \x01(\t\"y\n\x03Tag\x12\x14\n\x07tag_key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x16\n\ttag_value\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0ctag_value_id\x18\x04 \x01(\tH\x02\x88\x01\x01\x42\n\n\x08_tag_keyB\x0c\n\n_tag_valueB\x0f\n\r_tag_value_id\"\x7f\n\x13\x45\x66\x66\x65\x63tiveTagDetails\x12\x1e\n\x11\x61ttached_resource\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x32\n\x0e\x65\x66\x66\x65\x63tive_tags\x18\x02 \x03(\x0b\x32\x1a.google.cloud.asset.v1.TagB\x14\n\x12_attached_resource\"\xda\t\n\x14ResourceSearchResult\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x12\n\nasset_type\x18\x02 \x01(\t\x12\x0f\n\x07project\x18\x03 \x01(\t\x12\x0f\n\x07\x66olders\x18\x11 \x03(\t\x12\x14\n\x0corganization\x18\x12 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x04 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x05 \x01(\t\x12\x10\n\x08location\x18\x06 \x01(\t\x12G\n\x06labels\x18\x07 \x03(\x0b\x32\x37.google.cloud.asset.v1.ResourceSearchResult.LabelsEntry\x12\x14\n\x0cnetwork_tags\x18\x08 \x03(\t\x12\x13\n\x07kms_key\x18\n \x01(\tB\x02\x18\x01\x12\x10\n\x08kms_keys\x18\x1c \x03(\t\x12/\n\x0b\x63reate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x0c \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05state\x18\r \x01(\t\x12\x36\n\x15\x61\x64\x64itional_attributes\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12!\n\x19parent_full_resource_name\x18\x13 \x01(\t\x12\x45\n\x13versioned_resources\x18\x10 \x03(\x0b\x32(.google.cloud.asset.v1.VersionedResource\x12\x43\n\x12\x61ttached_resources\x18\x14 \x03(\x0b\x32\'.google.cloud.asset.v1.AttachedResource\x12U\n\rrelationships\x18\x15 \x03(\x0b\x32>.google.cloud.asset.v1.ResourceSearchResult.RelationshipsEntry\x12\x14\n\x08tag_keys\x18\x17 \x03(\tB\x02\x18\x01\x12\x16\n\ntag_values\x18\x19 \x03(\tB\x02\x18\x01\x12\x19\n\rtag_value_ids\x18\x1a \x03(\tB\x02\x18\x01\x12(\n\x04tags\x18\x1d \x03(\x0b\x32\x1a.google.cloud.asset.v1.Tag\x12\x42\n\x0e\x65\x66\x66\x65\x63tive_tags\x18\x1e \x03(\x0b\x32*.google.cloud.asset.v1.EffectiveTagDetails\x12\x19\n\x11parent_asset_type\x18g \x01(\t\x12]\n\x12scc_security_marks\x18 \x03(\x0b\x32\x41.google.cloud.asset.v1.ResourceSearchResult.SccSecurityMarksEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a]\n\x12RelationshipsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x36\n\x05value\x18\x02 \x01(\x0b\x32\'.google.cloud.asset.v1.RelatedResources:\x02\x38\x01\x1a\x37\n\x15SccSecurityMarksEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"O\n\x11VersionedResource\x12\x0f\n\x07version\x18\x01 \x01(\t\x12)\n\x08resource\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\"m\n\x10\x41ttachedResource\x12\x12\n\nasset_type\x18\x01 \x01(\t\x12\x45\n\x13versioned_resources\x18\x03 \x03(\x0b\x32(.google.cloud.asset.v1.VersionedResource\"U\n\x10RelatedResources\x12\x41\n\x11related_resources\x18\x01 \x03(\x0b\x32&.google.cloud.asset.v1.RelatedResource\"A\n\x0fRelatedResource\x12\x12\n\nasset_type\x18\x01 \x01(\t\x12\x1a\n\x12\x66ull_resource_name\x18\x02 \x01(\t\"\x8f\x04\n\x15IamPolicySearchResult\x12\x10\n\x08resource\x18\x01 \x01(\t\x12\x12\n\nasset_type\x18\x05 \x01(\t\x12\x0f\n\x07project\x18\x02 \x01(\t\x12\x0f\n\x07\x66olders\x18\x06 \x03(\t\x12\x14\n\x0corganization\x18\x07 \x01(\t\x12%\n\x06policy\x18\x03 \x01(\x0b\x32\x15.google.iam.v1.Policy\x12M\n\x0b\x65xplanation\x18\x04 \x01(\x0b\x32\x38.google.cloud.asset.v1.IamPolicySearchResult.Explanation\x1a\xa1\x02\n\x0b\x45xplanation\x12m\n\x13matched_permissions\x18\x01 \x03(\x0b\x32P.google.cloud.asset.v1.IamPolicySearchResult.Explanation.MatchedPermissionsEntry\x1a\"\n\x0bPermissions\x12\x13\n\x0bpermissions\x18\x01 \x03(\t\x1a\x7f\n\x17MatchedPermissionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12S\n\x05value\x18\x02 \x01(\x0b\x32\x44.google.cloud.asset.v1.IamPolicySearchResult.Explanation.Permissions:\x02\x38\x01\"G\n\x16IamPolicyAnalysisState\x12\x1e\n\x04\x63ode\x18\x01 \x01(\x0e\x32\x10.google.rpc.Code\x12\r\n\x05\x63\x61use\x18\x02 \x01(\t\"\xc6\x01\n\x13\x43onditionEvaluation\x12T\n\x10\x65valuation_value\x18\x01 \x01(\x0e\x32:.google.cloud.asset.v1.ConditionEvaluation.EvaluationValue\"Y\n\x0f\x45valuationValue\x12 \n\x1c\x45VALUATION_VALUE_UNSPECIFIED\x10\x00\x12\x08\n\x04TRUE\x10\x01\x12\t\n\x05\x46\x41LSE\x10\x02\x12\x0f\n\x0b\x43ONDITIONAL\x10\x03\"\xab\t\n\x17IamPolicyAnalysisResult\x12#\n\x1b\x61ttached_resource_full_name\x18\x01 \x01(\t\x12+\n\x0biam_binding\x18\x02 \x01(\x0b\x32\x16.google.iam.v1.Binding\x12^\n\x14\x61\x63\x63\x65ss_control_lists\x18\x03 \x03(\x0b\x32@.google.cloud.asset.v1.IamPolicyAnalysisResult.AccessControlList\x12R\n\ridentity_list\x18\x04 \x01(\x0b\x32;.google.cloud.asset.v1.IamPolicyAnalysisResult.IdentityList\x12\x16\n\x0e\x66ully_explored\x18\x05 \x01(\x08\x1am\n\x08Resource\x12\x1a\n\x12\x66ull_resource_name\x18\x01 \x01(\t\x12\x45\n\x0e\x61nalysis_state\x18\x02 \x01(\x0b\x32-.google.cloud.asset.v1.IamPolicyAnalysisState\x1a\x85\x01\n\x06\x41\x63\x63\x65ss\x12\x0e\n\x04role\x18\x01 \x01(\tH\x00\x12\x14\n\npermission\x18\x02 \x01(\tH\x00\x12\x45\n\x0e\x61nalysis_state\x18\x03 \x01(\x0b\x32-.google.cloud.asset.v1.IamPolicyAnalysisStateB\x0e\n\x0coneof_access\x1a_\n\x08Identity\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x45\n\x0e\x61nalysis_state\x18\x02 \x01(\x0b\x32-.google.cloud.asset.v1.IamPolicyAnalysisState\x1a\x30\n\x04\x45\x64ge\x12\x13\n\x0bsource_node\x18\x01 \x01(\t\x12\x13\n\x0btarget_node\x18\x02 \x01(\t\x1a\xbf\x02\n\x11\x41\x63\x63\x65ssControlList\x12J\n\tresources\x18\x01 \x03(\x0b\x32\x37.google.cloud.asset.v1.IamPolicyAnalysisResult.Resource\x12G\n\x08\x61\x63\x63\x65sses\x18\x02 \x03(\x0b\x32\x35.google.cloud.asset.v1.IamPolicyAnalysisResult.Access\x12K\n\x0eresource_edges\x18\x03 \x03(\x0b\x32\x33.google.cloud.asset.v1.IamPolicyAnalysisResult.Edge\x12H\n\x14\x63ondition_evaluation\x18\x04 \x01(\x0b\x32*.google.cloud.asset.v1.ConditionEvaluation\x1a\xa5\x01\n\x0cIdentityList\x12K\n\nidentities\x18\x01 \x03(\x0b\x32\x37.google.cloud.asset.v1.IamPolicyAnalysisResult.Identity\x12H\n\x0bgroup_edges\x18\x02 \x03(\x0b\x32\x33.google.cloud.asset.v1.IamPolicyAnalysisResult.EdgeB\x8d\x01\n\x19\x63om.google.cloud.asset.v1B\nAssetProtoP\x01Z/cloud.google.com/go/asset/apiv1/assetpb;assetpb\xf8\x01\x01\xaa\x02\x15Google.Cloud.Asset.V1\xca\x02\x15Google\\Cloud\\Asset\\V1b\x06proto3"
|
21
21
|
|
22
22
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
23
23
|
|
@@ -63,6 +63,8 @@ module Google
|
|
63
63
|
RelatedAssets = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.asset.v1.RelatedAssets").msgclass
|
64
64
|
RelationshipAttributes = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.asset.v1.RelationshipAttributes").msgclass
|
65
65
|
RelatedAsset = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.asset.v1.RelatedAsset").msgclass
|
66
|
+
Tag = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.asset.v1.Tag").msgclass
|
67
|
+
EffectiveTagDetails = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.asset.v1.EffectiveTagDetails").msgclass
|
66
68
|
ResourceSearchResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.asset.v1.ResourceSearchResult").msgclass
|
67
69
|
VersionedResource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.asset.v1.VersionedResource").msgclass
|
68
70
|
AttachedResource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.asset.v1.AttachedResource").msgclass
|
@@ -304,6 +304,19 @@ module Google
|
|
304
304
|
# seconds: 360 # 6 minutes
|
305
305
|
# total_poll_timeout:
|
306
306
|
# seconds: 54000 # 90 minutes
|
307
|
+
# @!attribute [rw] auto_populated_fields
|
308
|
+
# @return [::Array<::String>]
|
309
|
+
# List of top-level fields of the request message, that should be
|
310
|
+
# automatically populated by the client libraries based on their
|
311
|
+
# (google.api.field_info).format. Currently supported format: UUID4.
|
312
|
+
#
|
313
|
+
# Example of a YAML configuration:
|
314
|
+
#
|
315
|
+
# publishing:
|
316
|
+
# method_settings:
|
317
|
+
# - selector: google.example.v1.ExampleService.CreateExample
|
318
|
+
# auto_populated_fields:
|
319
|
+
# - request_id
|
307
320
|
class MethodSettings
|
308
321
|
include ::Google::Protobuf::MessageExts
|
309
322
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -66,6 +66,20 @@ module Google
|
|
66
66
|
# a non-empty value will be returned. The user will not be aware of what
|
67
67
|
# non-empty value to expect.
|
68
68
|
NON_EMPTY_DEFAULT = 7
|
69
|
+
|
70
|
+
# Denotes that the field in a resource (a message annotated with
|
71
|
+
# google.api.resource) is used in the resource name to uniquely identify the
|
72
|
+
# resource. For AIP-compliant APIs, this should only be applied to the
|
73
|
+
# `name` field on the resource.
|
74
|
+
#
|
75
|
+
# This behavior should not be applied to references to other resources within
|
76
|
+
# the message.
|
77
|
+
#
|
78
|
+
# The identifier field of resources often have different field behavior
|
79
|
+
# depending on the request it is embedded in (e.g. for Create methods name
|
80
|
+
# is optional and unused, while for Update methods it is required). Instead
|
81
|
+
# of method-specific annotations, only `IDENTIFIER` is required.
|
82
|
+
IDENTIFIER = 8
|
69
83
|
end
|
70
84
|
end
|
71
85
|
end
|
@@ -635,49 +635,73 @@ module Google
|
|
635
635
|
# Examples:
|
636
636
|
#
|
637
637
|
# * `name:Important` to find Google Cloud resources whose name contains
|
638
|
-
#
|
638
|
+
# `Important` as a word.
|
639
639
|
# * `name=Important` to find the Google Cloud resource whose name is exactly
|
640
|
-
#
|
640
|
+
# `Important`.
|
641
641
|
# * `displayName:Impor*` to find Google Cloud resources whose display name
|
642
|
-
# contains
|
642
|
+
# contains `Impor` as a prefix of any word in the field.
|
643
643
|
# * `location:us-west*` to find Google Cloud resources whose location
|
644
|
-
# contains both
|
645
|
-
# * `labels:prod` to find Google Cloud resources whose labels contain
|
644
|
+
# contains both `us` and `west` as prefixes.
|
645
|
+
# * `labels:prod` to find Google Cloud resources whose labels contain `prod`
|
646
646
|
# as a key or value.
|
647
|
-
# * `labels.env:prod` to find Google Cloud resources that have a label
|
648
|
-
# and its value is
|
649
|
-
# * `labels.env:*` to find Google Cloud resources that have a label
|
647
|
+
# * `labels.env:prod` to find Google Cloud resources that have a label `env`
|
648
|
+
# and its value is `prod`.
|
649
|
+
# * `labels.env:*` to find Google Cloud resources that have a label `env`.
|
650
|
+
# * `tagKeys:env` to find Google Cloud resources that have directly
|
651
|
+
# attached tags where the
|
652
|
+
# [`TagKey`](https://cloud.google.com/resource-manager/reference/rest/v3/tagKeys#resource:-tagkey)
|
653
|
+
# .`namespacedName` contains `env`.
|
654
|
+
# * `tagValues:prod*` to find Google Cloud resources that have directly
|
655
|
+
# attached tags where the
|
656
|
+
# [`TagValue`](https://cloud.google.com/resource-manager/reference/rest/v3/tagValues#resource:-tagvalue)
|
657
|
+
# .`namespacedName` contains a word prefixed by `prod`.
|
658
|
+
# * `tagValueIds=tagValues/123` to find Google Cloud resources that have
|
659
|
+
# directly attached tags where the
|
660
|
+
# [`TagValue`](https://cloud.google.com/resource-manager/reference/rest/v3/tagValues#resource:-tagvalue)
|
661
|
+
# .`name` is exactly `tagValues/123`.
|
662
|
+
# * `effectiveTagKeys:env` to find Google Cloud resources that have
|
663
|
+
# directly attached or inherited tags where the
|
664
|
+
# [`TagKey`](https://cloud.google.com/resource-manager/reference/rest/v3/tagKeys#resource:-tagkey)
|
665
|
+
# .`namespacedName` contains `env`.
|
666
|
+
# * `effectiveTagValues:prod*` to find Google Cloud resources that have
|
667
|
+
# directly attached or inherited tags where the
|
668
|
+
# [`TagValue`](https://cloud.google.com/resource-manager/reference/rest/v3/tagValues#resource:-tagvalue)
|
669
|
+
# .`namespacedName` contains a word prefixed by `prod`.
|
670
|
+
# * `effectiveTagValueIds=tagValues/123` to find Google Cloud resources that
|
671
|
+
# have directly attached or inherited tags where the
|
672
|
+
# [`TagValue`](https://cloud.google.com/resource-manager/reference/rest/v3/tagValues#resource:-tagvalue)
|
673
|
+
# .`name` is exactly `tagValues/123`.
|
650
674
|
# * `kmsKey:key` to find Google Cloud resources encrypted with a
|
651
|
-
# customer-managed encryption key whose name contains
|
675
|
+
# customer-managed encryption key whose name contains `key` as a word. This
|
652
676
|
# field is deprecated. Please use the `kmsKeys` field to retrieve Cloud KMS
|
653
677
|
# key information.
|
654
678
|
# * `kmsKeys:key` to find Google Cloud resources encrypted with
|
655
|
-
# customer-managed encryption keys whose name contains the word
|
679
|
+
# customer-managed encryption keys whose name contains the word `key`.
|
656
680
|
# * `relationships:instance-group-1` to find Google Cloud resources that have
|
657
|
-
# relationships with
|
681
|
+
# relationships with `instance-group-1` in the related resource name.
|
658
682
|
# * `relationships:INSTANCE_TO_INSTANCEGROUP` to find Compute Engine
|
659
|
-
# instances that have relationships of type
|
683
|
+
# instances that have relationships of type `INSTANCE_TO_INSTANCEGROUP`.
|
660
684
|
# * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
|
661
|
-
# Compute Engine instances that have relationships with
|
685
|
+
# Compute Engine instances that have relationships with `instance-group-1`
|
662
686
|
# in the Compute Engine instance group resource name, for relationship type
|
663
|
-
#
|
687
|
+
# `INSTANCE_TO_INSTANCEGROUP`.
|
664
688
|
# * `state:ACTIVE` to find Google Cloud resources whose state contains
|
665
|
-
#
|
689
|
+
# `ACTIVE` as a word.
|
666
690
|
# * `NOT state:ACTIVE` to find Google Cloud resources whose state doesn't
|
667
|
-
# contain
|
691
|
+
# contain `ACTIVE` as a word.
|
668
692
|
# * `createTime<1609459200` to find Google Cloud resources that were created
|
669
|
-
# before
|
670
|
-
#
|
693
|
+
# before `2021-01-01 00:00:00 UTC`. `1609459200` is the epoch timestamp of
|
694
|
+
# `2021-01-01 00:00:00 UTC` in seconds.
|
671
695
|
# * `updateTime>1609459200` to find Google Cloud resources that were updated
|
672
|
-
# after
|
673
|
-
#
|
674
|
-
# * `Important` to find Google Cloud resources that contain
|
696
|
+
# after `2021-01-01 00:00:00 UTC`. `1609459200` is the epoch timestamp of
|
697
|
+
# `2021-01-01 00:00:00 UTC` in seconds.
|
698
|
+
# * `Important` to find Google Cloud resources that contain `Important` as a
|
675
699
|
# word in any of the searchable fields.
|
676
|
-
# * `Impor*` to find Google Cloud resources that contain
|
700
|
+
# * `Impor*` to find Google Cloud resources that contain `Impor` as a prefix
|
677
701
|
# of any word in any of the searchable fields.
|
678
702
|
# * `Important location:(us-west1 OR global)` to find Google Cloud
|
679
|
-
# resources that contain
|
680
|
-
# fields and are also located in the
|
703
|
+
# resources that contain `Important` as a word in any of the searchable
|
704
|
+
# fields and are also located in the `us-west1` region or the `global`
|
681
705
|
# location.
|
682
706
|
# @!attribute [rw] asset_types
|
683
707
|
# @return [::Array<::String>]
|
@@ -698,10 +722,10 @@ module Google
|
|
698
722
|
# @!attribute [rw] page_size
|
699
723
|
# @return [::Integer]
|
700
724
|
# Optional. The page size for search result pagination. Page size is capped
|
701
|
-
# at 500 even if a larger value is given. If set to zero
|
702
|
-
# appropriate default. Returned results may be fewer than
|
703
|
-
# this happens, there could be more results as long as
|
704
|
-
# returned.
|
725
|
+
# at 500 even if a larger value is given. If set to zero or a negative value,
|
726
|
+
# server will pick an appropriate default. Returned results may be fewer than
|
727
|
+
# requested. When this happens, there could be more results as long as
|
728
|
+
# `next_page_token` is returned.
|
705
729
|
# @!attribute [rw] page_token
|
706
730
|
# @return [::String]
|
707
731
|
# Optional. If present, then retrieve the next batch of results from the
|
@@ -714,7 +738,7 @@ module Google
|
|
714
738
|
# the results. The default order is ascending. Add " DESC" after the field
|
715
739
|
# name to indicate descending order. Redundant space characters are ignored.
|
716
740
|
# Example: "location DESC, name".
|
717
|
-
# Only
|
741
|
+
# Only the following fields in the response are sortable:
|
718
742
|
#
|
719
743
|
# * name
|
720
744
|
# * assetType
|
@@ -727,44 +751,38 @@ module Google
|
|
727
751
|
# * state
|
728
752
|
# * parentFullResourceName
|
729
753
|
# * parentAssetType
|
730
|
-
#
|
731
|
-
# All the other fields such as repeated fields (e.g., `networkTags`,
|
732
|
-
# `kmsKeys`), map fields (e.g., `labels`) and struct fields (e.g.,
|
733
|
-
# `additionalAttributes`) are not supported.
|
734
754
|
# @!attribute [rw] read_mask
|
735
755
|
# @return [::Google::Protobuf::FieldMask]
|
736
|
-
# Optional. A comma-separated list of fields
|
737
|
-
#
|
738
|
-
#
|
739
|
-
#
|
740
|
-
#
|
741
|
-
#
|
742
|
-
#
|
743
|
-
#
|
744
|
-
# *
|
745
|
-
# *
|
746
|
-
# *
|
747
|
-
# *
|
748
|
-
# *
|
749
|
-
# *
|
750
|
-
# *
|
751
|
-
# *
|
752
|
-
# *
|
753
|
-
# *
|
754
|
-
# *
|
755
|
-
# *
|
756
|
-
#
|
757
|
-
# *
|
758
|
-
#
|
759
|
-
#
|
760
|
-
#
|
761
|
-
#
|
762
|
-
#
|
763
|
-
#
|
764
|
-
#
|
765
|
-
#
|
766
|
-
# If only '*' is specified, all fields including versionedResources will be
|
767
|
-
# returned.
|
756
|
+
# Optional. A comma-separated list of fields that you want returned in the
|
757
|
+
# results. The following fields are returned by default if not specified:
|
758
|
+
#
|
759
|
+
# * `name`
|
760
|
+
# * `assetType`
|
761
|
+
# * `project`
|
762
|
+
# * `folders`
|
763
|
+
# * `organization`
|
764
|
+
# * `displayName`
|
765
|
+
# * `description`
|
766
|
+
# * `location`
|
767
|
+
# * `labels`
|
768
|
+
# * `tags`
|
769
|
+
# * `effectiveTags`
|
770
|
+
# * `networkTags`
|
771
|
+
# * `kmsKeys`
|
772
|
+
# * `createTime`
|
773
|
+
# * `updateTime`
|
774
|
+
# * `state`
|
775
|
+
# * `additionalAttributes`
|
776
|
+
# * `parentFullResourceName`
|
777
|
+
# * `parentAssetType`
|
778
|
+
#
|
779
|
+
# Some fields of large size, such as `versionedResources`,
|
780
|
+
# `attachedResources`, `effectiveTags` etc., are not returned by default, but
|
781
|
+
# you can specify them in the `read_mask` parameter if you want to include
|
782
|
+
# them. If `"*"` is specified, all [available
|
783
|
+
# fields](https://cloud.google.com/asset-inventory/docs/reference/rest/v1/TopLevel/searchAllResources#resourcesearchresult)
|
784
|
+
# are returned.
|
785
|
+
# Examples: `"name,location"`, `"name,versionedResources"`, `"*"`.
|
768
786
|
# Any invalid field path will trigger INVALID_ARGUMENT error.
|
769
787
|
class SearchAllResourcesRequest
|
770
788
|
include ::Google::Protobuf::MessageExts
|
@@ -848,10 +866,10 @@ module Google
|
|
848
866
|
# @!attribute [rw] page_size
|
849
867
|
# @return [::Integer]
|
850
868
|
# Optional. The page size for search result pagination. Page size is capped
|
851
|
-
# at 500 even if a larger value is given. If set to zero
|
852
|
-
# appropriate default. Returned results may be fewer than
|
853
|
-
# this happens, there could be more results as long as
|
854
|
-
# returned.
|
869
|
+
# at 500 even if a larger value is given. If set to zero or a negative value,
|
870
|
+
# server will pick an appropriate default. Returned results may be fewer than
|
871
|
+
# requested. When this happens, there could be more results as long as
|
872
|
+
# `next_page_token` is returned.
|
855
873
|
# @!attribute [rw] page_token
|
856
874
|
# @return [::String]
|
857
875
|
# Optional. If present, retrieve the next batch of results from the preceding
|
@@ -1638,8 +1656,8 @@ module Google
|
|
1638
1656
|
# Only assets belonging to the `parent` will be returned.
|
1639
1657
|
# @!attribute [rw] statement
|
1640
1658
|
# @return [::String]
|
1641
|
-
# Optional. A SQL statement that's compatible with [BigQuery
|
1642
|
-
# SQL](
|
1659
|
+
# Optional. A SQL statement that's compatible with [BigQuery
|
1660
|
+
# SQL](https://cloud.google.com/bigquery/docs/introduction-sql).
|
1643
1661
|
# @!attribute [rw] job_reference
|
1644
1662
|
# @return [::String]
|
1645
1663
|
# Optional. Reference to the query job, which is from the
|
@@ -1929,7 +1947,10 @@ module Google
|
|
1929
1947
|
include ::Google::Protobuf::MessageExts
|
1930
1948
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1931
1949
|
|
1932
|
-
#
|
1950
|
+
# This rule message is a customized version of the one defined in the
|
1951
|
+
# Organization Policy system. In addition to the fields defined in the
|
1952
|
+
# original organization policy, it contains additional field(s) under
|
1953
|
+
# specific circumstances to support analysis results.
|
1933
1954
|
# @!attribute [rw] values
|
1934
1955
|
# @return [::Google::Cloud::Asset::V1::AnalyzerOrgPolicy::Rule::StringValues]
|
1935
1956
|
# List of values to be used for this PolicyRule. This field can be set
|
@@ -2378,7 +2399,7 @@ module Google
|
|
2378
2399
|
# {::Google::Cloud::Asset::V1::AnalyzeOrgPolicyGovernedAssetsRequest#constraint AnalyzeOrgPolicyGovernedAssetsRequest.constraint}.
|
2379
2400
|
# @!attribute [rw] attached_resource
|
2380
2401
|
# @return [::String]
|
2381
|
-
# The full resource name of the resource
|
2402
|
+
# The full resource name of the resource on which this IAM policy is set.
|
2382
2403
|
# Example:
|
2383
2404
|
# `//compute.googleapis.com/projects/my_project_123/zones/zone1/instances/instance1`.
|
2384
2405
|
# See [Cloud Asset Inventory Resource Name
|