Skip to content

Commit

Permalink
feat: Automated regeneration of cloudasset v1beta1 client (#21345)
Browse files Browse the repository at this point in the history
Auto-created at 2025-01-12 09:56:15 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Jan 12, 2025
1 parent 46048f6 commit e2a5a11
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 3 deletions.
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59108,6 +59108,7 @@
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressPolicy/title": title
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressSource": google_identity_accesscontextmanager_v1_egress_source
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressSource/accessLevel": access_level
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressSource/resource": resource
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressTo": google_identity_accesscontextmanager_v1_egress_to
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressTo/externalResources": external_resources
"/cloudasset:v1beta1/GoogleIdentityAccesscontextmanagerV1EgressTo/externalResources/external_resource": external_resource
Expand Down
5 changes: 5 additions & 0 deletions generated/google-apis-cloudasset_v1beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release history for google-apis-cloudasset_v1beta1

### v0.43.0 (2025-01-12)

* Regenerated from discovery document revision 20250104
* Regenerated using generator version 0.16.0

### v0.42.0 (2024-12-15)

* Regenerated from discovery document revision 20241211
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1564,13 +1564,24 @@ class GoogleIdentityAccesscontextmanagerV1EgressSource
# @return [String]
attr_accessor :access_level

# A Google Cloud resource that you want to allow to egress the perimeter. These
# resources can access data outside the perimeter. This field only supports
# projects. The project format is `projects/`project_number``. The resource can
# be in any Google Cloud organization, not just the organization where the
# perimeter is defined. You can't use `*` in this field to allow all Google
# Cloud resources.
# Corresponds to the JSON property `resource`
# @return [String]
attr_accessor :resource

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@access_level = args[:access_level] if args.key?(:access_level)
@resource = args[:resource] if args.key?(:resource)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module CloudassetV1beta1
# Version of the google-apis-cloudasset_v1beta1 gem
GEM_VERSION = "0.42.0"
GEM_VERSION = "0.43.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.15.1"
GENERATOR_VERSION = "0.16.0"

# Revision of the discovery document this client was generated from
REVISION = "20241211"
REVISION = "20250104"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,7 @@ class GoogleIdentityAccesscontextmanagerV1EgressSource
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :access_level, as: 'accessLevel'
property :resource, as: 'resource'
end
end

Expand Down

0 comments on commit e2a5a11

Please sign in to comment.