google-cloud-asset-v1 0.5.1 → 0.5.2

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: 67cfb35e60a8119229a525ad1bd3df06a9a3c44a3b399b2e35523bed5b123a12
4
- data.tar.gz: 869d83401de7e480dd7a9b4ae588d824bd1bdf436195e00a8e6b71c9abec8467
3
+ metadata.gz: 9dbd360a64ed48dfbf749f266ab5c5338e8ded9409c34d28a7688f58c2c952e6
4
+ data.tar.gz: 9515e97298798479197877d170ec3b496ac28f214e72b5c283fcda41315d2323
5
5
  SHA512:
6
- metadata.gz: 873ab8dd414a97b7ffc92317e5e1d42595e6c16f9153ca335b9569bd2562842ad03fcd66159c28c80322f3d1a71980619bc85099937f18f53da46f498f4e19b2
7
- data.tar.gz: 4026e6b8a8da767c08bbbe6aa6c10a4d11cbda957a1b77aac5dfe201caaea9a7b987425046d6047907e46a8df46f0b5078c91b78c0aca33faaa4563fccaf2ffa
6
+ metadata.gz: 2e50236aa6ef4801b77150d09b9c3bfc75fde0022e54b00d7310670255f7306c8ed54e3de05ecdaf408c6b5819b3773b7981e0c265656cc95be0209ed44ebcf1
7
+ data.tar.gz: 252d7eb1beeb6fb3f265403318ae903d6da4a0785fb2b3ae049fe31bc173c309ae71f746139cd80b69511b9e97594730068148bef038a8ec46fcc08090502b7b
@@ -72,7 +72,7 @@ module Google
72
72
  initial_delay: 0.1,
73
73
  max_delay: 60.0,
74
74
  multiplier: 1.3,
75
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
75
+ retry_codes: [4, 14]
76
76
  }
77
77
 
78
78
  default_config.rpcs.create_feed.timeout = 60.0
@@ -82,7 +82,7 @@ module Google
82
82
  initial_delay: 0.1,
83
83
  max_delay: 60.0,
84
84
  multiplier: 1.3,
85
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
85
+ retry_codes: [4, 14]
86
86
  }
87
87
 
88
88
  default_config.rpcs.list_feeds.timeout = 60.0
@@ -90,7 +90,7 @@ module Google
90
90
  initial_delay: 0.1,
91
91
  max_delay: 60.0,
92
92
  multiplier: 1.3,
93
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
93
+ retry_codes: [4, 14]
94
94
  }
95
95
 
96
96
  default_config.rpcs.update_feed.timeout = 60.0
@@ -100,7 +100,7 @@ module Google
100
100
  initial_delay: 0.1,
101
101
  max_delay: 60.0,
102
102
  multiplier: 1.3,
103
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
103
+ retry_codes: [4, 14]
104
104
  }
105
105
 
106
106
  default_config.rpcs.search_all_resources.timeout = 15.0
@@ -108,7 +108,7 @@ module Google
108
108
  initial_delay: 0.1,
109
109
  max_delay: 60.0,
110
110
  multiplier: 1.3,
111
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
111
+ retry_codes: [4, 14]
112
112
  }
113
113
 
114
114
  default_config.rpcs.search_all_iam_policies.timeout = 15.0
@@ -116,7 +116,7 @@ module Google
116
116
  initial_delay: 0.1,
117
117
  max_delay: 60.0,
118
118
  multiplier: 1.3,
119
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
119
+ retry_codes: [4, 14]
120
120
  }
121
121
 
122
122
  default_config
@@ -44,7 +44,7 @@ module Google
44
44
  # 2 seconds with exponential retry to poll the export operation result. For
45
45
  # regular-size resource parent, the export operation usually finishes within
46
46
  # 5 minutes.
47
- rpc :ExportAssets, ExportAssetsRequest, Google::Longrunning::Operation
47
+ rpc :ExportAssets, Google::Cloud::Asset::V1::ExportAssetsRequest, Google::Longrunning::Operation
48
48
  # Batch gets the update history of assets that overlap a time window.
49
49
  # For IAM_POLICY content, this API outputs history when the asset and its
50
50
  # attached IAM POLICY both exist. This can create gaps in the output history.
@@ -52,28 +52,28 @@ module Google
52
52
  # deleted status.
53
53
  # If a specified asset does not exist, this API returns an INVALID_ARGUMENT
54
54
  # error.
55
- rpc :BatchGetAssetsHistory, BatchGetAssetsHistoryRequest, BatchGetAssetsHistoryResponse
55
+ rpc :BatchGetAssetsHistory, Google::Cloud::Asset::V1::BatchGetAssetsHistoryRequest, Google::Cloud::Asset::V1::BatchGetAssetsHistoryResponse
56
56
  # Creates a feed in a parent project/folder/organization to listen to its
57
57
  # asset updates.
58
- rpc :CreateFeed, CreateFeedRequest, Feed
58
+ rpc :CreateFeed, Google::Cloud::Asset::V1::CreateFeedRequest, Google::Cloud::Asset::V1::Feed
59
59
  # Gets details about an asset feed.
60
- rpc :GetFeed, GetFeedRequest, Feed
60
+ rpc :GetFeed, Google::Cloud::Asset::V1::GetFeedRequest, Google::Cloud::Asset::V1::Feed
61
61
  # Lists all asset feeds in a parent project/folder/organization.
62
- rpc :ListFeeds, ListFeedsRequest, ListFeedsResponse
62
+ rpc :ListFeeds, Google::Cloud::Asset::V1::ListFeedsRequest, Google::Cloud::Asset::V1::ListFeedsResponse
63
63
  # Updates an asset feed configuration.
64
- rpc :UpdateFeed, UpdateFeedRequest, Feed
64
+ rpc :UpdateFeed, Google::Cloud::Asset::V1::UpdateFeedRequest, Google::Cloud::Asset::V1::Feed
65
65
  # Deletes an asset feed.
66
- rpc :DeleteFeed, DeleteFeedRequest, Google::Protobuf::Empty
66
+ rpc :DeleteFeed, Google::Cloud::Asset::V1::DeleteFeedRequest, Google::Protobuf::Empty
67
67
  # Searches all the resources within the given accessible scope (e.g., a
68
68
  # project, a folder or an organization). Callers should have
69
69
  # cloud.assets.SearchAllResources permission upon the requested scope,
70
70
  # otherwise the request will be rejected.
71
- rpc :SearchAllResources, SearchAllResourcesRequest, SearchAllResourcesResponse
71
+ rpc :SearchAllResources, Google::Cloud::Asset::V1::SearchAllResourcesRequest, Google::Cloud::Asset::V1::SearchAllResourcesResponse
72
72
  # Searches all the IAM policies within the given accessible scope (e.g., a
73
73
  # project, a folder or an organization). Callers should have
74
74
  # cloud.assets.SearchAllIamPolicies permission upon the requested scope,
75
75
  # otherwise the request will be rejected.
76
- rpc :SearchAllIamPolicies, SearchAllIamPoliciesRequest, SearchAllIamPoliciesResponse
76
+ rpc :SearchAllIamPolicies, Google::Cloud::Asset::V1::SearchAllIamPoliciesRequest, Google::Cloud::Asset::V1::SearchAllIamPoliciesResponse
77
77
  end
78
78
 
79
79
  Stub = Service.rpc_stub_class
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Asset
23
23
  module V1
24
- VERSION = "0.5.1"
24
+ VERSION = "0.5.2"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-asset-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-25 00:00:00.000000000 Z
11
+ date: 2020-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common