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
4 changes: 4 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -337621,6 +337621,10 @@
"/networkservices:v1/AgentGatewayNetworkConfigDnsPeeringConfig/targetProject": target_project
"/networkservices:v1/AgentGatewayNetworkConfigEgress": agent_gateway_network_config_egress
"/networkservices:v1/AgentGatewayNetworkConfigEgress/networkAttachment": network_attachment
"/networkservices:v1/AgentGatewayNetworkConfigEgress/trustConfig": trust_config
"/networkservices:v1/AgentGatewayNetworkConfigEgressTrustConfig": agent_gateway_network_config_egress_trust_config
"/networkservices:v1/AgentGatewayNetworkConfigEgressTrustConfig/pemCertificates": pem_certificates
"/networkservices:v1/AgentGatewayNetworkConfigEgressTrustConfig/pemCertificates/pem_certificate": pem_certificate
"/networkservices:v1/AgentGatewaySelfManaged": agent_gateway_self_managed
"/networkservices:v1/AgentGatewaySelfManaged/resourceUri": resource_uri
"/networkservices:v1/AuditConfig": audit_config
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-networkservices_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-networkservices_v1

### v0.73.0 (2026-06-28)

* Regenerated from discovery document revision 20260610

### v0.72.0 (2026-06-14)

* Regenerated from discovery document revision 20260605
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,39 @@ class AgentGatewayNetworkConfigEgress
# @return [String]
attr_accessor :network_attachment

# TrustConfig defines the trust configuration for egress.
# Corresponds to the JSON property `trustConfig`
# @return [Google::Apis::NetworkservicesV1::AgentGatewayNetworkConfigEgressTrustConfig]
attr_accessor :trust_config

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

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

# TrustConfig defines the trust configuration for egress.
class AgentGatewayNetworkConfigEgressTrustConfig
include Google::Apis::Core::Hashable

# Required. PEM encoded root certificates used to validate the identity of the
# upstream servers/destinations during egress connections.
# Corresponds to the JSON property `pemCertificates`
# @return [Array<String>]
attr_accessor :pem_certificates

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

# Update properties of this object
def update!(**args)
@pem_certificates = args[:pem_certificates] if args.key?(:pem_certificates)
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 NetworkservicesV1
# Version of the google-apis-networkservices_v1 gem
GEM_VERSION = "0.72.0"
GEM_VERSION = "0.73.0"

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

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

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

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

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

Expand Down Expand Up @@ -779,6 +785,15 @@ class AgentGatewayNetworkConfigEgress
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :network_attachment, as: 'networkAttachment'
property :trust_config, as: 'trustConfig', class: Google::Apis::NetworkservicesV1::AgentGatewayNetworkConfigEgressTrustConfig, decorator: Google::Apis::NetworkservicesV1::AgentGatewayNetworkConfigEgressTrustConfig::Representation

end
end

class AgentGatewayNetworkConfigEgressTrustConfig
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :pem_certificates, as: 'pemCertificates'
end
end

Expand Down
Loading