blob: 247d919913059e36d91b9ec96116e61f2b683d61 [file] [log] [blame]
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/cloud/asset/v1beta1/asset_service.proto
package asset
import (
context "context"
fmt "fmt"
math "math"
proto "github.com/golang/protobuf/proto"
timestamp "github.com/golang/protobuf/ptypes/timestamp"
_ "google.golang.org/genproto/googleapis/api/annotations"
longrunning "google.golang.org/genproto/googleapis/longrunning"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
// Asset content type.
type ContentType int32
const (
// Unspecified content type.
ContentType_CONTENT_TYPE_UNSPECIFIED ContentType = 0
// Resource metadata.
ContentType_RESOURCE ContentType = 1
// The actual IAM policy set on a resource.
ContentType_IAM_POLICY ContentType = 2
)
var ContentType_name = map[int32]string{
0: "CONTENT_TYPE_UNSPECIFIED",
1: "RESOURCE",
2: "IAM_POLICY",
}
var ContentType_value = map[string]int32{
"CONTENT_TYPE_UNSPECIFIED": 0,
"RESOURCE": 1,
"IAM_POLICY": 2,
}
func (x ContentType) String() string {
return proto.EnumName(ContentType_name, int32(x))
}
func (ContentType) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_565cfbddaa85b7d6, []int{0}
}
// Export asset request.
type ExportAssetsRequest struct {
// Required. The relative name of the root asset. This can only be an
// organization number (such as "organizations/123"), a project ID (such as
// "projects/my-project-id"), a project number (such as "projects/12345"), or
// a folder number (such as "folders/123").
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// Timestamp to take an asset snapshot. This can only be set to a timestamp
// between 2018-10-02 UTC (inclusive) and the current time. If not specified,
// the current time will be used. Due to delays in resource data collection
// and indexing, there is a volatile window during which running the same
// query may get different results.
ReadTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=read_time,json=readTime,proto3" json:"read_time,omitempty"`
// A list of asset types of which to take a snapshot for. For example:
// "google.compute.Disk". If specified, only matching assets will be returned.
// See [Introduction to Cloud Asset
// Inventory](https://cloud.google.com/resource-manager/docs/cloud-asset-inventory/overview)
// for all supported asset types.
AssetTypes []string `protobuf:"bytes,3,rep,name=asset_types,json=assetTypes,proto3" json:"asset_types,omitempty"`
// Asset content type. If not specified, no content but the asset name will be
// returned.
ContentType ContentType `protobuf:"varint,4,opt,name=content_type,json=contentType,proto3,enum=google.cloud.asset.v1beta1.ContentType" json:"content_type,omitempty"`
// Required. Output configuration indicating where the results will be output
// to. All results will be in newline delimited JSON format.
OutputConfig *OutputConfig `protobuf:"bytes,5,opt,name=output_config,json=outputConfig,proto3" json:"output_config,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ExportAssetsRequest) Reset() { *m = ExportAssetsRequest{} }
func (m *ExportAssetsRequest) String() string { return proto.CompactTextString(m) }
func (*ExportAssetsRequest) ProtoMessage() {}
func (*ExportAssetsRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_565cfbddaa85b7d6, []int{0}
}
func (m *ExportAssetsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExportAssetsRequest.Unmarshal(m, b)
}
func (m *ExportAssetsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ExportAssetsRequest.Marshal(b, m, deterministic)
}
func (m *ExportAssetsRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ExportAssetsRequest.Merge(m, src)
}
func (m *ExportAssetsRequest) XXX_Size() int {
return xxx_messageInfo_ExportAssetsRequest.Size(m)
}
func (m *ExportAssetsRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ExportAssetsRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ExportAssetsRequest proto.InternalMessageInfo
func (m *ExportAssetsRequest) GetParent() string {
if m != nil {
return m.Parent
}
return ""
}
func (m *ExportAssetsRequest) GetReadTime() *timestamp.Timestamp {
if m != nil {
return m.ReadTime
}
return nil
}
func (m *ExportAssetsRequest) GetAssetTypes() []string {
if m != nil {
return m.AssetTypes
}
return nil
}
func (m *ExportAssetsRequest) GetContentType() ContentType {
if m != nil {
return m.ContentType
}
return ContentType_CONTENT_TYPE_UNSPECIFIED
}
func (m *ExportAssetsRequest) GetOutputConfig() *OutputConfig {
if m != nil {
return m.OutputConfig
}
return nil
}
// The export asset response. This message is returned by the
// [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
// method in the returned
// [google.longrunning.Operation.response][google.longrunning.Operation.response]
// field.
type ExportAssetsResponse struct {
// Time the snapshot was taken.
ReadTime *timestamp.Timestamp `protobuf:"bytes,1,opt,name=read_time,json=readTime,proto3" json:"read_time,omitempty"`
// Output configuration indicating where the results were output to.
// All results are in JSON format.
OutputConfig *OutputConfig `protobuf:"bytes,2,opt,name=output_config,json=outputConfig,proto3" json:"output_config,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ExportAssetsResponse) Reset() { *m = ExportAssetsResponse{} }
func (m *ExportAssetsResponse) String() string { return proto.CompactTextString(m) }
func (*ExportAssetsResponse) ProtoMessage() {}
func (*ExportAssetsResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_565cfbddaa85b7d6, []int{1}
}
func (m *ExportAssetsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExportAssetsResponse.Unmarshal(m, b)
}
func (m *ExportAssetsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ExportAssetsResponse.Marshal(b, m, deterministic)
}
func (m *ExportAssetsResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ExportAssetsResponse.Merge(m, src)
}
func (m *ExportAssetsResponse) XXX_Size() int {
return xxx_messageInfo_ExportAssetsResponse.Size(m)
}
func (m *ExportAssetsResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ExportAssetsResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ExportAssetsResponse proto.InternalMessageInfo
func (m *ExportAssetsResponse) GetReadTime() *timestamp.Timestamp {
if m != nil {
return m.ReadTime
}
return nil
}
func (m *ExportAssetsResponse) GetOutputConfig() *OutputConfig {
if m != nil {
return m.OutputConfig
}
return nil
}
// Batch get assets history request.
type BatchGetAssetsHistoryRequest struct {
// Required. The relative name of the root asset. It can only be an
// organization number (such as "organizations/123"), a project ID (such as
// "projects/my-project-id")", or a project number (such as "projects/12345").
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
// A list of the full names of the assets. For example:
// `//compute.googleapis.com/projects/my_project_123/zones/zone1/instances/instance1`.
// See [Resource
// Names](https://cloud.google.com/apis/design/resource_names#full_resource_name)
// for more info.
//
// The request becomes a no-op if the asset name list is empty, and the max
// size of the asset name list is 100 in one request.
AssetNames []string `protobuf:"bytes,2,rep,name=asset_names,json=assetNames,proto3" json:"asset_names,omitempty"`
// Optional. The content type.
ContentType ContentType `protobuf:"varint,3,opt,name=content_type,json=contentType,proto3,enum=google.cloud.asset.v1beta1.ContentType" json:"content_type,omitempty"`
// Optional. The time window for the asset history. Both start_time and
// end_time are optional and if set, it must be after 2018-10-02 UTC. If
// end_time is not set, it is default to current timestamp. If start_time is
// not set, the snapshot of the assets at end_time will be returned. The
// returned results contain all temporal assets whose time window overlap with
// read_time_window.
ReadTimeWindow *TimeWindow `protobuf:"bytes,4,opt,name=read_time_window,json=readTimeWindow,proto3" json:"read_time_window,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BatchGetAssetsHistoryRequest) Reset() { *m = BatchGetAssetsHistoryRequest{} }
func (m *BatchGetAssetsHistoryRequest) String() string { return proto.CompactTextString(m) }
func (*BatchGetAssetsHistoryRequest) ProtoMessage() {}
func (*BatchGetAssetsHistoryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_565cfbddaa85b7d6, []int{2}
}
func (m *BatchGetAssetsHistoryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BatchGetAssetsHistoryRequest.Unmarshal(m, b)
}
func (m *BatchGetAssetsHistoryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BatchGetAssetsHistoryRequest.Marshal(b, m, deterministic)
}
func (m *BatchGetAssetsHistoryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_BatchGetAssetsHistoryRequest.Merge(m, src)
}
func (m *BatchGetAssetsHistoryRequest) XXX_Size() int {
return xxx_messageInfo_BatchGetAssetsHistoryRequest.Size(m)
}
func (m *BatchGetAssetsHistoryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_BatchGetAssetsHistoryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_BatchGetAssetsHistoryRequest proto.InternalMessageInfo
func (m *BatchGetAssetsHistoryRequest) GetParent() string {
if m != nil {
return m.Parent
}
return ""
}
func (m *BatchGetAssetsHistoryRequest) GetAssetNames() []string {
if m != nil {
return m.AssetNames
}
return nil
}
func (m *BatchGetAssetsHistoryRequest) GetContentType() ContentType {
if m != nil {
return m.ContentType
}
return ContentType_CONTENT_TYPE_UNSPECIFIED
}
func (m *BatchGetAssetsHistoryRequest) GetReadTimeWindow() *TimeWindow {
if m != nil {
return m.ReadTimeWindow
}
return nil
}
// Batch get assets history response.
type BatchGetAssetsHistoryResponse struct {
// A list of assets with valid time windows.
Assets []*TemporalAsset `protobuf:"bytes,1,rep,name=assets,proto3" json:"assets,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BatchGetAssetsHistoryResponse) Reset() { *m = BatchGetAssetsHistoryResponse{} }
func (m *BatchGetAssetsHistoryResponse) String() string { return proto.CompactTextString(m) }
func (*BatchGetAssetsHistoryResponse) ProtoMessage() {}
func (*BatchGetAssetsHistoryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_565cfbddaa85b7d6, []int{3}
}
func (m *BatchGetAssetsHistoryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BatchGetAssetsHistoryResponse.Unmarshal(m, b)
}
func (m *BatchGetAssetsHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BatchGetAssetsHistoryResponse.Marshal(b, m, deterministic)
}
func (m *BatchGetAssetsHistoryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_BatchGetAssetsHistoryResponse.Merge(m, src)
}
func (m *BatchGetAssetsHistoryResponse) XXX_Size() int {
return xxx_messageInfo_BatchGetAssetsHistoryResponse.Size(m)
}
func (m *BatchGetAssetsHistoryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_BatchGetAssetsHistoryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_BatchGetAssetsHistoryResponse proto.InternalMessageInfo
func (m *BatchGetAssetsHistoryResponse) GetAssets() []*TemporalAsset {
if m != nil {
return m.Assets
}
return nil
}
// Output configuration for export assets destination.
type OutputConfig struct {
// Asset export destination.
//
// Types that are valid to be assigned to Destination:
// *OutputConfig_GcsDestination
Destination isOutputConfig_Destination `protobuf_oneof:"destination"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *OutputConfig) Reset() { *m = OutputConfig{} }
func (m *OutputConfig) String() string { return proto.CompactTextString(m) }
func (*OutputConfig) ProtoMessage() {}
func (*OutputConfig) Descriptor() ([]byte, []int) {
return fileDescriptor_565cfbddaa85b7d6, []int{4}
}
func (m *OutputConfig) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_OutputConfig.Unmarshal(m, b)
}
func (m *OutputConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_OutputConfig.Marshal(b, m, deterministic)
}
func (m *OutputConfig) XXX_Merge(src proto.Message) {
xxx_messageInfo_OutputConfig.Merge(m, src)
}
func (m *OutputConfig) XXX_Size() int {
return xxx_messageInfo_OutputConfig.Size(m)
}
func (m *OutputConfig) XXX_DiscardUnknown() {
xxx_messageInfo_OutputConfig.DiscardUnknown(m)
}
var xxx_messageInfo_OutputConfig proto.InternalMessageInfo
type isOutputConfig_Destination interface {
isOutputConfig_Destination()
}
type OutputConfig_GcsDestination struct {
GcsDestination *GcsDestination `protobuf:"bytes,1,opt,name=gcs_destination,json=gcsDestination,proto3,oneof"`
}
func (*OutputConfig_GcsDestination) isOutputConfig_Destination() {}
func (m *OutputConfig) GetDestination() isOutputConfig_Destination {
if m != nil {
return m.Destination
}
return nil
}
func (m *OutputConfig) GetGcsDestination() *GcsDestination {
if x, ok := m.GetDestination().(*OutputConfig_GcsDestination); ok {
return x.GcsDestination
}
return nil
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*OutputConfig) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*OutputConfig_GcsDestination)(nil),
}
}
// A Cloud Storage location.
type GcsDestination struct {
// Required.
//
// Types that are valid to be assigned to ObjectUri:
// *GcsDestination_Uri
// *GcsDestination_UriPrefix
ObjectUri isGcsDestination_ObjectUri `protobuf_oneof:"object_uri"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GcsDestination) Reset() { *m = GcsDestination{} }
func (m *GcsDestination) String() string { return proto.CompactTextString(m) }
func (*GcsDestination) ProtoMessage() {}
func (*GcsDestination) Descriptor() ([]byte, []int) {
return fileDescriptor_565cfbddaa85b7d6, []int{5}
}
func (m *GcsDestination) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GcsDestination.Unmarshal(m, b)
}
func (m *GcsDestination) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GcsDestination.Marshal(b, m, deterministic)
}
func (m *GcsDestination) XXX_Merge(src proto.Message) {
xxx_messageInfo_GcsDestination.Merge(m, src)
}
func (m *GcsDestination) XXX_Size() int {
return xxx_messageInfo_GcsDestination.Size(m)
}
func (m *GcsDestination) XXX_DiscardUnknown() {
xxx_messageInfo_GcsDestination.DiscardUnknown(m)
}
var xxx_messageInfo_GcsDestination proto.InternalMessageInfo
type isGcsDestination_ObjectUri interface {
isGcsDestination_ObjectUri()
}
type GcsDestination_Uri struct {
Uri string `protobuf:"bytes,1,opt,name=uri,proto3,oneof"`
}
type GcsDestination_UriPrefix struct {
UriPrefix string `protobuf:"bytes,2,opt,name=uri_prefix,json=uriPrefix,proto3,oneof"`
}
func (*GcsDestination_Uri) isGcsDestination_ObjectUri() {}
func (*GcsDestination_UriPrefix) isGcsDestination_ObjectUri() {}
func (m *GcsDestination) GetObjectUri() isGcsDestination_ObjectUri {
if m != nil {
return m.ObjectUri
}
return nil
}
func (m *GcsDestination) GetUri() string {
if x, ok := m.GetObjectUri().(*GcsDestination_Uri); ok {
return x.Uri
}
return ""
}
func (m *GcsDestination) GetUriPrefix() string {
if x, ok := m.GetObjectUri().(*GcsDestination_UriPrefix); ok {
return x.UriPrefix
}
return ""
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*GcsDestination) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*GcsDestination_Uri)(nil),
(*GcsDestination_UriPrefix)(nil),
}
}
func init() {
proto.RegisterEnum("google.cloud.asset.v1beta1.ContentType", ContentType_name, ContentType_value)
proto.RegisterType((*ExportAssetsRequest)(nil), "google.cloud.asset.v1beta1.ExportAssetsRequest")
proto.RegisterType((*ExportAssetsResponse)(nil), "google.cloud.asset.v1beta1.ExportAssetsResponse")
proto.RegisterType((*BatchGetAssetsHistoryRequest)(nil), "google.cloud.asset.v1beta1.BatchGetAssetsHistoryRequest")
proto.RegisterType((*BatchGetAssetsHistoryResponse)(nil), "google.cloud.asset.v1beta1.BatchGetAssetsHistoryResponse")
proto.RegisterType((*OutputConfig)(nil), "google.cloud.asset.v1beta1.OutputConfig")
proto.RegisterType((*GcsDestination)(nil), "google.cloud.asset.v1beta1.GcsDestination")
}
func init() {
proto.RegisterFile("google/cloud/asset/v1beta1/asset_service.proto", fileDescriptor_565cfbddaa85b7d6)
}
var fileDescriptor_565cfbddaa85b7d6 = []byte{
// 937 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xc1, 0x6f, 0x1b, 0xc5,
0x17, 0xce, 0xae, 0x7f, 0x8d, 0x9a, 0xb1, 0xeb, 0x5f, 0x18, 0x40, 0xb8, 0x56, 0x4a, 0xcc, 0x22,
0x11, 0x37, 0x52, 0x77, 0x15, 0xf7, 0x50, 0x1a, 0x84, 0x2a, 0xdb, 0x35, 0x89, 0x11, 0x89, 0xad,
0x8d, 0x53, 0xd4, 0x28, 0xd2, 0x6a, 0xbc, 0x1e, 0x6f, 0x06, 0xd9, 0x33, 0xcb, 0xcc, 0x6c, 0xdc,
0x82, 0xb8, 0xc0, 0x7f, 0x00, 0x77, 0xce, 0x88, 0x13, 0x7f, 0x04, 0xa7, 0x9c, 0x10, 0xdc, 0x51,
0x0f, 0xfc, 0x15, 0x48, 0x48, 0x68, 0x67, 0x76, 0x93, 0x75, 0xea, 0x6c, 0x09, 0xe2, 0x38, 0xef,
0x7d, 0xdf, 0x7b, 0x9f, 0xbf, 0x37, 0xfb, 0xc6, 0xc0, 0x0e, 0x18, 0x0b, 0x26, 0xd8, 0xf1, 0x27,
0x2c, 0x1a, 0x39, 0x48, 0x08, 0x2c, 0x9d, 0xd3, 0xad, 0x21, 0x96, 0x68, 0x4b, 0x9f, 0x3c, 0x81,
0xf9, 0x29, 0xf1, 0xb1, 0x1d, 0x72, 0x26, 0x19, 0xac, 0x6a, 0xbc, 0xad, 0xf0, 0xb6, 0x42, 0xd8,
0x09, 0xbe, 0xba, 0x96, 0xd4, 0x42, 0x21, 0x71, 0x10, 0xa5, 0x4c, 0x22, 0x49, 0x18, 0x15, 0x9a,
0x59, 0x7d, 0x2b, 0x93, 0xf5, 0x27, 0x04, 0x53, 0x99, 0x24, 0xd6, 0x33, 0x89, 0x31, 0xc1, 0x93,
0x91, 0x37, 0xc4, 0x27, 0xe8, 0x94, 0x30, 0x9e, 0x00, 0x6e, 0x67, 0x00, 0x1c, 0x0b, 0x16, 0xf1,
0x54, 0x4e, 0x75, 0xe3, 0x55, 0xf2, 0xd3, 0xee, 0xef, 0x26, 0xc0, 0x09, 0xa3, 0x01, 0x8f, 0x28,
0x25, 0x34, 0x70, 0x58, 0x88, 0xf9, 0x9c, 0xc4, 0x54, 0x89, 0x3a, 0x0d, 0xa3, 0xb1, 0x23, 0xc9,
0x14, 0x0b, 0x89, 0xa6, 0xa1, 0x06, 0x58, 0xbf, 0x98, 0xe0, 0xf5, 0xce, 0xb3, 0x90, 0x71, 0xd9,
0x54, 0xc5, 0x5d, 0xfc, 0x79, 0x84, 0x85, 0x84, 0x8f, 0xc0, 0x72, 0x88, 0x38, 0xa6, 0xb2, 0x62,
0xd4, 0x8c, 0xfa, 0x4a, 0x6b, 0xe3, 0x45, 0xd3, 0xfc, 0xb3, 0xf9, 0x0e, 0x5c, 0x57, 0xba, 0xb4,
0x4b, 0xba, 0x36, 0x0a, 0x89, 0xb0, 0x7d, 0x36, 0x75, 0x54, 0x01, 0x37, 0xa1, 0xc1, 0x07, 0x60,
0x85, 0x63, 0x34, 0xf2, 0xe2, 0x86, 0x15, 0xb3, 0x66, 0xd4, 0x8b, 0x8d, 0x6a, 0xc2, 0xb0, 0x53,
0x35, 0xf6, 0x20, 0x55, 0xe3, 0xde, 0x8c, 0xc1, 0xf1, 0x11, 0xae, 0x83, 0xa2, 0x1e, 0x93, 0x7c,
0x1e, 0x62, 0x51, 0x29, 0xd4, 0x0a, 0xf5, 0x15, 0x17, 0xa8, 0xd0, 0x20, 0x8e, 0xc0, 0x8f, 0x41,
0xc9, 0x67, 0x54, 0x62, 0xaa, 0x21, 0x95, 0xff, 0xd5, 0x8c, 0x7a, 0xb9, 0xb1, 0x61, 0x5f, 0x3d,
0x47, 0xbb, 0xad, 0xf1, 0x31, 0xdf, 0x2d, 0xfa, 0x17, 0x07, 0xe8, 0x82, 0x5b, 0x2c, 0x92, 0x61,
0x24, 0x3d, 0x9f, 0xd1, 0x31, 0x09, 0x2a, 0x37, 0x94, 0xd2, 0x7a, 0x5e, 0xb1, 0x9e, 0x22, 0xb4,
0x15, 0xbe, 0x55, 0x78, 0xd1, 0x34, 0xdd, 0x12, 0xcb, 0x84, 0xac, 0xef, 0x0d, 0xf0, 0xc6, 0xbc,
0xa5, 0x22, 0x64, 0x54, 0xe0, 0x79, 0x4b, 0x8c, 0x6b, 0x58, 0xb2, 0x77, 0x59, 0xa5, 0x79, 0x3d,
0x95, 0x97, 0x04, 0xfe, 0x60, 0x82, 0xb5, 0x16, 0x92, 0xfe, 0xc9, 0x0e, 0x4e, 0x24, 0xee, 0x12,
0x21, 0x19, 0x7f, 0xfe, 0x9f, 0x0d, 0xff, 0x7c, 0x86, 0x14, 0x4d, 0xb1, 0xa8, 0x98, 0x99, 0x19,
0xee, 0xc7, 0x11, 0xd8, 0xbb, 0x34, 0xc3, 0xc2, 0xb5, 0x66, 0x18, 0xbb, 0x6e, 0xcc, 0x0f, 0xf2,
0x10, 0xac, 0x9e, 0x7b, 0xeb, 0xcd, 0x08, 0x1d, 0xb1, 0x99, 0xba, 0x18, 0xc5, 0xc6, 0x7b, 0x79,
0x45, 0x63, 0x7b, 0x3f, 0x55, 0x68, 0x5d, 0xb3, 0x9c, 0x7a, 0xae, 0x83, 0xd6, 0x10, 0xdc, 0xb9,
0xc2, 0xa9, 0x64, 0xa6, 0x4d, 0xb0, 0xac, 0xbf, 0xca, 0x8a, 0x51, 0x2b, 0xd4, 0x8b, 0x8d, 0xbb,
0xb9, 0xdd, 0xf0, 0x34, 0x64, 0x1c, 0x4d, 0x12, 0xb3, 0x34, 0xd1, 0x92, 0xa0, 0x94, 0x1d, 0x16,
0x3c, 0x04, 0xff, 0x0f, 0x7c, 0xe1, 0x8d, 0xb0, 0x90, 0x84, 0xaa, 0xaf, 0x39, 0xb9, 0x2c, 0x9b,
0x79, 0xb5, 0x77, 0x7c, 0xf1, 0xf8, 0x82, 0xb1, 0xbb, 0xe4, 0x96, 0x83, 0xb9, 0x48, 0xeb, 0x16,
0x28, 0x66, 0x4a, 0x5a, 0x07, 0xa0, 0x3c, 0x4f, 0x81, 0x10, 0x14, 0x22, 0x4e, 0xf4, 0xc8, 0x77,
0x97, 0xdc, 0xf8, 0x00, 0xd7, 0x01, 0x88, 0x38, 0xf1, 0x42, 0x8e, 0xc7, 0xe4, 0x99, 0xba, 0x76,
0x71, 0x6a, 0x25, 0xe2, 0xa4, 0xaf, 0x42, 0xad, 0x12, 0x00, 0x6c, 0xf8, 0x19, 0xf6, 0xa5, 0x17,
0x71, 0xb2, 0xd9, 0x05, 0xc5, 0xcc, 0x98, 0xe0, 0x1a, 0xa8, 0xb4, 0x7b, 0xfb, 0x83, 0xce, 0xfe,
0xc0, 0x1b, 0x3c, 0xed, 0x77, 0xbc, 0xc3, 0xfd, 0x83, 0x7e, 0xa7, 0xdd, 0xfd, 0xa8, 0xdb, 0x79,
0xbc, 0xba, 0x04, 0x4b, 0xe0, 0xa6, 0xdb, 0x39, 0xe8, 0x1d, 0xba, 0xed, 0xce, 0xaa, 0x01, 0xcb,
0x00, 0x74, 0x9b, 0x7b, 0x5e, 0xbf, 0xf7, 0x49, 0xb7, 0xfd, 0x74, 0xd5, 0x6c, 0xfc, 0x7c, 0x03,
0x94, 0x94, 0x4f, 0x07, 0x7a, 0x5b, 0xc3, 0xdf, 0x4d, 0x50, 0xca, 0x7e, 0x56, 0xd0, 0xc9, 0xb3,
0x63, 0xc1, 0x4e, 0xab, 0xde, 0x49, 0x09, 0x99, 0x95, 0x69, 0xf7, 0xd2, 0x95, 0x69, 0xfd, 0x65,
0x9c, 0x35, 0x11, 0x70, 0xfe, 0x71, 0xd1, 0xe4, 0x06, 0x5c, 0x53, 0xc5, 0xd7, 0xbf, 0xfd, 0xf1,
0x9d, 0xf9, 0xad, 0x61, 0xdd, 0x3d, 0xdf, 0xea, 0x5f, 0xea, 0x8f, 0xe6, 0xc3, 0x90, 0xb3, 0xd8,
0x48, 0xe1, 0x6c, 0x7e, 0xb5, 0x8d, 0x33, 0xc4, 0x6d, 0x63, 0xf3, 0xe8, 0x9e, 0x55, 0x7f, 0x09,
0x3f, 0x66, 0x93, 0x11, 0xe6, 0x0b, 0xe1, 0xf7, 0x2d, 0xfb, 0x25, 0x38, 0xe3, 0x01, 0xa2, 0xe4,
0x0b, 0xfd, 0x3c, 0x2c, 0x20, 0xc1, 0x6f, 0x4c, 0xf0, 0xe6, 0xc2, 0xcb, 0x0e, 0xdf, 0xcf, 0xfb,
0x8d, 0x79, 0x9b, 0xa4, 0xfa, 0xf0, 0x5f, 0x30, 0xb5, 0xaf, 0x56, 0xa4, 0x9c, 0x62, 0xb0, 0x91,
0x6b, 0xd4, 0x70, 0x51, 0x8d, 0xa3, 0x87, 0xf0, 0xc1, 0xab, 0x7f, 0xff, 0x42, 0x6a, 0x75, 0xef,
0xac, 0x79, 0xfb, 0xca, 0x35, 0xf7, 0x6b, 0xd3, 0x3e, 0x91, 0x32, 0x14, 0xdb, 0x8e, 0x33, 0x9b,
0xcd, 0x2e, 0xef, 0x40, 0x14, 0xc9, 0x13, 0xfd, 0x6e, 0xdf, 0x0b, 0x27, 0x48, 0x8e, 0x19, 0x9f,
0xb6, 0x7e, 0x32, 0xc0, 0xdb, 0x3e, 0x9b, 0xe6, 0xd8, 0xd0, 0x7a, 0x2d, 0x7b, 0xcd, 0xfb, 0xf1,
0x3b, 0xd0, 0x37, 0x8e, 0x1e, 0x25, 0x84, 0x80, 0x4d, 0x10, 0x0d, 0x6c, 0xc6, 0x03, 0x27, 0xc0,
0x54, 0xbd, 0x12, 0xce, 0x45, 0xdb, 0x45, 0xff, 0x12, 0x3e, 0x50, 0xa7, 0x1f, 0xcd, 0xea, 0x8e,
0xae, 0xd0, 0x56, 0x2d, 0x55, 0x0f, 0xfb, 0xc9, 0x56, 0x2b, 0x86, 0x9c, 0xa5, 0xc9, 0x63, 0x95,
0x3c, 0x56, 0xc9, 0xe3, 0x27, 0x9a, 0x3f, 0x5c, 0x56, 0x5d, 0xee, 0xff, 0x1d, 0x00, 0x00, 0xff,
0xff, 0xc4, 0xf0, 0xc7, 0x16, 0x49, 0x09, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConnInterface
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion6
// AssetServiceClient is the client API for AssetService service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type AssetServiceClient interface {
// Exports assets with time and resource types to a given Cloud Storage
// location. The output format is newline-delimited JSON.
// This API implements the
// [google.longrunning.Operation][google.longrunning.Operation] API allowing
// you to keep track of the export.
ExportAssets(ctx context.Context, in *ExportAssetsRequest, opts ...grpc.CallOption) (*longrunning.Operation, error)
// Batch gets the update history of assets that overlap a time window.
// For RESOURCE content, this API outputs history with asset in both
// non-delete or deleted status.
// For IAM_POLICY content, this API outputs history when the asset and its
// attached IAM POLICY both exist. This can create gaps in the output history.
// If a specified asset does not exist, this API returns an INVALID_ARGUMENT
// error.
BatchGetAssetsHistory(ctx context.Context, in *BatchGetAssetsHistoryRequest, opts ...grpc.CallOption) (*BatchGetAssetsHistoryResponse, error)
}
type assetServiceClient struct {
cc grpc.ClientConnInterface
}
func NewAssetServiceClient(cc grpc.ClientConnInterface) AssetServiceClient {
return &assetServiceClient{cc}
}
func (c *assetServiceClient) ExportAssets(ctx context.Context, in *ExportAssetsRequest, opts ...grpc.CallOption) (*longrunning.Operation, error) {
out := new(longrunning.Operation)
err := c.cc.Invoke(ctx, "/google.cloud.asset.v1beta1.AssetService/ExportAssets", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *assetServiceClient) BatchGetAssetsHistory(ctx context.Context, in *BatchGetAssetsHistoryRequest, opts ...grpc.CallOption) (*BatchGetAssetsHistoryResponse, error) {
out := new(BatchGetAssetsHistoryResponse)
err := c.cc.Invoke(ctx, "/google.cloud.asset.v1beta1.AssetService/BatchGetAssetsHistory", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// AssetServiceServer is the server API for AssetService service.
type AssetServiceServer interface {
// Exports assets with time and resource types to a given Cloud Storage
// location. The output format is newline-delimited JSON.
// This API implements the
// [google.longrunning.Operation][google.longrunning.Operation] API allowing
// you to keep track of the export.
ExportAssets(context.Context, *ExportAssetsRequest) (*longrunning.Operation, error)
// Batch gets the update history of assets that overlap a time window.
// For RESOURCE content, this API outputs history with asset in both
// non-delete or deleted status.
// For IAM_POLICY content, this API outputs history when the asset and its
// attached IAM POLICY both exist. This can create gaps in the output history.
// If a specified asset does not exist, this API returns an INVALID_ARGUMENT
// error.
BatchGetAssetsHistory(context.Context, *BatchGetAssetsHistoryRequest) (*BatchGetAssetsHistoryResponse, error)
}
// UnimplementedAssetServiceServer can be embedded to have forward compatible implementations.
type UnimplementedAssetServiceServer struct {
}
func (*UnimplementedAssetServiceServer) ExportAssets(ctx context.Context, req *ExportAssetsRequest) (*longrunning.Operation, error) {
return nil, status.Errorf(codes.Unimplemented, "method ExportAssets not implemented")
}
func (*UnimplementedAssetServiceServer) BatchGetAssetsHistory(ctx context.Context, req *BatchGetAssetsHistoryRequest) (*BatchGetAssetsHistoryResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method BatchGetAssetsHistory not implemented")
}
func RegisterAssetServiceServer(s *grpc.Server, srv AssetServiceServer) {
s.RegisterService(&_AssetService_serviceDesc, srv)
}
func _AssetService_ExportAssets_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ExportAssetsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AssetServiceServer).ExportAssets(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.cloud.asset.v1beta1.AssetService/ExportAssets",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AssetServiceServer).ExportAssets(ctx, req.(*ExportAssetsRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AssetService_BatchGetAssetsHistory_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(BatchGetAssetsHistoryRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AssetServiceServer).BatchGetAssetsHistory(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.cloud.asset.v1beta1.AssetService/BatchGetAssetsHistory",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AssetServiceServer).BatchGetAssetsHistory(ctx, req.(*BatchGetAssetsHistoryRequest))
}
return interceptor(ctx, in, info, handler)
}
var _AssetService_serviceDesc = grpc.ServiceDesc{
ServiceName: "google.cloud.asset.v1beta1.AssetService",
HandlerType: (*AssetServiceServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "ExportAssets",
Handler: _AssetService_ExportAssets_Handler,
},
{
MethodName: "BatchGetAssetsHistory",
Handler: _AssetService_BatchGetAssetsHistory_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "google/cloud/asset/v1beta1/asset_service.proto",
}