Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of cloudasset v1beta1 client #21345

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59098,6 +59098,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
Loading