google-apis-cloudasset_v1 0.36.0 → 0.39.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22b67eca1c60df3b1f6d126cf827f45f86248207a2579ca761742beb8c95a22e
4
- data.tar.gz: a9368607fddb0a10dda9a45e119c11c33c77744f594987dffb8fc4c3de1ec7ff
3
+ metadata.gz: 87408f3f79a09a68bf50c850fa04cfca78b4fbeef5c4efc8f56a694b7edd7fe7
4
+ data.tar.gz: fdbf96a687fc3b284e13a31f25865c38ee21124d9d386c71e15e46f7ee373c82
5
5
  SHA512:
6
- metadata.gz: 78d7eca709fb6a7e55df9748c0abff0fcb529e5be68c55ab03946787dd2883be9d1c1ca30b2a7d45d7c1be96972341e3f60c79ce9862e73f5e063bf7435e15a1
7
- data.tar.gz: bf54ffcc14bc97c24cc2fe4187efc1d4020209474cd919f2ade11686d3846797224c77b808ec33f06da0c352428f53ca7f61ec664f6a6416a4fa8d8c5cb7bb1c
6
+ metadata.gz: b6bb9d675497a16f8b41d1238abc7faa5a518640eb00d82f048c613664cf99f2db31c82c3204aa531108ebe64fa80bc678185f19fc31f27f2834a48c53ac26d3
7
+ data.tar.gz: a9f151e240e697af51dd24d4f0486abcd0e6d1316b73ca935f411619b4c6fc33ce96888b79a2252828c3d2c47ccb88a997a0fb1a7aa3691d1cd5504b036ad996
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-cloudasset_v1
2
2
 
3
+ ### v0.39.0 (2022-06-17)
4
+
5
+ * Regenerated from discovery document revision 20220610
6
+ * Regenerated using generator version 0.6.0
7
+
8
+ ### v0.38.0 (2022-06-07)
9
+
10
+ * Regenerated from discovery document revision 20220604
11
+ * Regenerated using generator version 0.5.0
12
+
13
+ ### v0.37.0 (2022-05-25)
14
+
15
+ * Regenerated from discovery document revision 20220520
16
+
3
17
  ### v0.36.0 (2022-05-18)
4
18
 
5
19
  * Regenerated from discovery document revision 20220513
@@ -2394,6 +2394,13 @@ module Google
2394
2394
  class GoogleIdentityAccesscontextmanagerV1EgressTo
2395
2395
  include Google::Apis::Core::Hashable
2396
2396
 
2397
+ # A list of external resources that are allowed to be accessed. A request
2398
+ # matches if it contains an external resource in this list (Example: s3://bucket/
2399
+ # path). Currently '*' is not allowed.
2400
+ # Corresponds to the JSON property `externalResources`
2401
+ # @return [Array<String>]
2402
+ attr_accessor :external_resources
2403
+
2397
2404
  # A list of ApiOperations allowed to be performed by the sources specified in
2398
2405
  # the corresponding EgressFrom. A request matches if it uses an operation/
2399
2406
  # service in this list.
@@ -2416,6 +2423,7 @@ module Google
2416
2423
 
2417
2424
  # Update properties of this object
2418
2425
  def update!(**args)
2426
+ @external_resources = args[:external_resources] if args.key?(:external_resources)
2419
2427
  @operations = args[:operations] if args.key?(:operations)
2420
2428
  @resources = args[:resources] if args.key?(:resources)
2421
2429
  end
@@ -4113,7 +4121,8 @@ module Google
4113
4121
  end
4114
4122
  end
4115
4123
 
4116
- # A result of Resource Search, containing information of a cloud resource.
4124
+ # A result of Resource Search, containing information of a cloud resource. Next
4125
+ # ID: 28
4117
4126
  class ResourceSearchResult
4118
4127
  include Google::Apis::Core::Hashable
4119
4128
 
@@ -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.36.0"
19
+ GEM_VERSION = "0.39.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.6.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220513"
25
+ REVISION = "20220610"
26
26
  end
27
27
  end
28
28
  end
@@ -1213,6 +1213,7 @@ module Google
1213
1213
  class GoogleIdentityAccesscontextmanagerV1EgressTo
1214
1214
  # @private
1215
1215
  class Representation < Google::Apis::Core::JsonRepresentation
1216
+ collection :external_resources, as: 'externalResources'
1216
1217
  collection :operations, as: 'operations', class: Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1ApiOperation, decorator: Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1ApiOperation::Representation
1217
1218
 
1218
1219
  collection :resources, as: 'resources'
@@ -982,21 +982,21 @@ module Google
982
982
  # query string is compared against each Cloud IAM policy binding, including its
983
983
  # principals, roles, and Cloud IAM conditions. The returned Cloud IAM policies
