google-cloud-asset-v1 0.20.0 → 0.20.1

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: 6481b62f72f84cb8d1d8f93fc298424b7a4af09a65a0aed41bcd2f7dfba2d39d
4
- data.tar.gz: 1b3328c180d3039cbc141865b7f06613053b809eddd9c790801cdbe0e65ea984
3
+ metadata.gz: c06b554d19850b8923937a7b76e2713fd41c855d0c7e85737930564c668b5784
4
+ data.tar.gz: 87deccb72bb8eeeabc00feb919f455a27a171af2e31e745fa997ecb201b81222
5
5
  SHA512:
6
- metadata.gz: b15fc63cf8fd5db5ed02943a7c6a8d5a8a4805d1ecc5035dab5dae3bb0628f05eb9770659dfa7137e04749e0e2e0cc58b4683c2e2c058b098089f150863e731a
7
- data.tar.gz: bb9732d0d7c2eb7b3529e22f8c1d30095d816e38927f270ef4546238365fc8170cebc09279df8f1b431495b7d868a8aa3e670df66bfcd60fe40086c5e31a5447
6
+ metadata.gz: 35e758724c4667474c013a2484300d790ee0b15ca24577781f7c0d126bb63d0eaa818d5fae2b0d64ca70c3fa47ad54e754ed22cd8d2efccef402ec61aa4a144b
7
+ data.tar.gz: 6047743a05bca031e51615548b83e9416a96b86a397515c60f3d81cb5bb307ccefb9899db2ac1f8857719b9b46d631277d402e418ec3564fdb0e4f47ed851e90
@@ -112,6 +112,11 @@ module Google
112
112
 
113
113
  default_config.rpcs.analyze_iam_policy_longrunning.timeout = 60.0
114
114
 
115
+ default_config.rpcs.batch_get_effective_iam_policies.timeout = 300.0
116
+ default_config.rpcs.batch_get_effective_iam_policies.retry_policy = {
117
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
118
+ }
119
+
115
120
  default_config
116
121
  end
117
122
  yield @configure if block_given?
@@ -1145,6 +1150,14 @@ module Google
1145
1150
  # * `labels.env:*` to find Cloud resources that have a label "env".
1146
1151
  # * `kmsKey:key` to find Cloud resources encrypted with a customer-managed
1147
1152
  # encryption key whose name contains the word "key".
1153
+ # * `relationships:instance-group-1` to find Cloud resources that have
1154
+ # relationships with "instance-group-1" in the related resource name.
1155
+ # * `relationships:INSTANCE_TO_INSTANCEGROUP` to find compute instances that
1156
+ # have relationships of type "INSTANCE_TO_INSTANCEGROUP".
1157
+ # * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
1158
+ # compute instances that have relationships with "instance-group-1" in the
1159
+ # compute instance group resource name, for relationship type
1160
+ # "INSTANCE_TO_INSTANCEGROUP".
1148
1161
  # * `state:ACTIVE` to find Cloud resources whose state contains "ACTIVE" as a
1149
1162
  # word.
1150
1163
  # * `NOT state:ACTIVE` to find Cloud resources whose state doesn't contain
@@ -1358,8 +1371,8 @@ module Google
1358
1371
  # compared against each Cloud IAM policy binding, including its principals,
1359
1372
  # roles, and Cloud IAM conditions. The returned Cloud IAM policies will only
1360
1373
  # contain the bindings that match your query. To learn more about the IAM
1361
- # policy structure, see [IAM policy
1362
- # doc](https://cloud.google.com/iam/docs/policies#structure).
1374
+ # policy structure, see the [IAM policy
1375
+ # documentation](https://cloud.google.com/iam/help/allow-policies/structure).
1363
1376
  #
1364
1377
  # Examples:
1365
1378
  #
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Asset
23
23
  module V1
24
- VERSION = "0.20.0"
24
+ VERSION = "0.20.1"
25
25
  end
26
26
  end
27
27
  end
@@ -649,6 +649,14 @@ module Google
649
649
  # * `labels.env:*` to find Cloud resources that have a label "env".
650
650
  # * `kmsKey:key` to find Cloud resources encrypted with a customer-managed
651
651
  # encryption key whose name contains the word "key".
652
+ # * `relationships:instance-group-1` to find Cloud resources that have
653
+ # relationships with "instance-group-1" in the related resource name.
654
+ # * `relationships:INSTANCE_TO_INSTANCEGROUP` to find compute instances that
655
+ # have relationships of type "INSTANCE_TO_INSTANCEGROUP".
656
+ # * `relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1` to find
657
+ # compute instances that have relationships with "instance-group-1" in the
658
+ # compute instance group resource name, for relationship type
659
+ # "INSTANCE_TO_INSTANCEGROUP".
652
660
  # * `state:ACTIVE` to find Cloud resources whose state contains "ACTIVE" as a
653
661
  # word.
654
662
  # * `NOT state:ACTIVE` to find Cloud resources whose state doesn't contain
@@ -797,8 +805,8 @@ module Google
797
805
  # compared against each Cloud IAM policy binding, including its principals,
798
806
  # roles, and Cloud IAM conditions. The returned Cloud IAM policies will only
799
807
  # contain the bindings that match your query. To learn more about the IAM
800
- # policy structure, see [IAM policy
801
- # doc](https://cloud.google.com/iam/docs/policies#structure).
808
+ # policy structure, see the [IAM policy
809
+ # documentation](https://cloud.google.com/iam/help/allow-policies/structure).
802
810
  #
803
811
  # Examples:
804
812
  #
@@ -115,8 +115,8 @@ module Google
115
115
  # effectively policy is the union of both the policy set on this resource
116
116
  # and each policy set on all of the resource's ancestry resource levels in
117
117
  # the hierarchy. See
118
- # [this topic](https://cloud.google.com/iam/docs/policies#inheritance) for
119
- # more information.
118
+ # [this topic](https://cloud.google.com/iam/help/allow-policies/inheritance)
119
+ # for more information.
120
120
  # @!attribute [rw] org_policy
121
121
  # @return [::Array<::Google::Cloud::OrgPolicy::V1::Policy>]
122
122
  # A representation of an [organization
@@ -297,6 +297,7 @@ module Google
297
297
  end
298
298
 
299
299
  # A result of Resource Search, containing information of a cloud resource.
300
+ # Next ID: 29
300
301
  # @!attribute [rw] name
301
302
  # @return [::String]
302
303
  # The full resource name of this resource. Example:
@@ -26,8 +26,6 @@ module Google
26
26
  # service Foo {
27
27
  # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
28
28
  # }
29
- #
30
- # The JSON representation for `Empty` is empty JSON object `{}`.
31
29
  class Empty
32
30
  include ::Google::Protobuf::MessageExts
33
31
  extend ::Google::Protobuf::MessageExts::ClassMethods
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.20.0
4
+ version: 0.20.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-01 00:00:00.000000000 Z
11
+ date: 2022-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common