-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbucket.pb.go
More file actions
49 lines (41 loc) · 1.58 KB
/
bucket.pb.go
File metadata and controls
49 lines (41 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package ccloud
import (
proto "github.com/golang/protobuf/proto"
)
type CreateExternalIdentityResponse struct {
IdentityName string `protobuf:"bytes,1,opt,name=identity_name,json=identityName,proto3" json:"identity_name,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateExternalIdentityResponse) Reset() { *m = CreateExternalIdentityResponse{} }
func (m *CreateExternalIdentityResponse) String() string { return proto.CompactTextString(m) }
func (*CreateExternalIdentityResponse) ProtoMessage() {}
func (m *CreateExternalIdentityResponse) GetIdentityName() string {
if m != nil {
return m.IdentityName
}
return ""
}
type CreateExternalIdentityRequest struct {
AccountId string `protobuf:"bytes,1,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
Cloud string `protobuf:"bytes,2,opt,name=cloud,proto3" json:"cloud,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateExternalIdentityRequest) Reset() { *m = CreateExternalIdentityRequest{} }
func (m *CreateExternalIdentityRequest) String() string { return proto.CompactTextString(m) }
func (*CreateExternalIdentityRequest) ProtoMessage() {}
func (m *CreateExternalIdentityRequest) GetAccountId() string {
if m != nil {
return m.AccountId
}
return ""
}
func (m *CreateExternalIdentityRequest) GetCloud() string {
if m != nil {
return m.Cloud
}
return ""
}