Skip to content
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
6 changes: 6 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -370426,8 +370426,14 @@
"/servicenetworking:v1beta/Api/version": version
"/servicenetworking:v1beta/Aspect": aspect
"/servicenetworking:v1beta/Aspect/kind": kind
"/servicenetworking:v1beta/Aspect/rules": rules
"/servicenetworking:v1beta/Aspect/rules/rule": rule
"/servicenetworking:v1beta/Aspect/spec": spec
"/servicenetworking:v1beta/Aspect/spec/spec": spec
"/servicenetworking:v1beta/AspectRule": aspect_rule
"/servicenetworking:v1beta/AspectRule/config": config
"/servicenetworking:v1beta/AspectRule/config/config": config
"/servicenetworking:v1beta/AspectRule/selector": selector
"/servicenetworking:v1beta/AuthProvider": auth_provider
"/servicenetworking:v1beta/AuthProvider/audiences": audiences
"/servicenetworking:v1beta/AuthProvider/authorizationUrl": authorization_url
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-servicenetworking_v1beta/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-servicenetworking_v1beta

### v0.70.0 (2026-02-22)

* Regenerated from discovery document revision 20260216

### v0.69.0 (2026-01-25)

* Regenerated from discovery document revision 20260119
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,11 @@ class Aspect
# @return [String]
attr_accessor :kind

# Optional. Rules of the Configuration.
# Corresponds to the JSON property `rules`
# @return [Array<Google::Apis::ServicenetworkingV1beta::AspectRule>]
attr_accessor :rules

# Content of the configuration. The underlying schema should be defined by
# Aspect owners as protobuf message under `google/api/configaspects/proto`.
# Corresponds to the JSON property `spec`
Expand All @@ -298,10 +303,38 @@ def initialize(**args)
# Update properties of this object
def update!(**args)
@kind = args[:kind] if args.key?(:kind)
@rules = args[:rules] if args.key?(:rules)
@spec = args[:spec] if args.key?(:spec)
end
end

# Rule-based configuration for an aspect.
class AspectRule
include Google::Apis::Core::Hashable

# Required. Rules of the configuration. The underlying schema should be defined
# by Aspect owners as protobuf message under `google/api/configaspects/proto`.
# Corresponds to the JSON property `config`
# @return [Hash<String,Object>]
attr_accessor :config

# Required. Selects the RPC methods to which this rule applies. Refer to
# selector for syntax details.
# Corresponds to the JSON property `selector`
# @return [String]
attr_accessor :selector

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

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

# Configuration for an authentication provider, including support for [JSON Web
# Token (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).
class AuthProvider
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ServicenetworkingV1beta
# Version of the google-apis-servicenetworking_v1beta gem
GEM_VERSION = "0.69.0"
GEM_VERSION = "0.70.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20260119"
REVISION = "20260216"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class AspectRule
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class AuthProvider
class Representation < Google::Apis::Core::JsonRepresentation; end

Expand Down Expand Up @@ -736,10 +742,20 @@ class Aspect
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :kind, as: 'kind'
collection :rules, as: 'rules', class: Google::Apis::ServicenetworkingV1beta::AspectRule, decorator: Google::Apis::ServicenetworkingV1beta::AspectRule::Representation

hash :spec, as: 'spec'
end
end

class AspectRule
# @private
class Representation < Google::Apis::Core::JsonRepresentation
hash :config, as: 'config'
property :selector, as: 'selector'
end
end

class AuthProvider
# @private
class Representation < Google::Apis::Core::JsonRepresentation
Expand Down