attribute_context

package
v0.0.0-...-e165f0f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 1, 2020 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AttributeContext

type AttributeContext struct {
	// The origin of a network activity. In a multi hop network activity,
	// the origin represents the sender of the first hop. For the first hop,
	// the `source` and the `origin` must have the same content.
	Origin *AttributeContext_Peer `protobuf:"bytes,7,opt,name=origin,proto3" json:"origin,omitempty"`
	// The source of a network activity, such as starting a TCP connection.
	// In a multi hop network activity, the source represents the sender of the
	// last hop.
	Source *AttributeContext_Peer `protobuf:"bytes,1,opt,name=source,proto3" json:"source,omitempty"`
	// The destination of a network activity, such as accepting a TCP connection.
	// In a multi hop network activity, the destination represents the receiver of
	// the last hop.
	Destination *AttributeContext_Peer `protobuf:"bytes,2,opt,name=destination,proto3" json:"destination,omitempty"`
	// Represents a network request, such as an HTTP request.
	Request *AttributeContext_Request `protobuf:"bytes,3,opt,name=request,proto3" json:"request,omitempty"`
	// Represents a network response, such as an HTTP response.
	Response *AttributeContext_Response `protobuf:"bytes,4,opt,name=response,proto3" json:"response,omitempty"`
	// Represents a target resource that is involved with a network activity.
	// If multiple resources are involved with an activity, this must be the
	// primary one.
	Resource *AttributeContext_Resource `protobuf:"bytes,5,opt,name=resource,proto3" json:"resource,omitempty"`
	// Represents an API operation that is involved to a network activity.
	Api                  *AttributeContext_Api `protobuf:"bytes,6,opt,name=api,proto3" json:"api,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

This message defines the standard attribute vocabulary for Google APIs.

An attribute is a piece of metadata that describes an activity on a network service. For example, the size of an HTTP request, or the status code of an HTTP response.

Each attribute has a type and a name, which is logically defined as a proto message field in `AttributeContext`. The field type becomes the attribute type, and the field path becomes the attribute name. For example, the attribute `source.ip` maps to field `AttributeContext.source.ip`.

This message definition is guaranteed not to have any wire breaking change. So you can use it directly for passing attributes across different systems.

NOTE: Different system may generate different subset of attributes. Please verify the system specification before relying on an attribute generated a system.

func (*AttributeContext) Descriptor

func (*AttributeContext) Descriptor() ([]byte, []int)

func (*AttributeContext) GetApi

func (*AttributeContext) GetDestination

func (m *AttributeContext) GetDestination() *AttributeContext_Peer

func (*AttributeContext) GetOrigin

func (m *AttributeContext) GetOrigin() *AttributeContext_Peer

func (*AttributeContext) GetRequest

func (m *AttributeContext) GetRequest() *AttributeContext_Request

func (*AttributeContext) GetResource

func (m *AttributeContext) GetResource() *AttributeContext_Resource

func (*AttributeContext) GetResponse

func (m *AttributeContext) GetResponse() *AttributeContext_Response

func (*AttributeContext) GetSource

func (m *AttributeContext) GetSource() *AttributeContext_Peer

func (*AttributeContext) ProtoMessage

func (*AttributeContext) ProtoMessage()

func (*AttributeContext) Reset

func (m *AttributeContext) Reset()

func (*AttributeContext) String

func (m *AttributeContext) String() string

func (*AttributeContext) XXX_DiscardUnknown

func (m *AttributeContext) XXX_DiscardUnknown()

func (*AttributeContext) XXX_Marshal

func (m *AttributeContext) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AttributeContext) XXX_Merge

func (m *AttributeContext) XXX_Merge(src proto.Message)

func (*AttributeContext) XXX_Size

func (m *AttributeContext) XXX_Size() int

func (*AttributeContext) XXX_Unmarshal

func (m *AttributeContext) XXX_Unmarshal(b []byte) error

type AttributeContext_Api

type AttributeContext_Api struct {
	// The API service name. It is a logical identifier for a networked API,
	// such as "pubsub.googleapis.com". The naming syntax depends on the
	// API management system being used for handling the request.
	Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	// The API operation name. For gRPC requests, it is the fully qualified API
	// method name, such as "google.pubsub.v1.Publisher.Publish". For OpenAPI
	// requests, it is the `operationId`, such as "getPet".
	Operation string `protobuf:"bytes,2,opt,name=operation,proto3" json:"operation,omitempty"`
	// The API protocol used for sending the request, such as "http", "https",
	// "grpc", or "internal".
	Protocol string `protobuf:"bytes,3,opt,name=protocol,proto3" json:"protocol,omitempty"`
	// The API version associated with the API operation above, such as "v1" or
	// "v1alpha1".
	Version              string   `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

This message defines attributes associated with API operations, such as a network API request. The terminology is based on the conventions used by Google APIs, Istio, and OpenAPI.

func (*AttributeContext_Api) Descriptor

func (*AttributeContext_Api) Descriptor() ([]byte, []int)

func (*AttributeContext_Api) GetOperation

func (m *AttributeContext_Api) GetOperation() string

func (*AttributeContext_Api) GetProtocol

func (m *AttributeContext_Api) GetProtocol() string

func (*AttributeContext_Api) GetService

func (m *AttributeContext_Api) GetService() string

func (*AttributeContext_Api) GetVersion

func (m *AttributeContext_Api) GetVersion() string

func (*AttributeContext_Api) ProtoMessage

func (*AttributeContext_Api) ProtoMessage()

func (*AttributeContext_Api) Reset

func (m *AttributeContext_Api) Reset()

func (*AttributeContext_Api) String

func (m *AttributeContext_Api) String() string

func (*AttributeContext_Api) XXX_DiscardUnknown

func (m *AttributeContext_Api) XXX_DiscardUnknown()

func (*AttributeContext_Api) XXX_Marshal

func (m *AttributeContext_Api) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AttributeContext_Api) XXX_Merge

