Skip to content

Commit 88c4801

Browse files
feat: Automated regeneration of cloudasset v1beta1 client (googleapis#22132)
Auto-created at 2025-03-16 10:45:29 +0000 using the toys pull request generator.
1 parent aa47ae3 commit 88c4801

File tree

5 files changed

+26
-2
lines changed

5 files changed

+26
-2
lines changed

api_names_out.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60016,6 +60016,8 @@
6001660016
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressTo/operations/operation": operation
6001760017
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressTo/resources": resources
6001860018
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressTo/resources/resource": resource
60019+
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressTo/roles": roles
60020+
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressTo/roles/role": role
6001960021
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1IngressFrom": google_identity_accesscontextmanager_v1_ingress_from
6002060022
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1IngressFrom/identities": identities
6002160023
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1IngressFrom/identities/identity": identity
@@ -60034,6 +60036,8 @@
6003460036
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1IngressTo/operations/operation": operation
6003560037
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1IngressTo/resources": resources
6003660038
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1IngressTo/resources/resource": resource
60039+
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1IngressTo/roles": roles
60040+
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1IngressTo/roles/role": role
6003760041
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1MethodSelector": google_identity_accesscontextmanager_v1_method_selector
6003860042
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1MethodSelector/method": method_prop
6003960043
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1MethodSelector/permission": permission

generated/google-apis-cloudasset_v1beta1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-cloudasset_v1beta1
22

3+
### v0.45.0 (2025-03-16)
4+
5+
* Regenerated from discovery document revision 20250307
6+
37
### v0.44.0 (2025-02-26)
48

59
* Regenerated from discovery document revision 20250215

generated/google-apis-cloudasset_v1beta1/lib/google/apis/cloudasset_v1beta1/classes.rb

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,6 +1619,12 @@ class GoogleIdentityAccesscontextmanagerV1EgressTo
16191619
# @return [Array<String>]
16201620
attr_accessor :resources
16211621

1622+
# IAM roles that represent the set of operations that the sources specified in
1623+
# the corresponding EgressFrom. are allowed to perform in this ServicePerimeter.
1624+
# Corresponds to the JSON property `roles`
1625+
# @return [Array<String>]
1626+
attr_accessor :roles
1627+
16221628
def initialize(**args)
16231629
update!(**args)
16241630
end
@@ -1628,6 +1634,7 @@ def update!(**args)
16281634
@external_resources = args[:external_resources] if args.key?(:external_resources)
16291635
@operations = args[:operations] if args.key?(:operations)
16301636
@resources = args[:resources] if args.key?(:resources)
1637+
@roles = args[:roles] if args.key?(:roles)
16311638
end
16321639
end
16331640

@@ -1780,6 +1787,12 @@ class GoogleIdentityAccesscontextmanagerV1IngressTo
17801787
# @return [Array<String>]
17811788
attr_accessor :resources
17821789

1790+
# IAM roles that represent the set of operations that the sources specified in
1791+
# the corresponding IngressFrom are allowed to perform in this ServicePerimeter.
1792+
# Corresponds to the JSON property `roles`
1793+
# @return [Array<String>]
1794+
attr_accessor :roles
1795+
17831796
def initialize(**args)
17841797
update!(**args)
17851798
end
@@ -1788,6 +1801,7 @@ def initialize(**args)
17881801
def update!(**args)
17891802
@operations = args[:operations] if args.key?(:operations)
17901803
@resources = args[:resources] if args.key?(:resources)
1804+
@roles = args[:roles] if args.key?(:roles)
17911805
end
17921806
end
17931807

generated/google-apis-cloudasset_v1beta1/lib/google/apis/cloudasset_v1beta1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module CloudassetV1beta1
1818
# Version of the google-apis-cloudasset_v1beta1 gem
19-
GEM_VERSION = "0.44.0"
19+
GEM_VERSION = "0.45.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.16.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250215"
25+
REVISION = "20250307"
2626
end
2727
end
2828
end

generated/google-apis-cloudasset_v1beta1/lib/google/apis/cloudasset_v1beta1/representations.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -628,6 +628,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
628628
collection :operations, as: 'operations', class: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1ApiOperation, decorator: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1ApiOperation::Representation
629629

630630
collection :resources, as: 'resources'
631+
collection :roles, as: 'roles'
631632
end
632633
end
633634

@@ -666,6 +667,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
666667
collection :operations, as: 'operations', class: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1ApiOperation, decorator: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1ApiOperation::Representation
667668

668669
collection :resources, as: 'resources'
670+
collection :roles, as: 'roles'
669671
end
670672
end
671673

0 commit comments

Comments
 (0)