984
984
  # will only contain the bindings that match your query. To learn more about the
985
- # IAM policy structure, see [IAM policy doc](https://cloud.google.com/iam/docs/
986
- # policies#structure). Examples: * `policy:amy@gmail.com` to find IAM policy
987
- # bindings that specify user "amy@gmail.com". * `policy:roles/compute.admin` to
988
- # find IAM policy bindings that specify the Compute Admin role. * `policy:comp*`
989
- # to find IAM policy bindings that contain "comp" as a prefix of any word in the
990
- # binding. * `policy.role.permissions:storage.buckets.update` to find IAM policy
991
- # bindings that specify a role containing "storage.buckets.update" permission.
992
- # Note that if callers don't have `iam.roles.get` access to a role's included
993
- # permissions, policy bindings that specify this role will be dropped from the
994
- # search results. * `policy.role.permissions:upd*` to find IAM policy bindings
995
- # that specify a role containing "upd" as a prefix of any word in the role
996
- # permission. Note that if callers don't have `iam.roles.get` access to a role's
997
- # included permissions, policy bindings that specify this role will be dropped
998
- # from the search results. * `resource:organizations/123456` to find IAM policy
999
- # bindings that are set on "organizations/123456". * `resource=//
985
+ # IAM policy structure, see the [IAM policy documentation](https://cloud.google.
986
+ # com/iam/help/allow-policies/structure). Examples: * `policy:amy@gmail.com` to
987
+ # find IAM policy bindings that specify user "amy@gmail.com". * `policy:roles/
988
+ # compute.admin` to find IAM policy bindings that specify the Compute Admin role.
989
+ # * `policy:comp*` to find IAM policy bindings that contain "comp" as a prefix
990
+ # of any word in the binding. * `policy.role.permissions:storage.buckets.update`
991
+ # to find IAM policy bindings that specify a role containing "storage.buckets.
992
+ # update" permission. Note that if callers don't have `iam.roles.get` access to
993
+ # a role's included permissions, policy bindings that specify this role will be
994
+ # dropped from the search results. * `policy.role.permissions:upd*` to find IAM
995
+ # policy bindings that specify a role containing "upd" as a prefix of any word
996
+ # in the role permission. Note that if callers don't have `iam.roles.get` access
997
+ # to a role's included permissions, policy bindings that specify this role will
998
+ # be dropped from the search results. * `resource:organizations/123456` to find
999
+ # IAM policy bindings that are set on "organizations/123456". * `resource=//
1000
1000
  # cloudresourcemanager.googleapis.com/projects/myproject` to find IAM policy
1001
1001
  # bindings that are set on the project named "myproject". * `Important` to find
1002
1002
  # IAM policy bindings that contain "Important" as a word in any of the
@@ -1096,9 +1096,16 @@ module Google
1096
1096
  # env:prod` to find Cloud resources that have a label "env" and its value is "
1097
1097
  # prod". * `labels.env:*` to find Cloud resources that have a label "env". * `
1098
1098
  # kmsKey:key` to find Cloud resources encrypted with a customer-managed
1099
- # encryption key whose name contains the word "key". * `state:ACTIVE` to find
1100
- # Cloud resources whose state contains "ACTIVE" as a word. * `NOT state:ACTIVE`
1101
- # to find Cloud resources whose state doesn't contain "ACTIVE" as a word. * `
1099
+ # encryption key whose name contains the word "key". * `relationships:instance-
1100
+ # group-1` to find Cloud resources that have relationships with "instance-group-
1101
+ # 1" in the related resource name. * `relationships:INSTANCE_TO_INSTANCEGROUP`
1102
+ # to find compute instances that have relationships of type "
1103
+ # INSTANCE_TO_INSTANCEGROUP". * `relationships.INSTANCE_TO_INSTANCEGROUP:
1104
+ # instance-group-1` to find compute instances that have relationships with "
1105
+ # instance-group-1" in the compute instance group resource name, for
1106
+ # relationship type "INSTANCE_TO_INSTANCEGROUP". * `state:ACTIVE` to find Cloud
1107
+ # resources whose state contains "ACTIVE" as a word. * `NOT state:ACTIVE` to
1108
+ # find Cloud resources whose state doesn't contain "ACTIVE" as a word. * `
1102
1109
  # createTime<1609459200` to find Cloud resources that were created before "2021-
1103
1110
  # 01-01 00:00:00 UTC". 1609459200 is the epoch timestamp of "2021-01-01 00:00:00
1104
1111
  # UTC" in seconds. * `updateTime>1609459200` to find Cloud resources that were
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.36.0
4
+ version: 0.39.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: 2022-05-23 00:00:00.000000000 Z
11
+ date: 2022-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.6'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.6'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.36.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.39.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Asset API V1