func (m *AttributeContext_Api) XXX_Merge(src proto.Message)

func (*AttributeContext_Api) XXX_Size

func (m *AttributeContext_Api) XXX_Size() int

func (*AttributeContext_Api) XXX_Unmarshal

func (m *AttributeContext_Api) XXX_Unmarshal(b []byte) error

type AttributeContext_Auth

type AttributeContext_Auth struct {
	// The authenticated principal. Reflects the issuer (`iss`) and subject
	// (`sub`) claims within a JWT. The issuer and subject should be `/`
	// delimited, with `/` percent-encoded within the subject fragment. For
	// Google accounts, the principal format is:
	// "https://accounts.google.com/{id}"
	Principal string `protobuf:"bytes,1,opt,name=principal,proto3" json:"principal,omitempty"`
	// The intended audience(s) for this authentication information. Reflects
	// the audience (`aud`) claim within a JWT. The audience
	// value(s) depends on the `issuer`, but typically include one or more of
	// the following pieces of information:
	//
	// *  The services intended to receive the credential such as
	//    ["pubsub.googleapis.com", "storage.googleapis.com"]
	// *  A set of service-based scopes. For example,
	//    ["https://www.googleapis.com/auth/cloud-platform"]
	// *  The client id of an app, such as the Firebase project id for JWTs
	//    from Firebase Auth.
	//
	// Consult the documentation for the credential issuer to determine the
	// information provided.
	Audiences []string `protobuf:"bytes,2,rep,name=audiences,proto3" json:"audiences,omitempty"`
	// The authorized presenter of the credential. Reflects the optional
	// Authorized Presenter (`azp`) claim within a JWT or the
	// OAuth client id. For example, a Google Cloud Platform client id looks
	// as follows: "123456789012.apps.googleusercontent.com".
	Presenter string `protobuf:"bytes,3,opt,name=presenter,proto3" json:"presenter,omitempty"`
	// Structured claims presented with the credential. JWTs include
	// `{key: value}` pairs for standard and private claims. The following
	// is a subset of the standard required and optional claims that would
	// typically be presented for a Google-based JWT:
	//
	//    {'iss': 'accounts.google.com',
	//     'sub': '113289723416554971153',
	//     'aud': ['123456789012', 'pubsub.googleapis.com'],
	//     'azp': '123456789012.apps.googleusercontent.com',
	//     'email': 'jsmith@example.com',
	//     'iat': 1353601026,
	//     'exp': 1353604926}
	//
	// SAML assertions are similarly specified, but with an identity provider
	// dependent structure.
	Claims *_struct.Struct `protobuf:"bytes,4,opt,name=claims,proto3" json:"claims,omitempty"`
	// A list of access level resource names that allow resources to be
	// accessed by authenticated requester. It is part of Secure GCP processing
	// for the incoming request. An access level string has the format:
	// "//{api_service_name}/accessPolicies/{policy_id}/accessLevels/{short_name}"
	//
	// Example:
	// "//accesscontextmanager.googleapis.com/accessPolicies/MY_POLICY_ID/accessLevels/MY_LEVEL"
	AccessLevels         []string `protobuf:"bytes,5,rep,name=access_levels,json=accessLevels,proto3" json:"access_levels,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

This message defines request authentication attributes. Terminology is based on the JSON Web Token (JWT) standard, but the terms also correlate to concepts in other standards.

func (*AttributeContext_Auth) Descriptor

func (*AttributeContext_Auth) Descriptor() ([]byte, []int)

func (*AttributeContext_Auth) GetAccessLevels

func (m *AttributeContext_Auth) GetAccessLevels() []string

func (*AttributeContext_Auth) GetAudiences

func (m *AttributeContext_Auth) GetAudiences() []string

func (*AttributeContext_Auth) GetClaims

func (m *AttributeContext_Auth) GetClaims() *_struct.Struct

func (*AttributeContext_Auth) GetPresenter

func (m *AttributeContext_Auth) GetPresenter() string

func (*AttributeContext_Auth) GetPrincipal

func (m *AttributeContext_Auth) GetPrincipal() string

func (*AttributeContext_Auth) ProtoMessage

func (*AttributeContext_Auth) ProtoMessage()

func (*AttributeContext_Auth) Reset

func (m *AttributeContext_Auth) Reset()

func (*AttributeContext_Auth) String

func (m *AttributeContext_Auth) String() string

func (*AttributeContext_Auth) XXX_DiscardUnknown

func (m *AttributeContext_Auth) XXX_DiscardUnknown()

func (*AttributeContext_Auth) XXX_Marshal

func (m *AttributeContext_Auth) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AttributeContext_Auth) XXX_Merge

func (m *AttributeContext_Auth) XXX_Merge(src proto.Message)

func (*AttributeContext_Auth) XXX_Size

func (m *AttributeContext_Auth) XXX_Size() int

func (*AttributeContext_Auth) XXX_Unmarshal

func (m *AttributeContext_Auth) XXX_Unmarshal(b []byte) error

type AttributeContext_Peer

type AttributeContext_Peer struct {
	// The IP address of the peer.
	Ip string `protobuf:"bytes,1,opt,name=ip,proto3" json:"ip,omitempty"`
	// The network port of the peer.
	Port int64 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
	// The labels associated with the peer.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// The identity of this peer. Similar to `Request.auth.principal`, but
	// relative to the peer instead of the request. For example, the
	// idenity associated with a load balancer that forwared the request.
	Principal string `protobuf:"bytes,7,opt,name=principal,proto3" json:"principal,omitempty"`
	// The CLDR country/region code associated with the above IP address.
	// If the IP address is private, the `region_code` should reflect the
	// physical location where this peer is running.
	RegionCode           string   `protobuf:"bytes,8,opt,name=region_code,json=regionCode,proto3" json:"region_code,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

This message defines attributes for a node that handles a network request. The node can be either a service or an application that sends, forwards, or receives the request. Service peers should fill in `principal` and `labels` as appropriate.

func (*AttributeContext_Peer) Descriptor

func (*AttributeContext_Peer) Descriptor() ([]byte, []int)

func (*AttributeContext_Peer) GetIp

func (m *AttributeContext_Peer) GetIp() string

func (*AttributeContext_Peer) GetLabels

func (m *AttributeContext_Peer) GetLabels() map[string]string

func (*AttributeContext_Peer) GetPort

func (m *AttributeContext_Peer) GetPort() int64

func (*AttributeContext_Peer) GetPrincipal

func (m *AttributeContext_Peer) GetPrincipal() string

func (*AttributeContext_Peer) GetRegionCode

func (m *AttributeContext_Peer) GetRegionCode() string

func (*AttributeContext_Peer) ProtoMessage

func (*AttributeContext_Peer) ProtoMessage()

func (*AttributeContext_Peer) Reset

func (m *AttributeContext_Peer) Reset()

func (*AttributeContext_Peer) String

func (m *AttributeContext_Peer) String() string

func (*AttributeContext_Peer) XXX_DiscardUnknown

func (m *AttributeContext_Peer) XXX_DiscardUnknown()

func (*AttributeContext_Peer) XXX_Marshal

func (m *AttributeContext_Peer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AttributeContext_Peer) XXX_Merge

func (m *AttributeContext_Peer) XXX_Merge(src proto.Message)

func (*AttributeContext_Peer) XXX_Size

func (m *AttributeContext_Peer) XXX_Size() int

func (*AttributeContext_Peer) XXX_Unmarshal

func (m *AttributeContext_Peer) XXX_Unmarshal(b []byte) error

type AttributeContext_Request

type AttributeContext_Request struct {
	// The unique ID for a request, which can be propagated to downstream
	// systems. The ID should have low probability of collision
	// within a single day for a specific service.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// The HTTP request method, such as `GET`, `POST`.
	Method string `protobuf:"bytes,2,opt,name=method,proto3" json:"method,omitempty"`
	// The HTTP request headers. If multiple headers share the same key, they
	// must be merged according to the HTTP spec. All header keys must be
	// lowercased, because HTTP header keys are case-insensitive.
	Headers map[string]string `` /* 155-byte string literal not displayed */
	// The HTTP URL path.
	Path string `protobuf:"bytes,4,opt,name=path,proto3" json:"path,omitempty"`
	// The HTTP request `Host` header value.
	Host string `protobuf:"bytes,5,opt,name=host,proto3" json:"host,omitempty"`
	// The HTTP URL scheme, such as `http` and `https`.
	Scheme string `protobuf:"bytes,6,opt,name=scheme,proto3" json:"scheme,omitempty"`
	// The HTTP URL query in the format of `name1=value1&name2=value2`, as it
	// appears in the first line of the HTTP request. No decoding is performed.
	Query string `protobuf:"bytes,7,opt,name=query,proto3" json:"query,omitempty"`
	// The timestamp when the `destination` service receives the first byte of
	// the request.
	Time *timestamp.Timestamp `protobuf:"bytes,9,opt,name=time,proto3" json:"time,omitempty"`
	// The HTTP request size in bytes. If unknown, it must be -1.
	Size int64 `protobuf:"varint,10,opt,name=size,proto3" json:"size,omitempty"`
	// The network protocol used with the request, such as "http/1.1",
	// "spdy/3", "h2", "h2c", "webrtc", "tcp", "udp", "quic". See
	// https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids
	// for details.
	Protocol string `protobuf:"bytes,11,opt,name=protocol,proto3" json:"protocol,omitempty"`
	// A special parameter for request reason. It is used by security systems
	// to associate auditing information with a request.
	Reason string `protobuf:"bytes,12,opt,name=reason,proto3" json:"reason,omitempty"`
	// The request authentication. May be absent for unauthenticated requests.
	// Derived from the HTTP request `Authorization` header or equivalent.
	Auth                 *AttributeContext_Auth `protobuf:"bytes,13,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

This message defines attributes for an HTTP request. If the actual request is not an HTTP request, the runtime system should try to map the actual request to an equivalent HTTP request.

func (*AttributeContext_Request) Descriptor

func (*AttributeContext_Request) Descriptor() ([]byte, []int)

func (*AttributeContext_Request) GetAuth

func (*AttributeContext_Request) GetHeaders

func (m *AttributeContext_Request) GetHeaders() map[string]string

func (*AttributeContext_Request) GetHost

func (m *AttributeContext_Request) GetHost() string

func (*AttributeContext_Request) GetId

func (m *AttributeContext_Request) GetId() string

func (*AttributeContext_Request) GetMethod

func (m *AttributeContext_Request) GetMethod() string

func (*AttributeContext_Request) GetPath

func (m *AttributeContext_Request) GetPath() string

func (*AttributeContext_Request) GetProtocol

func (m *AttributeContext_Request) GetProtocol() string

func (*AttributeContext_Request) GetQuery

func (m *AttributeContext_Request) GetQuery() string

func (*AttributeContext_Request) GetReason

func (m *AttributeContext_Request) GetReason() string

func (*AttributeContext_Request) GetScheme

func (m *AttributeContext_Request) GetScheme() string

func (*AttributeContext_Request) GetSize

func (m *AttributeContext_Request) GetSize() int64

func (*AttributeContext_Request) GetTime

func (*AttributeContext_Request) ProtoMessage

func (*AttributeContext_Request) ProtoMessage()

func (*AttributeContext_Request) Reset

func (m *AttributeContext_Request) Reset()

func (*AttributeContext_Request) String

func (m *AttributeContext_Request) String() string

func (*AttributeContext_Request) XXX_DiscardUnknown

func (m *AttributeContext_Request) XXX_DiscardUnknown()

func (*AttributeContext_Request) XXX_Marshal

func (m *AttributeContext_Request) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AttributeContext_Request) XXX_Merge

func (m *AttributeContext_Request) XXX_Merge(src proto.Message)

func (*AttributeContext_Request) XXX_Size

func (m *AttributeContext_Request) XXX_Size() int

func (*AttributeContext_Request) XXX_Unmarshal

func (m *AttributeContext_Request) XXX_Unmarshal(b []byte) error

type AttributeContext_Resource

type AttributeContext_Resource struct {
	// The name of the service that this resource belongs to, such as
	// `pubsub.googleapis.com`. The service may be different from the DNS
	// hostname that actually serves the request.
	Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	// The stable identifier (name) of a resource on the `service`. A resource
	// can be logically identified as "//{resource.service}/{resource.name}".
	// The differences between a resource name and a URI are:
	//
	// *   Resource name is a logical identifier, independent of network
	//     protocol and API version. For example,
	//     `//pubsub.googleapis.com/projects/123/topics/news-feed`.
	// *   URI often includes protocol and version information, so it can
	//     be used directly by applications. For example,
	//     `https://pubsub.googleapis.com/v1/projects/123/topics/news-feed`.
	//
	// See https://cloud.google.com/apis/design/resource_names for details.
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// The type of the resource. The syntax is platform-specific because
	// different platforms define their resources differently.
	//
	// For Google APIs, the type format must be "{service}/{kind}".
	Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	// The labels or tags on the resource, such as AWS resource tags and
	// Kubernetes resource labels.
	Labels               map[string]string `` /* 153-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

This message defines core attributes for a resource. A resource is an addressable (named) entity provided by the destination service. For example, a file stored on a network storage service.

func (*AttributeContext_Resource) Descriptor

func (*AttributeContext_Resource) Descriptor() ([]byte, []int)

func (*AttributeContext_Resource) GetLabels

func (m *AttributeContext_Resource) GetLabels() map[string]string

func (*AttributeContext_Resource) GetName

func (m *AttributeContext_Resource) GetName() string

func (*AttributeContext_Resource) GetService

func (m *AttributeContext_Resource) GetService() string

func (*AttributeContext_Resource) GetType

func (m *AttributeContext_Resource) GetType() string

func (*AttributeContext_Resource) ProtoMessage

func (*AttributeContext_Resource) ProtoMessage()

func (*AttributeContext_Resource) Reset

func (m *AttributeContext_Resource) Reset()

func (*AttributeContext_Resource) String

func (m *AttributeContext_Resource) String() string

func (*AttributeContext_Resource) XXX_DiscardUnknown

func (m *AttributeContext_Resource) XXX_DiscardUnknown()

func (*AttributeContext_Resource) XXX_Marshal

func (m *AttributeContext_Resource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AttributeContext_Resource) XXX_Merge

func (m *AttributeContext_Resource) XXX_Merge(src proto.Message)

func (*AttributeContext_Resource) XXX_Size

func (m *AttributeContext_Resource) XXX_Size() int

func (*AttributeContext_Resource) XXX_Unmarshal

func (m *AttributeContext_Resource) XXX_Unmarshal(b []byte) error

type AttributeContext_Response

type AttributeContext_Response struct {
	// The HTTP response status code, such as `200` and `404`.
	Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	// The HTTP response size in bytes. If unknown, it must be -1.
	Size int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	// The HTTP response headers. If multiple headers share the same key, they
	// must be merged according to HTTP spec. All header keys must be
	// lowercased, because HTTP header keys are case-insensitive.
	Headers map[string]string `` /* 155-byte string literal not displayed */
	// The timestamp when the `destination` service generates the first byte of
	// the response.
	Time                 *timestamp.Timestamp `protobuf:"bytes,4,opt,name=time,proto3" json:"time,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

This message defines attributes for a typical network response. It generally models semantics of an HTTP response.

func (*AttributeContext_Response) Descriptor

func (*AttributeContext_Response) Descriptor() ([]byte, []int)

func (*AttributeContext_Response) GetCode

func (m *AttributeContext_Response) GetCode() int64

func (*AttributeContext_Response) GetHeaders

func (m *AttributeContext_Response) GetHeaders() map[string]string

func (*AttributeContext_Response) GetSize

func (m *AttributeContext_Response) GetSize() int64

func (*AttributeContext_Response) GetTime

func (*AttributeContext_Response) ProtoMessage

func (*AttributeContext_Response) ProtoMessage()

func (*AttributeContext_Response) Reset

func (m *AttributeContext_Response) Reset()

func (*AttributeContext_Response) String

func (m *AttributeContext_Response) String() string

func (*AttributeContext_Response) XXX_DiscardUnknown

func (m *AttributeContext_Response) XXX_DiscardUnknown()

func (*AttributeContext_Response) XXX_Marshal

func (m *AttributeContext_Response) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AttributeContext_Response) XXX_Merge

func (m *AttributeContext_Response) XXX_Merge(src proto.Message)

func (*AttributeContext_Response) XXX_Size

func (m *AttributeContext_Response) XXX_Size() int

func (*AttributeContext_Response) XXX_Unmarshal

func (m *AttributeContext_Response) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL