Class: Google::Cloud::NetworkServices::V1::AgentGateway

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/networkservices/v1/agent_gateway.rb

Overview

AgentGateway represents the agent gateway resource.

Defined Under Namespace

Modules: Protocol Classes: AgentGatewayOutputCard, GoogleManaged, LabelsEntry, NetworkConfig, SelfManaged

Instance Attribute Summary collapse

Instance Attribute Details

#agent_gateway_card::Google::Cloud::NetworkServices::V1::AgentGateway::AgentGatewayOutputCard (readonly)

Returns Output only. Field for populated AgentGateway card.

Returns:



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#create_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The timestamp when the resource was created.

Returns:



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#description::String

Returns Optional. A free-text description of the resource. Max length 1024 characters.

Returns:

  • (::String)

    Optional. A free-text description of the resource. Max length 1024 characters.



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#etag::String

Returns Optional. Etag of the resource. If this is provided, it must match the server's etag. If the provided etag does not match the server's etag, the request will fail with a 409 ABORTED error.

Returns:

  • (::String)

    Optional. Etag of the resource. If this is provided, it must match the server's etag. If the provided etag does not match the server's etag, the request will fail with a 409 ABORTED error.



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#google_managed::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged

Returns Optional. Proxy is orchestrated and managed by GoogleCloud in a tenant project.

Note: The following fields are mutually exclusive: google_managed, self_managed. If a field in that set is populated, all other fields in the set will automatically be cleared.

Returns:

  • (::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged)

    Optional. Proxy is orchestrated and managed by GoogleCloud in a tenant project.

    Note: The following fields are mutually exclusive: google_managed, self_managed. If a field in that set is populated, all other fields in the set will automatically be cleared.



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#labels::Google::Protobuf::Map{::String => ::String}

Returns Optional. Set of label tags associated with the AgentGateway resource.

Returns:

  • (::Google::Protobuf::Map{::String => ::String})

    Optional. Set of label tags associated with the AgentGateway resource.



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#name::String

Returns Identifier. Name of the AgentGateway resource. It matches pattern projects/*/locations/*/agentGateways/<agent_gateway>.

Returns:

  • (::String)

    Identifier. Name of the AgentGateway resource. It matches pattern projects/*/locations/*/agentGateways/<agent_gateway>.



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#network_config::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig

Returns Optional. Network configuration for the AgentGateway.

Returns:



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#protocols::Array<::Google::Cloud::NetworkServices::V1::AgentGateway::Protocol>

Deprecated.

This field is deprecated and may be removed in the next major version update.

Returns Optional. Deprecated.

Returns:



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#registries::Array<::String>

Returns Optional. A list of Agent registries containing the agents, MCP servers and tools governed by the Agent Gateway. Note: Currently limited to project-scoped registries Must be of format //agentregistry.googleapis.com/projects/{project}/locations/{location}/.

Returns:

  • (::Array<::String>)

    Optional. A list of Agent registries containing the agents, MCP servers and tools governed by the Agent Gateway. Note: Currently limited to project-scoped registries Must be of format //agentregistry.googleapis.com/projects/{project}/locations/{location}/



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#self_managed::Google::Cloud::NetworkServices::V1::AgentGateway::SelfManaged

Returns Optional. Attach to existing Application Load Balancers or Secure Web Proxies.

Note: The following fields are mutually exclusive: self_managed, google_managed. If a field in that set is populated, all other fields in the set will automatically be cleared.

Returns:

  • (::Google::Cloud::NetworkServices::V1::AgentGateway::SelfManaged)

    Optional. Attach to existing Application Load Balancers or Secure Web Proxies.

    Note: The following fields are mutually exclusive: self_managed, google_managed. If a field in that set is populated, all other fields in the set will automatically be cleared.



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end

#update_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The timestamp when the resource was updated.

Returns:



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'proto_docs/google/cloud/networkservices/v1/agent_gateway.rb', line 76

class AgentGateway
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Configuration for Google Managed deployment mode.
  # Proxy is orchestrated and managed by GoogleCloud in a tenant project.
  # @!attribute [rw] governed_access_path
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::GoogleManaged::GovernedAccessPath]
  #     Optional. Operating Mode of Agent Gateway.
  class GoogleManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # GovernedAccessPath defines the type of access to protect.
    module GovernedAccessPath
      # Governed access path is not specified.
      GOVERNED_ACCESS_PATH_UNSPECIFIED = 0

      # Govern agent conections to destinations.
      AGENT_TO_ANYWHERE = 1

      # Protect connection to Agent or Tool.
      CLIENT_TO_AGENT = 2
    end
  end

  # Configuration for Self Managed deployment mode.
  # Attach to existing Application Load Balancers or Secure Web Proxies.
  # @!attribute [rw] resource_uri
  #   @return [::String]
  #     Optional. A supported Google Cloud networking proxy in the Project and
  #     Location
  class SelfManaged
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # NetworkConfig contains network configurations for the AgentGateway.
  # @!attribute [rw] egress
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress]
  #     Optional. Optional PSC-Interface network attachment for connectivity to
  #     your private VPCs network.
  # @!attribute [rw] dns_peering_config
  #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::DnsPeeringConfig]
  #     Optional. Optional DNS peering configuration for connectivity to your
  #     private VPC network.
  class NetworkConfig
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Configuration for Egress
    # @!attribute [rw] network_attachment
    #   @return [::String]
    #     Optional. The URI of the Network Attachment resource.
    # @!attribute [rw] trust_config
    #   @return [::Google::Cloud::NetworkServices::V1::AgentGateway::NetworkConfig::Egress::TrustConfig]
    #     Optional. TrustConfig defines the trust configuration for egress.
    class Egress
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods

      # TrustConfig defines the trust configuration for egress.
      # @!attribute [rw] pem_certificates
      #   @return [::Array<::String>]
      #     Required. PEM encoded root certificates used to validate the identity
      #     of the upstream servers/destinations during egress connections.
      class TrustConfig
        include ::Google::Protobuf::MessageExts
        extend ::Google::Protobuf::MessageExts::ClassMethods
      end
    end

    # DNS peering config for the user VPC network.
    # @!attribute [rw] domains
    #   @return [::Array<::String>]
    #     Required. Domain names for which DNS queries should be forwarded to the
    #     target network.
    # @!attribute [rw] target_project
    #   @return [::String]
    #     Required. Target project ID to which DNS queries should be forwarded
    #     to. This can be the same project that contains the AgentGateway or a
    #     different project.
    # @!attribute [rw] target_network
    #   @return [::String]
    #     Required. Target network in 'target project' to which DNS queries
    #     should be forwarded to. Must be in format of
    #     `projects/{project}/global/networks/{network}`.
    class DnsPeeringConfig
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end

  # AgentGatewayOutputCard contains informational output-only fields
  # @!attribute [r] mtls_endpoint
  #   @return [::String]
  #     Output only. mTLS Endpoint associated with this AgentGateway
  # @!attribute [r] root_certificates
  #   @return [::Array<::String>]
  #     Output only. Root Certificates for Agents to validate this AgentGateway
  # @!attribute [r] service_extensions_service_account
  #   @return [::String]
  #     Output only. Service Account used by Service Extensions to operate.
  class AgentGatewayOutputCard
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class LabelsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Enums of all supported protocols
  module Protocol
    # Unspecified protocol.
    PROTOCOL_UNSPECIFIED = 0

    # Message Control Plane protocol.
    MCP = 1
  end
end