diff --git a/pkg/apis/v1/api.pb.go b/pkg/apis/v1/api.pb.go index 2d1c8b49..474257e9 100644 --- a/pkg/apis/v1/api.pb.go +++ b/pkg/apis/v1/api.pb.go @@ -739,6 +739,84 @@ func (ReceiverInfo_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor_9943feda3d652502, []int{78, 0} } +type RecipientInfo_Type int32 + +const ( + RecipientInfo_INVALID RecipientInfo_Type = 0 + RecipientInfo_EMAIL RecipientInfo_Type = 1 +) + +var RecipientInfo_Type_name = map[int32]string{ + 0: "INVALID", + 1: "EMAIL", +} + +var RecipientInfo_Type_value = map[string]int32{ + "INVALID": 0, + "EMAIL": 1, +} + +func (x RecipientInfo_Type) String() string { + return proto.EnumName(RecipientInfo_Type_name, int32(x)) +} + +func (RecipientInfo_Type) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{91, 0} +} + +type RecipientInfo_Severity int32 + +const ( + RecipientInfo_UNKNOWN RecipientInfo_Severity = 0 + RecipientInfo_CRITICAL RecipientInfo_Severity = 1 + RecipientInfo_WARNING RecipientInfo_Severity = 2 +) + +var RecipientInfo_Severity_name = map[int32]string{ + 0: "UNKNOWN", + 1: "CRITICAL", + 2: "WARNING", +} + +var RecipientInfo_Severity_value = map[string]int32{ + "UNKNOWN": 0, + "CRITICAL": 1, + "WARNING": 2, +} + +func (x RecipientInfo_Severity) String() string { + return proto.EnumName(RecipientInfo_Severity_name, int32(x)) +} + +func (RecipientInfo_Severity) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{91, 1} +} + +type RecipientEnumerateRequest_Type int32 + +const ( + RecipientEnumerateRequest_INVALID RecipientEnumerateRequest_Type = 0 + RecipientEnumerateRequest_EMAIL RecipientEnumerateRequest_Type = 1 +) + +var RecipientEnumerateRequest_Type_name = map[int32]string{ + 0: "INVALID", + 1: "EMAIL", +} + +var RecipientEnumerateRequest_Type_value = map[string]int32{ + "INVALID": 0, + "EMAIL": 1, +} + +func (x RecipientEnumerateRequest_Type) String() string { + return proto.EnumName(RecipientEnumerateRequest_Type_name, int32(x)) +} + +func (RecipientEnumerateRequest_Type) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{94, 0} +} + type BackupCreateRequest_BackupType int32 const ( @@ -764,7 +842,7 @@ func (x BackupCreateRequest_BackupType) String() string { } func (BackupCreateRequest_BackupType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{106, 0} + return fileDescriptor_9943feda3d652502, []int{118, 0} } // Cloud provider type @@ -796,7 +874,7 @@ func (x ManagedClusterEnumerateRequest_Provider) String() string { } func (ManagedClusterEnumerateRequest_Provider) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{161, 0} + return fileDescriptor_9943feda3d652502, []int{173, 0} } // Status hold if the cluster is already present in datastore or not @@ -825,7 +903,7 @@ func (x ManagedClusterObject_Status) String() string { } func (ManagedClusterObject_Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{162, 0} + return fileDescriptor_9943feda3d652502, []int{174, 0} } // Cloud provider type @@ -857,7 +935,7 @@ func (x ManagedClusterEnumerateResponse_Provider) String() string { } func (ManagedClusterEnumerateResponse_Provider) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{163, 0} + return fileDescriptor_9943feda3d652502, []int{175, 0} } // Cloud provider type @@ -889,7 +967,7 @@ func (x ManagedClusterInspectRequest_Provider) String() string { } func (ManagedClusterInspectRequest_Provider) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{164, 0} + return fileDescriptor_9943feda3d652502, []int{176, 0} } // Cloud provider type @@ -921,7 +999,7 @@ func (x ManagedClusterBulkAddRequest_Provider) String() string { } func (ManagedClusterBulkAddRequest_Provider) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{166, 0} + return fileDescriptor_9943feda3d652502, []int{178, 0} } type ActivityEnumerateRequest_Interval int32 @@ -949,7 +1027,7 @@ func (x ActivityEnumerateRequest_Interval) String() string { } func (ActivityEnumerateRequest_Interval) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{168, 0} + return fileDescriptor_9943feda3d652502, []int{180, 0} } type ActivityDataObject_Status int32 @@ -986,7 +1064,7 @@ func (x ActivityDataObject_Status) String() string { } func (ActivityDataObject_Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{185, 0} + return fileDescriptor_9943feda3d652502, []int{197, 0} } type OrganizationObject struct { @@ -7702,21 +7780,20 @@ var xxx_messageInfo_CloudCredentialOwnershipUpdateResponse proto.InternalMessage type EmailConfig struct { // * Sender email address - From string `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"` - // * receiver email - Receiver []string `protobuf:"bytes,4,rep,name=receiver,proto3" json:"receiver,omitempty"` + From string `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"` + // * receiver email, User level set of receiver emails list + // repeated ObjectRef recipient_ref = 2; // * Host IP Address - Host string `protobuf:"bytes,5,opt,name=host,proto3" json:"host,omitempty"` + Host string `protobuf:"bytes,3,opt,name=host,proto3" json:"host,omitempty"` // * Host port default value is 25 - Port string `protobuf:"bytes,6,opt,name=port,proto3" json:"port,omitempty"` - SendResolved bool `protobuf:"varint,7,opt,name=send_resolved,json=sendResolved,proto3" json:"send_resolved,omitempty"` - // * Encrytion if any (optional) default value is false - EncrytionSsl bool `protobuf:"varint,8,opt,name=encrytion_ssl,json=encrytionSsl,proto3" json:"encrytion_ssl,omitempty"` - EncryptionStarttls bool `protobuf:"varint,9,opt,name=encryption_starttls,json=encryptionStarttls,proto3" json:"encryption_starttls,omitempty"` + Port string `protobuf:"bytes,4,opt,name=port,proto3" json:"port,omitempty"` + // * Encryption if any (optional) default value is false + EncrytionSsl bool `protobuf:"varint,6,opt,name=encrytion_ssl,json=encrytionSsl,proto3" json:"encrytion_ssl,omitempty"` + EncryptionStarttls bool `protobuf:"varint,7,opt,name=encryption_starttls,json=encryptionStarttls,proto3" json:"encryption_starttls,omitempty"` // * Authentication if any (optional) default values is false - Authentication bool `protobuf:"varint,10,opt,name=authentication,proto3" json:"authentication,omitempty"` - AuthUsername string `protobuf:"bytes,11,opt,name=auth_username,json=authUsername,proto3" json:"auth_username,omitempty"` - AuthPassword string `protobuf:"bytes,12,opt,name=auth_password,json=authPassword,proto3" json:"encryptionkey" secure:"true"` + Authentication bool `protobuf:"varint,8,opt,name=authentication,proto3" json:"authentication,omitempty"` + AuthUsername string `protobuf:"bytes,9,opt,name=auth_username,json=authUsername,proto3" json:"auth_username,omitempty"` + AuthPassword string `protobuf:"bytes,10,opt,name=auth_password,json=authPassword,proto3" json:"encryptionkey" secure:"true"` } func (m *EmailConfig) Reset() { *m = EmailConfig{} } @@ -7759,13 +7836,6 @@ func (m *EmailConfig) GetFrom() string { return "" } -func (m *EmailConfig) GetReceiver() []string { - if m != nil { - return m.Receiver - } - return nil -} - func (m *EmailConfig) GetHost() string { if m != nil { return m.Host @@ -7780,13 +7850,6 @@ func (m *EmailConfig) GetPort() string { return "" } -func (m *EmailConfig) GetSendResolved() bool { - if m != nil { - return m.SendResolved - } - return false -} - func (m *EmailConfig) GetEncrytionSsl() bool { if m != nil { return m.EncrytionSsl @@ -7824,6 +7887,8 @@ func (m *EmailConfig) GetAuthPassword() string { type ReceiverInfo struct { Type ReceiverInfo_Type `protobuf:"varint,1,opt,name=type,proto3,enum=ReceiverInfo_Type" json:"type,omitempty"` + // * True if px-backup validates the receiver setup + Valid bool `protobuf:"varint,2,opt,name=valid,proto3" json:"valid,omitempty"` // Types that are valid to be assigned to Config: // // *ReceiverInfo_EmailConfig @@ -7890,6 +7955,13 @@ func (m *ReceiverInfo) GetType() ReceiverInfo_Type { return ReceiverInfo_INVALID } +func (m *ReceiverInfo) GetValid() bool { + if m != nil { + return m.Valid + } + return false +} + func (m *ReceiverInfo) GetEmailConfig() *EmailConfig { if x, ok := m.GetConfig().(*ReceiverInfo_EmailConfig); ok { return x.EmailConfig @@ -8131,6 +8203,7 @@ type ReceiverInspectRequest struct { Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` IncludeSecrets bool `protobuf:"varint,3,opt,name=include_secrets,json=includeSecrets,proto3" json:"include_secrets,omitempty"` Uid string `protobuf:"bytes,4,opt,name=uid,proto3" json:"uid,omitempty"` + Type string `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"` } func (m *ReceiverInspectRequest) Reset() { *m = ReceiverInspectRequest{} } @@ -8194,6 +8267,13 @@ func (m *ReceiverInspectRequest) GetUid() string { return "" } +func (m *ReceiverInspectRequest) GetType() string { + if m != nil { + return m.Type + } + return "" +} + type ReceiverInspectResponse struct { Receiver *ReceiverObject `protobuf:"bytes,1,opt,name=receiver,proto3" json:"receiver,omitempty"` } @@ -8415,6 +8495,599 @@ func (m *ReceiverDeleteResponse) XXX_DiscardUnknown() { var xxx_messageInfo_ReceiverDeleteResponse proto.InternalMessageInfo +type RecipientObject struct { + *Metadata `protobuf:"bytes,1,opt,name=metadata,proto3,embedded=metadata" json:"metadata"` + RecipientInfo *RecipientInfo `protobuf:"bytes,2,opt,name=recipient_info,json=recipientInfo,proto3" json:"recipient_info,omitempty"` +} + +func (m *RecipientObject) Reset() { *m = RecipientObject{} } +func (m *RecipientObject) String() string { return proto.CompactTextString(m) } +func (*RecipientObject) ProtoMessage() {} +func (*RecipientObject) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{90} +} +func (m *RecipientObject) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientObject) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientObject.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientObject) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientObject.Merge(m, src) +} +func (m *RecipientObject) XXX_Size() int { + return m.Size() +} +func (m *RecipientObject) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientObject.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientObject proto.InternalMessageInfo + +func (m *RecipientObject) GetRecipientInfo() *RecipientInfo { + if m != nil { + return m.RecipientInfo + } + return nil +} + +type RecipientInfo struct { + // * Type of notification on user level + Type RecipientInfo_Type `protobuf:"varint,1,opt,name=type,proto3,enum=RecipientInfo_Type" json:"type,omitempty"` + // * Based on type recipient list is added + RecipientId []string `protobuf:"bytes,2,rep,name=recipient_id,json=recipientId,proto3" json:"recipient_id,omitempty"` + // * current status set by user + Active bool `protobuf:"varint,3,opt,name=active,proto3" json:"active,omitempty"` + // * Filter level of alert by severity + Severity RecipientInfo_Severity `protobuf:"varint,5,opt,name=severity,proto3,enum=RecipientInfo_Severity" json:"severity,omitempty"` +} + +func (m *RecipientInfo) Reset() { *m = RecipientInfo{} } +func (m *RecipientInfo) String() string { return proto.CompactTextString(m) } +func (*RecipientInfo) ProtoMessage() {} +func (*RecipientInfo) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{91} +} +func (m *RecipientInfo) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientInfo.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientInfo) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientInfo.Merge(m, src) +} +func (m *RecipientInfo) XXX_Size() int { + return m.Size() +} +func (m *RecipientInfo) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientInfo.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientInfo proto.InternalMessageInfo + +func (m *RecipientInfo) GetType() RecipientInfo_Type { + if m != nil { + return m.Type + } + return RecipientInfo_INVALID +} + +func (m *RecipientInfo) GetRecipientId() []string { + if m != nil { + return m.RecipientId + } + return nil +} + +func (m *RecipientInfo) GetActive() bool { + if m != nil { + return m.Active + } + return false +} + +func (m *RecipientInfo) GetSeverity() RecipientInfo_Severity { + if m != nil { + return m.Severity + } + return RecipientInfo_UNKNOWN +} + +type RecipientCreateRequest struct { + *CreateMetadata `protobuf:"bytes,1,opt,name=metadata,proto3,embedded=metadata" json:"metadata,omitempty"` + RecipientInfo *RecipientInfo `protobuf:"bytes,2,opt,name=recipient_info,json=recipientInfo,proto3" json:"recipient_info,omitempty"` +} + +func (m *RecipientCreateRequest) Reset() { *m = RecipientCreateRequest{} } +func (m *RecipientCreateRequest) String() string { return proto.CompactTextString(m) } +func (*RecipientCreateRequest) ProtoMessage() {} +func (*RecipientCreateRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{92} +} +func (m *RecipientCreateRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientCreateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientCreateRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientCreateRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientCreateRequest.Merge(m, src) +} +func (m *RecipientCreateRequest) XXX_Size() int { + return m.Size() +} +func (m *RecipientCreateRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientCreateRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientCreateRequest proto.InternalMessageInfo + +func (m *RecipientCreateRequest) GetRecipientInfo() *RecipientInfo { + if m != nil { + return m.RecipientInfo + } + return nil +} + +type RecipientCreateResponse struct { +} + +func (m *RecipientCreateResponse) Reset() { *m = RecipientCreateResponse{} } +func (m *RecipientCreateResponse) String() string { return proto.CompactTextString(m) } +func (*RecipientCreateResponse) ProtoMessage() {} +func (*RecipientCreateResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{93} +} +func (m *RecipientCreateResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientCreateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientCreateResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientCreateResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientCreateResponse.Merge(m, src) +} +func (m *RecipientCreateResponse) XXX_Size() int { + return m.Size() +} +func (m *RecipientCreateResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientCreateResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientCreateResponse proto.InternalMessageInfo + +type RecipientEnumerateRequest struct { + OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"` + // * Type of notification on user level + Type RecipientEnumerateRequest_Type `protobuf:"varint,2,opt,name=type,proto3,enum=RecipientEnumerateRequest_Type" json:"type,omitempty"` +} + +func (m *RecipientEnumerateRequest) Reset() { *m = RecipientEnumerateRequest{} } +func (m *RecipientEnumerateRequest) String() string { return proto.CompactTextString(m) } +func (*RecipientEnumerateRequest) ProtoMessage() {} +func (*RecipientEnumerateRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{94} +} +func (m *RecipientEnumerateRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientEnumerateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientEnumerateRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientEnumerateRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientEnumerateRequest.Merge(m, src) +} +func (m *RecipientEnumerateRequest) XXX_Size() int { + return m.Size() +} +func (m *RecipientEnumerateRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientEnumerateRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientEnumerateRequest proto.InternalMessageInfo + +func (m *RecipientEnumerateRequest) GetOrgId() string { + if m != nil { + return m.OrgId + } + return "" +} + +func (m *RecipientEnumerateRequest) GetType() RecipientEnumerateRequest_Type { + if m != nil { + return m.Type + } + return RecipientEnumerateRequest_INVALID +} + +type RecipientEnumerateResponse struct { + Recipients []*RecipientObject `protobuf:"bytes,1,rep,name=recipients,proto3" json:"recipients,omitempty"` + // * Enabled will be an in memory value always fetched from Recevier Info + Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"` +} + +func (m *RecipientEnumerateResponse) Reset() { *m = RecipientEnumerateResponse{} } +func (m *RecipientEnumerateResponse) String() string { return proto.CompactTextString(m) } +func (*RecipientEnumerateResponse) ProtoMessage() {} +func (*RecipientEnumerateResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{95} +} +func (m *RecipientEnumerateResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientEnumerateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientEnumerateResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientEnumerateResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientEnumerateResponse.Merge(m, src) +} +func (m *RecipientEnumerateResponse) XXX_Size() int { + return m.Size() +} +func (m *RecipientEnumerateResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientEnumerateResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientEnumerateResponse proto.InternalMessageInfo + +func (m *RecipientEnumerateResponse) GetRecipients() []*RecipientObject { + if m != nil { + return m.Recipients + } + return nil +} + +func (m *RecipientEnumerateResponse) GetEnabled() bool { + if m != nil { + return m.Enabled + } + return false +} + +type RecipientInspectRequest struct { + OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + Uid string `protobuf:"bytes,3,opt,name=uid,proto3" json:"uid,omitempty"` + IncludeSecrets bool `protobuf:"varint,4,opt,name=include_secrets,json=includeSecrets,proto3" json:"include_secrets,omitempty"` +} + +func (m *RecipientInspectRequest) Reset() { *m = RecipientInspectRequest{} } +func (m *RecipientInspectRequest) String() string { return proto.CompactTextString(m) } +func (*RecipientInspectRequest) ProtoMessage() {} +func (*RecipientInspectRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{96} +} +func (m *RecipientInspectRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientInspectRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientInspectRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientInspectRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientInspectRequest.Merge(m, src) +} +func (m *RecipientInspectRequest) XXX_Size() int { + return m.Size() +} +func (m *RecipientInspectRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientInspectRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientInspectRequest proto.InternalMessageInfo + +func (m *RecipientInspectRequest) GetOrgId() string { + if m != nil { + return m.OrgId + } + return "" +} + +func (m *RecipientInspectRequest) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *RecipientInspectRequest) GetUid() string { + if m != nil { + return m.Uid + } + return "" +} + +func (m *RecipientInspectRequest) GetIncludeSecrets() bool { + if m != nil { + return m.IncludeSecrets + } + return false +} + +type RecipientInspectResponse struct { + Recipient *RecipientObject `protobuf:"bytes,1,opt,name=recipient,proto3" json:"recipient,omitempty"` +} + +func (m *RecipientInspectResponse) Reset() { *m = RecipientInspectResponse{} } +func (m *RecipientInspectResponse) String() string { return proto.CompactTextString(m) } +func (*RecipientInspectResponse) ProtoMessage() {} +func (*RecipientInspectResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{97} +} +func (m *RecipientInspectResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientInspectResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientInspectResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientInspectResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientInspectResponse.Merge(m, src) +} +func (m *RecipientInspectResponse) XXX_Size() int { + return m.Size() +} +func (m *RecipientInspectResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientInspectResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientInspectResponse proto.InternalMessageInfo + +func (m *RecipientInspectResponse) GetRecipient() *RecipientObject { + if m != nil { + return m.Recipient + } + return nil +} + +type RecipientUpdateRequest struct { + *CreateMetadata `protobuf:"bytes,1,opt,name=metadata,proto3,embedded=metadata" json:"metadata,omitempty"` + RecipientInfo *RecipientInfo `protobuf:"bytes,2,opt,name=recipient_info,json=recipientInfo,proto3" json:"recipient_info,omitempty"` +} + +func (m *RecipientUpdateRequest) Reset() { *m = RecipientUpdateRequest{} } +func (m *RecipientUpdateRequest) String() string { return proto.CompactTextString(m) } +func (*RecipientUpdateRequest) ProtoMessage() {} +func (*RecipientUpdateRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{98} +} +func (m *RecipientUpdateRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientUpdateRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientUpdateRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientUpdateRequest.Merge(m, src) +} +func (m *RecipientUpdateRequest) XXX_Size() int { + return m.Size() +} +func (m *RecipientUpdateRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientUpdateRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientUpdateRequest proto.InternalMessageInfo + +func (m *RecipientUpdateRequest) GetRecipientInfo() *RecipientInfo { + if m != nil { + return m.RecipientInfo + } + return nil +} + +type RecipientUpdateResponse struct { +} + +func (m *RecipientUpdateResponse) Reset() { *m = RecipientUpdateResponse{} } +func (m *RecipientUpdateResponse) String() string { return proto.CompactTextString(m) } +func (*RecipientUpdateResponse) ProtoMessage() {} +func (*RecipientUpdateResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{99} +} +func (m *RecipientUpdateResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientUpdateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientUpdateResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientUpdateResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientUpdateResponse.Merge(m, src) +} +func (m *RecipientUpdateResponse) XXX_Size() int { + return m.Size() +} +func (m *RecipientUpdateResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientUpdateResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientUpdateResponse proto.InternalMessageInfo + +type RecipientDeleteRequest struct { + OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + Uid string `protobuf:"bytes,3,opt,name=uid,proto3" json:"uid,omitempty"` +} + +func (m *RecipientDeleteRequest) Reset() { *m = RecipientDeleteRequest{} } +func (m *RecipientDeleteRequest) String() string { return proto.CompactTextString(m) } +func (*RecipientDeleteRequest) ProtoMessage() {} +func (*RecipientDeleteRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{100} +} +func (m *RecipientDeleteRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientDeleteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientDeleteRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientDeleteRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientDeleteRequest.Merge(m, src) +} +func (m *RecipientDeleteRequest) XXX_Size() int { + return m.Size() +} +func (m *RecipientDeleteRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientDeleteRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientDeleteRequest proto.InternalMessageInfo + +func (m *RecipientDeleteRequest) GetOrgId() string { + if m != nil { + return m.OrgId + } + return "" +} + +func (m *RecipientDeleteRequest) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *RecipientDeleteRequest) GetUid() string { + if m != nil { + return m.Uid + } + return "" +} + +type RecipientDeleteResponse struct { +} + +func (m *RecipientDeleteResponse) Reset() { *m = RecipientDeleteResponse{} } +func (m *RecipientDeleteResponse) String() string { return proto.CompactTextString(m) } +func (*RecipientDeleteResponse) ProtoMessage() {} +func (*RecipientDeleteResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9943feda3d652502, []int{101} +} +func (m *RecipientDeleteResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RecipientDeleteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RecipientDeleteResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RecipientDeleteResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecipientDeleteResponse.Merge(m, src) +} +func (m *RecipientDeleteResponse) XXX_Size() int { + return m.Size() +} +func (m *RecipientDeleteResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RecipientDeleteResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_RecipientDeleteResponse proto.InternalMessageInfo + // Define BackupLocationCreateRequest struct type BackupLocationCreateRequest struct { *CreateMetadata `protobuf:"bytes,1,opt,name=metadata,proto3,embedded=metadata" json:"metadata,omitempty"` @@ -8425,7 +9098,7 @@ func (m *BackupLocationCreateRequest) Reset() { *m = BackupLocationCreat func (m *BackupLocationCreateRequest) String() string { return proto.CompactTextString(m) } func (*BackupLocationCreateRequest) ProtoMessage() {} func (*BackupLocationCreateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{90} + return fileDescriptor_9943feda3d652502, []int{102} } func (m *BackupLocationCreateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8469,7 +9142,7 @@ func (m *BackupLocationCreateResponse) Reset() { *m = BackupLocationCrea func (m *BackupLocationCreateResponse) String() string { return proto.CompactTextString(m) } func (*BackupLocationCreateResponse) ProtoMessage() {} func (*BackupLocationCreateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{91} + return fileDescriptor_9943feda3d652502, []int{103} } func (m *BackupLocationCreateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8508,7 +9181,7 @@ func (m *BackupLocationUpdateRequest) Reset() { *m = BackupLocationUpdat func (m *BackupLocationUpdateRequest) String() string { return proto.CompactTextString(m) } func (*BackupLocationUpdateRequest) ProtoMessage() {} func (*BackupLocationUpdateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{92} + return fileDescriptor_9943feda3d652502, []int{104} } func (m *BackupLocationUpdateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8552,7 +9225,7 @@ func (m *BackupLocationUpdateResponse) Reset() { *m = BackupLocationUpda func (m *BackupLocationUpdateResponse) String() string { return proto.CompactTextString(m) } func (*BackupLocationUpdateResponse) ProtoMessage() {} func (*BackupLocationUpdateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{93} + return fileDescriptor_9943feda3d652502, []int{105} } func (m *BackupLocationUpdateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8603,7 +9276,7 @@ func (m *BackupLocationEnumerateRequest) Reset() { *m = BackupLocationEn func (m *BackupLocationEnumerateRequest) String() string { return proto.CompactTextString(m) } func (*BackupLocationEnumerateRequest) ProtoMessage() {} func (*BackupLocationEnumerateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{94} + return fileDescriptor_9943feda3d652502, []int{106} } func (m *BackupLocationEnumerateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8683,7 +9356,7 @@ func (m *BackupLocationEnumerateResponse) Reset() { *m = BackupLocationE func (m *BackupLocationEnumerateResponse) String() string { return proto.CompactTextString(m) } func (*BackupLocationEnumerateResponse) ProtoMessage() {} func (*BackupLocationEnumerateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{95} + return fileDescriptor_9943feda3d652502, []int{107} } func (m *BackupLocationEnumerateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8732,7 +9405,7 @@ func (m *BackupLocationInspectRequest) Reset() { *m = BackupLocationInsp func (m *BackupLocationInspectRequest) String() string { return proto.CompactTextString(m) } func (*BackupLocationInspectRequest) ProtoMessage() {} func (*BackupLocationInspectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{96} + return fileDescriptor_9943feda3d652502, []int{108} } func (m *BackupLocationInspectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8798,7 +9471,7 @@ func (m *BackupLocationInspectResponse) Reset() { *m = BackupLocationIns func (m *BackupLocationInspectResponse) String() string { return proto.CompactTextString(m) } func (*BackupLocationInspectResponse) ProtoMessage() {} func (*BackupLocationInspectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{97} + return fileDescriptor_9943feda3d652502, []int{109} } func (m *BackupLocationInspectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8848,7 +9521,7 @@ func (m *BackupLocationDeleteRequest) Reset() { *m = BackupLocationDelet func (m *BackupLocationDeleteRequest) String() string { return proto.CompactTextString(m) } func (*BackupLocationDeleteRequest) ProtoMessage() {} func (*BackupLocationDeleteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{98} + return fileDescriptor_9943feda3d652502, []int{110} } func (m *BackupLocationDeleteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8913,7 +9586,7 @@ func (m *BackupLocationDeleteResponse) Reset() { *m = BackupLocationDele func (m *BackupLocationDeleteResponse) String() string { return proto.CompactTextString(m) } func (*BackupLocationDeleteResponse) ProtoMessage() {} func (*BackupLocationDeleteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{99} + return fileDescriptor_9943feda3d652502, []int{111} } func (m *BackupLocationDeleteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8953,7 +9626,7 @@ func (m *BackupLocationValidateRequest) Reset() { *m = BackupLocationVal func (m *BackupLocationValidateRequest) String() string { return proto.CompactTextString(m) } func (*BackupLocationValidateRequest) ProtoMessage() {} func (*BackupLocationValidateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{100} + return fileDescriptor_9943feda3d652502, []int{112} } func (m *BackupLocationValidateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9011,7 +9684,7 @@ func (m *BackupLocationValidateResponse) Reset() { *m = BackupLocationVa func (m *BackupLocationValidateResponse) String() string { return proto.CompactTextString(m) } func (*BackupLocationValidateResponse) ProtoMessage() {} func (*BackupLocationValidateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{101} + return fileDescriptor_9943feda3d652502, []int{113} } func (m *BackupLocationValidateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9053,7 +9726,7 @@ func (m *BackupLocationOwnershipUpdateRequest) Reset() { *m = BackupLoca func (m *BackupLocationOwnershipUpdateRequest) String() string { return proto.CompactTextString(m) } func (*BackupLocationOwnershipUpdateRequest) ProtoMessage() {} func (*BackupLocationOwnershipUpdateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{102} + return fileDescriptor_9943feda3d652502, []int{114} } func (m *BackupLocationOwnershipUpdateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9118,7 +9791,7 @@ func (m *BackupLocationOwnershipUpdateResponse) Reset() { *m = BackupLoc func (m *BackupLocationOwnershipUpdateResponse) String() string { return proto.CompactTextString(m) } func (*BackupLocationOwnershipUpdateResponse) ProtoMessage() {} func (*BackupLocationOwnershipUpdateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{103} + return fileDescriptor_9943feda3d652502, []int{115} } func (m *BackupLocationOwnershipUpdateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9155,7 +9828,7 @@ func (m *MetricsInspectRequest) Reset() { *m = MetricsInspectRequest{} } func (m *MetricsInspectRequest) String() string { return proto.CompactTextString(m) } func (*MetricsInspectRequest) ProtoMessage() {} func (*MetricsInspectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{104} + return fileDescriptor_9943feda3d652502, []int{116} } func (m *MetricsInspectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9199,7 +9872,7 @@ func (m *MetricsInspectResponse) Reset() { *m = MetricsInspectResponse{} func (m *MetricsInspectResponse) String() string { return proto.CompactTextString(m) } func (*MetricsInspectResponse) ProtoMessage() {} func (*MetricsInspectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{105} + return fileDescriptor_9943feda3d652502, []int{117} } func (m *MetricsInspectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9247,7 +9920,7 @@ func (m *MetricsInspectResponse_Stats) Reset() { *m = MetricsInspectResp func (m *MetricsInspectResponse_Stats) String() string { return proto.CompactTextString(m) } func (*MetricsInspectResponse_Stats) ProtoMessage() {} func (*MetricsInspectResponse_Stats) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{105, 0} + return fileDescriptor_9943feda3d652502, []int{117, 0} } func (m *MetricsInspectResponse_Stats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9348,7 +10021,7 @@ func (m *BackupCreateRequest) Reset() { *m = BackupCreateRequest{} } func (m *BackupCreateRequest) String() string { return proto.CompactTextString(m) } func (*BackupCreateRequest) ProtoMessage() {} func (*BackupCreateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{106} + return fileDescriptor_9943feda3d652502, []int{118} } func (m *BackupCreateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9490,7 +10163,7 @@ func (m *BackupCreateResponse) Reset() { *m = BackupCreateResponse{} } func (m *BackupCreateResponse) String() string { return proto.CompactTextString(m) } func (*BackupCreateResponse) ProtoMessage() {} func (*BackupCreateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{107} + return fileDescriptor_9943feda3d652502, []int{119} } func (m *BackupCreateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9532,7 +10205,7 @@ func (m *BackupUpdateRequest) Reset() { *m = BackupUpdateRequest{} } func (m *BackupUpdateRequest) String() string { return proto.CompactTextString(m) } func (*BackupUpdateRequest) ProtoMessage() {} func (*BackupUpdateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{108} + return fileDescriptor_9943feda3d652502, []int{120} } func (m *BackupUpdateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9583,7 +10256,7 @@ func (m *BackupUpdateResponse) Reset() { *m = BackupUpdateResponse{} } func (m *BackupUpdateResponse) String() string { return proto.CompactTextString(m) } func (*BackupUpdateResponse) ProtoMessage() {} func (*BackupUpdateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{109} + return fileDescriptor_9943feda3d652502, []int{121} } func (m *BackupUpdateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9624,7 +10297,7 @@ func (m *BackupEnumerateRequest) Reset() { *m = BackupEnumerateRequest{} func (m *BackupEnumerateRequest) String() string { return proto.CompactTextString(m) } func (*BackupEnumerateRequest) ProtoMessage() {} func (*BackupEnumerateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{110} + return fileDescriptor_9943feda3d652502, []int{122} } func (m *BackupEnumerateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9671,7 +10344,7 @@ func (m *BackupEnumerateResponse) Reset() { *m = BackupEnumerateResponse func (m *BackupEnumerateResponse) String() string { return proto.CompactTextString(m) } func (*BackupEnumerateResponse) ProtoMessage() {} func (*BackupEnumerateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{111} + return fileDescriptor_9943feda3d652502, []int{123} } func (m *BackupEnumerateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9732,7 +10405,7 @@ func (m *BackupInspectRequest) Reset() { *m = BackupInspectRequest{} } func (m *BackupInspectRequest) String() string { return proto.CompactTextString(m) } func (*BackupInspectRequest) ProtoMessage() {} func (*BackupInspectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{112} + return fileDescriptor_9943feda3d652502, []int{124} } func (m *BackupInspectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9791,7 +10464,7 @@ func (m *BackupInspectResponse) Reset() { *m = BackupInspectResponse{} } func (m *BackupInspectResponse) String() string { return proto.CompactTextString(m) } func (*BackupInspectResponse) ProtoMessage() {} func (*BackupInspectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{113} + return fileDescriptor_9943feda3d652502, []int{125} } func (m *BackupInspectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9841,7 +10514,7 @@ func (m *BackupDeleteRequest) Reset() { *m = BackupDeleteRequest{} } func (m *BackupDeleteRequest) String() string { return proto.CompactTextString(m) } func (*BackupDeleteRequest) ProtoMessage() {} func (*BackupDeleteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{114} + return fileDescriptor_9943feda3d652502, []int{126} } func (m *BackupDeleteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9913,7 +10586,7 @@ func (m *BackupDeleteResponse) Reset() { *m = BackupDeleteResponse{} } func (m *BackupDeleteResponse) String() string { return proto.CompactTextString(m) } func (*BackupDeleteResponse) ProtoMessage() {} func (*BackupDeleteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{115} + return fileDescriptor_9943feda3d652502, []int{127} } func (m *BackupDeleteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9955,7 +10628,7 @@ func (m *BackupShareUpdateRequest) Reset() { *m = BackupShareUpdateReque func (m *BackupShareUpdateRequest) String() string { return proto.CompactTextString(m) } func (*BackupShareUpdateRequest) ProtoMessage() {} func (*BackupShareUpdateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{116} + return fileDescriptor_9943feda3d652502, []int{128} } func (m *BackupShareUpdateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10020,7 +10693,7 @@ func (m *BackupShareUpdateResponse) Reset() { *m = BackupShareUpdateResp func (m *BackupShareUpdateResponse) String() string { return proto.CompactTextString(m) } func (*BackupShareUpdateResponse) ProtoMessage() {} func (*BackupShareUpdateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{117} + return fileDescriptor_9943feda3d652502, []int{129} } func (m *BackupShareUpdateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10080,7 +10753,7 @@ func (m *RestoreCreateRequest) Reset() { *m = RestoreCreateRequest{} } func (m *RestoreCreateRequest) String() string { return proto.CompactTextString(m) } func (*RestoreCreateRequest) ProtoMessage() {} func (*RestoreCreateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{118} + return fileDescriptor_9943feda3d652502, []int{130} } func (m *RestoreCreateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10194,7 +10867,7 @@ func (m *RestoreCreateResponse) Reset() { *m = RestoreCreateResponse{} } func (m *RestoreCreateResponse) String() string { return proto.CompactTextString(m) } func (*RestoreCreateResponse) ProtoMessage() {} func (*RestoreCreateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{119} + return fileDescriptor_9943feda3d652502, []int{131} } func (m *RestoreCreateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10232,7 +10905,7 @@ func (m *RestoreUpdateRequest) Reset() { *m = RestoreUpdateRequest{} } func (m *RestoreUpdateRequest) String() string { return proto.CompactTextString(m) } func (*RestoreUpdateRequest) ProtoMessage() {} func (*RestoreUpdateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{120} + return fileDescriptor_9943feda3d652502, []int{132} } func (m *RestoreUpdateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10269,7 +10942,7 @@ func (m *RestoreUpdateResponse) Reset() { *m = RestoreUpdateResponse{} } func (m *RestoreUpdateResponse) String() string { return proto.CompactTextString(m) } func (*RestoreUpdateResponse) ProtoMessage() {} func (*RestoreUpdateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{121} + return fileDescriptor_9943feda3d652502, []int{133} } func (m *RestoreUpdateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10310,7 +10983,7 @@ func (m *RestoreEnumerateRequest) Reset() { *m = RestoreEnumerateRequest func (m *RestoreEnumerateRequest) String() string { return proto.CompactTextString(m) } func (*RestoreEnumerateRequest) ProtoMessage() {} func (*RestoreEnumerateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{122} + return fileDescriptor_9943feda3d652502, []int{134} } func (m *RestoreEnumerateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10357,7 +11030,7 @@ func (m *RestoreEnumerateResponse) Reset() { *m = RestoreEnumerateRespon func (m *RestoreEnumerateResponse) String() string { return proto.CompactTextString(m) } func (*RestoreEnumerateResponse) ProtoMessage() {} func (*RestoreEnumerateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{123} + return fileDescriptor_9943feda3d652502, []int{135} } func (m *RestoreEnumerateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10419,7 +11092,7 @@ func (m *RestoreInspectRequest) Reset() { *m = RestoreInspectRequest{} } func (m *RestoreInspectRequest) String() string { return proto.CompactTextString(m) } func (*RestoreInspectRequest) ProtoMessage() {} func (*RestoreInspectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{124} + return fileDescriptor_9943feda3d652502, []int{136} } func (m *RestoreInspectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10478,7 +11151,7 @@ func (m *RestoreInspectResponse) Reset() { *m = RestoreInspectResponse{} func (m *RestoreInspectResponse) String() string { return proto.CompactTextString(m) } func (*RestoreInspectResponse) ProtoMessage() {} func (*RestoreInspectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{125} + return fileDescriptor_9943feda3d652502, []int{137} } func (m *RestoreInspectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10526,7 +11199,7 @@ func (m *RestoreDeleteRequest) Reset() { *m = RestoreDeleteRequest{} } func (m *RestoreDeleteRequest) String() string { return proto.CompactTextString(m) } func (*RestoreDeleteRequest) ProtoMessage() {} func (*RestoreDeleteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{126} + return fileDescriptor_9943feda3d652502, []int{138} } func (m *RestoreDeleteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10584,7 +11257,7 @@ func (m *RestoreDeleteResponse) Reset() { *m = RestoreDeleteResponse{} } func (m *RestoreDeleteResponse) String() string { return proto.CompactTextString(m) } func (*RestoreDeleteResponse) ProtoMessage() {} func (*RestoreDeleteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{127} + return fileDescriptor_9943feda3d652502, []int{139} } func (m *RestoreDeleteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10622,7 +11295,7 @@ func (m *OrganizationCreateRequest) Reset() { *m = OrganizationCreateReq func (m *OrganizationCreateRequest) String() string { return proto.CompactTextString(m) } func (*OrganizationCreateRequest) ProtoMessage() {} func (*OrganizationCreateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{128} + return fileDescriptor_9943feda3d652502, []int{140} } func (m *OrganizationCreateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10659,7 +11332,7 @@ func (m *OrganizationCreateResponse) Reset() { *m = OrganizationCreateRe func (m *OrganizationCreateResponse) String() string { return proto.CompactTextString(m) } func (*OrganizationCreateResponse) ProtoMessage() {} func (*OrganizationCreateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{129} + return fileDescriptor_9943feda3d652502, []int{141} } func (m *OrganizationCreateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10696,7 +11369,7 @@ func (m *OrganizationEnumerateRequest) Reset() { *m = OrganizationEnumer func (m *OrganizationEnumerateRequest) String() string { return proto.CompactTextString(m) } func (*OrganizationEnumerateRequest) ProtoMessage() {} func (*OrganizationEnumerateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{130} + return fileDescriptor_9943feda3d652502, []int{142} } func (m *OrganizationEnumerateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10734,7 +11407,7 @@ func (m *OrganizationEnumerateResponse) Reset() { *m = OrganizationEnume func (m *OrganizationEnumerateResponse) String() string { return proto.CompactTextString(m) } func (*OrganizationEnumerateResponse) ProtoMessage() {} func (*OrganizationEnumerateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{131} + return fileDescriptor_9943feda3d652502, []int{143} } func (m *OrganizationEnumerateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10779,7 +11452,7 @@ func (m *OrganizationInspectRequest) Reset() { *m = OrganizationInspectR func (m *OrganizationInspectRequest) String() string { return proto.CompactTextString(m) } func (*OrganizationInspectRequest) ProtoMessage() {} func (*OrganizationInspectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{132} + return fileDescriptor_9943feda3d652502, []int{144} } func (m *OrganizationInspectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10824,7 +11497,7 @@ func (m *OrganizationInspectResponse) Reset() { *m = OrganizationInspect func (m *OrganizationInspectResponse) String() string { return proto.CompactTextString(m) } func (*OrganizationInspectResponse) ProtoMessage() {} func (*OrganizationInspectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{133} + return fileDescriptor_9943feda3d652502, []int{145} } func (m *OrganizationInspectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10870,7 +11543,7 @@ func (m *OrganizationDeleteRequest) Reset() { *m = OrganizationDeleteReq func (m *OrganizationDeleteRequest) String() string { return proto.CompactTextString(m) } func (*OrganizationDeleteRequest) ProtoMessage() {} func (*OrganizationDeleteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{134} + return fileDescriptor_9943feda3d652502, []int{146} } func (m *OrganizationDeleteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10914,7 +11587,7 @@ func (m *OrganizationDeleteResponse) Reset() { *m = OrganizationDeleteRe func (m *OrganizationDeleteResponse) String() string { return proto.CompactTextString(m) } func (*OrganizationDeleteResponse) ProtoMessage() {} func (*OrganizationDeleteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{135} + return fileDescriptor_9943feda3d652502, []int{147} } func (m *OrganizationDeleteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10953,7 +11626,7 @@ func (m *RuleCreateRequest) Reset() { *m = RuleCreateRequest{} } func (m *RuleCreateRequest) String() string { return proto.CompactTextString(m) } func (*RuleCreateRequest) ProtoMessage() {} func (*RuleCreateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{136} + return fileDescriptor_9943feda3d652502, []int{148} } func (m *RuleCreateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10996,7 +11669,7 @@ func (m *RuleCreateResponse) Reset() { *m = RuleCreateResponse{} } func (m *RuleCreateResponse) String() string { return proto.CompactTextString(m) } func (*RuleCreateResponse) ProtoMessage() {} func (*RuleCreateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{137} + return fileDescriptor_9943feda3d652502, []int{149} } func (m *RuleCreateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11034,7 +11707,7 @@ func (m *RuleUpdateRequest) Reset() { *m = RuleUpdateRequest{} } func (m *RuleUpdateRequest) String() string { return proto.CompactTextString(m) } func (*RuleUpdateRequest) ProtoMessage() {} func (*RuleUpdateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{138} + return fileDescriptor_9943feda3d652502, []int{150} } func (m *RuleUpdateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11078,7 +11751,7 @@ func (m *RuleUpdateResponse) Reset() { *m = RuleUpdateResponse{} } func (m *RuleUpdateResponse) String() string { return proto.CompactTextString(m) } func (*RuleUpdateResponse) ProtoMessage() {} func (*RuleUpdateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{139} + return fileDescriptor_9943feda3d652502, []int{151} } func (m *RuleUpdateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11116,7 +11789,7 @@ func (m *RuleEnumerateRequest) Reset() { *m = RuleEnumerateRequest{} } func (m *RuleEnumerateRequest) String() string { return proto.CompactTextString(m) } func (*RuleEnumerateRequest) ProtoMessage() {} func (*RuleEnumerateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{140} + return fileDescriptor_9943feda3d652502, []int{152} } func (m *RuleEnumerateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11161,7 +11834,7 @@ func (m *RuleEnumerateResponse) Reset() { *m = RuleEnumerateResponse{} } func (m *RuleEnumerateResponse) String() string { return proto.CompactTextString(m) } func (*RuleEnumerateResponse) ProtoMessage() {} func (*RuleEnumerateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{141} + return fileDescriptor_9943feda3d652502, []int{153} } func (m *RuleEnumerateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11208,7 +11881,7 @@ func (m *RuleInspectRequest) Reset() { *m = RuleInspectRequest{} } func (m *RuleInspectRequest) String() string { return proto.CompactTextString(m) } func (*RuleInspectRequest) ProtoMessage() {} func (*RuleInspectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{142} + return fileDescriptor_9943feda3d652502, []int{154} } func (m *RuleInspectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11267,7 +11940,7 @@ func (m *RuleInspectResponse) Reset() { *m = RuleInspectResponse{} } func (m *RuleInspectResponse) String() string { return proto.CompactTextString(m) } func (*RuleInspectResponse) ProtoMessage() {} func (*RuleInspectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{143} + return fileDescriptor_9943feda3d652502, []int{155} } func (m *RuleInspectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11314,7 +11987,7 @@ func (m *RuleDeleteRequest) Reset() { *m = RuleDeleteRequest{} } func (m *RuleDeleteRequest) String() string { return proto.CompactTextString(m) } func (*RuleDeleteRequest) ProtoMessage() {} func (*RuleDeleteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{144} + return fileDescriptor_9943feda3d652502, []int{156} } func (m *RuleDeleteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11372,7 +12045,7 @@ func (m *RuleDeleteResponse) Reset() { *m = RuleDeleteResponse{} } func (m *RuleDeleteResponse) String() string { return proto.CompactTextString(m) } func (*RuleDeleteResponse) ProtoMessage() {} func (*RuleDeleteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{145} + return fileDescriptor_9943feda3d652502, []int{157} } func (m *RuleDeleteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11414,7 +12087,7 @@ func (m *RuleOwnershipUpdateRequest) Reset() { *m = RuleOwnershipUpdateR func (m *RuleOwnershipUpdateRequest) String() string { return proto.CompactTextString(m) } func (*RuleOwnershipUpdateRequest) ProtoMessage() {} func (*RuleOwnershipUpdateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{146} + return fileDescriptor_9943feda3d652502, []int{158} } func (m *RuleOwnershipUpdateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11479,7 +12152,7 @@ func (m *RuleOwnershipUpdateResponse) Reset() { *m = RuleOwnershipUpdate func (m *RuleOwnershipUpdateResponse) String() string { return proto.CompactTextString(m) } func (*RuleOwnershipUpdateResponse) ProtoMessage() {} func (*RuleOwnershipUpdateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{147} + return fileDescriptor_9943feda3d652502, []int{159} } func (m *RuleOwnershipUpdateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11521,7 +12194,7 @@ func (m *VersionInfo) Reset() { *m = VersionInfo{} } func (m *VersionInfo) String() string { return proto.CompactTextString(m) } func (*VersionInfo) ProtoMessage() {} func (*VersionInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{148} + return fileDescriptor_9943feda3d652502, []int{160} } func (m *VersionInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11599,7 +12272,7 @@ func (m *VersionGetRequest) Reset() { *m = VersionGetRequest{} } func (m *VersionGetRequest) String() string { return proto.CompactTextString(m) } func (*VersionGetRequest) ProtoMessage() {} func (*VersionGetRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{149} + return fileDescriptor_9943feda3d652502, []int{161} } func (m *VersionGetRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11637,7 +12310,7 @@ func (m *VersionGetResponse) Reset() { *m = VersionGetResponse{} } func (m *VersionGetResponse) String() string { return proto.CompactTextString(m) } func (*VersionGetResponse) ProtoMessage() {} func (*VersionGetResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{150} + return fileDescriptor_9943feda3d652502, []int{162} } func (m *VersionGetResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11688,7 +12361,7 @@ func (m *LicenseActivateRequest) Reset() { *m = LicenseActivateRequest{} func (m *LicenseActivateRequest) String() string { return proto.CompactTextString(m) } func (*LicenseActivateRequest) ProtoMessage() {} func (*LicenseActivateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{151} + return fileDescriptor_9943feda3d652502, []int{163} } func (m *LicenseActivateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11794,7 +12467,7 @@ func (m *LicenseActivateResponse) Reset() { *m = LicenseActivateResponse func (m *LicenseActivateResponse) String() string { return proto.CompactTextString(m) } func (*LicenseActivateResponse) ProtoMessage() {} func (*LicenseActivateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{152} + return fileDescriptor_9943feda3d652502, []int{164} } func (m *LicenseActivateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11832,7 +12505,7 @@ func (m *LicenseUpdateRequest) Reset() { *m = LicenseUpdateRequest{} } func (m *LicenseUpdateRequest) String() string { return proto.CompactTextString(m) } func (*LicenseUpdateRequest) ProtoMessage() {} func (*LicenseUpdateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{153} + return fileDescriptor_9943feda3d652502, []int{165} } func (m *LicenseUpdateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11875,7 +12548,7 @@ func (m *LicenseUpdateResponse) Reset() { *m = LicenseUpdateResponse{} } func (m *LicenseUpdateResponse) String() string { return proto.CompactTextString(m) } func (*LicenseUpdateResponse) ProtoMessage() {} func (*LicenseUpdateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{154} + return fileDescriptor_9943feda3d652502, []int{166} } func (m *LicenseUpdateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11912,7 +12585,7 @@ func (m *LicenseInspectRequest) Reset() { *m = LicenseInspectRequest{} } func (m *LicenseInspectRequest) String() string { return proto.CompactTextString(m) } func (*LicenseInspectRequest) ProtoMessage() {} func (*LicenseInspectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{155} + return fileDescriptor_9943feda3d652502, []int{167} } func (m *LicenseInspectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11956,7 +12629,7 @@ func (m *LicenseInspectResponse) Reset() { *m = LicenseInspectResponse{} func (m *LicenseInspectResponse) String() string { return proto.CompactTextString(m) } func (*LicenseInspectResponse) ProtoMessage() {} func (*LicenseInspectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{156} + return fileDescriptor_9943feda3d652502, []int{168} } func (m *LicenseInspectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12001,7 +12674,7 @@ func (m *LicenseResponseInfo) Reset() { *m = LicenseResponseInfo{} } func (m *LicenseResponseInfo) String() string { return proto.CompactTextString(m) } func (*LicenseResponseInfo) ProtoMessage() {} func (*LicenseResponseInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{157} + return fileDescriptor_9943feda3d652502, []int{169} } func (m *LicenseResponseInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12057,7 +12730,7 @@ func (m *LicenseResponseInfo_FeatureInfo) Reset() { *m = LicenseResponse func (m *LicenseResponseInfo_FeatureInfo) String() string { return proto.CompactTextString(m) } func (*LicenseResponseInfo_FeatureInfo) ProtoMessage() {} func (*LicenseResponseInfo_FeatureInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{157, 0} + return fileDescriptor_9943feda3d652502, []int{169, 0} } func (m *LicenseResponseInfo_FeatureInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12122,7 +12795,7 @@ func (m *LicenseResponseInfo_EntitlementInfo) Reset() { *m = LicenseResp func (m *LicenseResponseInfo_EntitlementInfo) String() string { return proto.CompactTextString(m) } func (*LicenseResponseInfo_EntitlementInfo) ProtoMessage() {} func (*LicenseResponseInfo_EntitlementInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{157, 1} + return fileDescriptor_9943feda3d652502, []int{169, 1} } func (m *LicenseResponseInfo_EntitlementInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12190,7 +12863,7 @@ func (m *LicenseResponseInfo_Status) Reset() { *m = LicenseResponseInfo_ func (m *LicenseResponseInfo_Status) String() string { return proto.CompactTextString(m) } func (*LicenseResponseInfo_Status) ProtoMessage() {} func (*LicenseResponseInfo_Status) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{157, 2} + return fileDescriptor_9943feda3d652502, []int{169, 2} } func (m *LicenseResponseInfo_Status) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12244,7 +12917,7 @@ func (m *LicenseUsageAirgappedObject) Reset() { *m = LicenseUsageAirgapp func (m *LicenseUsageAirgappedObject) String() string { return proto.CompactTextString(m) } func (*LicenseUsageAirgappedObject) ProtoMessage() {} func (*LicenseUsageAirgappedObject) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{158} + return fileDescriptor_9943feda3d652502, []int{170} } func (m *LicenseUsageAirgappedObject) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12299,7 +12972,7 @@ func (m *LicenseUsageAirgappedRequest) Reset() { *m = LicenseUsageAirgap func (m *LicenseUsageAirgappedRequest) String() string { return proto.CompactTextString(m) } func (*LicenseUsageAirgappedRequest) ProtoMessage() {} func (*LicenseUsageAirgappedRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{159} + return fileDescriptor_9943feda3d652502, []int{171} } func (m *LicenseUsageAirgappedRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12359,7 +13032,7 @@ func (m *LicenseUsageAirgappedResponse) Reset() { *m = LicenseUsageAirga func (m *LicenseUsageAirgappedResponse) String() string { return proto.CompactTextString(m) } func (*LicenseUsageAirgappedResponse) ProtoMessage() {} func (*LicenseUsageAirgappedResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{160} + return fileDescriptor_9943feda3d652502, []int{172} } func (m *LicenseUsageAirgappedResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12432,7 +13105,7 @@ func (m *ManagedClusterEnumerateRequest) Reset() { *m = ManagedClusterEn func (m *ManagedClusterEnumerateRequest) String() string { return proto.CompactTextString(m) } func (*ManagedClusterEnumerateRequest) ProtoMessage() {} func (*ManagedClusterEnumerateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{161} + return fileDescriptor_9943feda3d652502, []int{173} } func (m *ManagedClusterEnumerateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12567,7 +13240,7 @@ func (m *ManagedClusterEnumerateRequest_AWSConfig) Reset() { func (m *ManagedClusterEnumerateRequest_AWSConfig) String() string { return proto.CompactTextString(m) } func (*ManagedClusterEnumerateRequest_AWSConfig) ProtoMessage() {} func (*ManagedClusterEnumerateRequest_AWSConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{161, 0} + return fileDescriptor_9943feda3d652502, []int{173, 0} } func (m *ManagedClusterEnumerateRequest_AWSConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12621,7 +13294,7 @@ func (m *ManagedClusterEnumerateRequest_GoogleConfig) String() string { } func (*ManagedClusterEnumerateRequest_GoogleConfig) ProtoMessage() {} func (*ManagedClusterEnumerateRequest_GoogleConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{161, 1} + return fileDescriptor_9943feda3d652502, []int{173, 1} } func (m *ManagedClusterEnumerateRequest_GoogleConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12661,7 +13334,7 @@ func (m *ManagedClusterEnumerateRequest_AzureConfig) String() string { } func (*ManagedClusterEnumerateRequest_AzureConfig) ProtoMessage() {} func (*ManagedClusterEnumerateRequest_AzureConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{161, 2} + return fileDescriptor_9943feda3d652502, []int{173, 2} } func (m *ManagedClusterEnumerateRequest_AzureConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12711,7 +13384,7 @@ func (m *ManagedClusterObject) Reset() { *m = ManagedClusterObject{} } func (m *ManagedClusterObject) String() string { return proto.CompactTextString(m) } func (*ManagedClusterObject) ProtoMessage() {} func (*ManagedClusterObject) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{162} + return fileDescriptor_9943feda3d652502, []int{174} } func (m *ManagedClusterObject) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12798,7 +13471,7 @@ func (m *ManagedClusterEnumerateResponse) Reset() { *m = ManagedClusterE func (m *ManagedClusterEnumerateResponse) String() string { return proto.CompactTextString(m) } func (*ManagedClusterEnumerateResponse) ProtoMessage() {} func (*ManagedClusterEnumerateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{163} + return fileDescriptor_9943feda3d652502, []int{175} } func (m *ManagedClusterEnumerateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12913,7 +13586,7 @@ func (m *ManagedClusterEnumerateResponse_AWSConfig) String() string { } func (*ManagedClusterEnumerateResponse_AWSConfig) ProtoMessage() {} func (*ManagedClusterEnumerateResponse_AWSConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{163, 0} + return fileDescriptor_9943feda3d652502, []int{175, 0} } func (m *ManagedClusterEnumerateResponse_AWSConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -12960,7 +13633,7 @@ func (m *ManagedClusterEnumerateResponse_GoogleConfig) String() string { } func (*ManagedClusterEnumerateResponse_GoogleConfig) ProtoMessage() {} func (*ManagedClusterEnumerateResponse_GoogleConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{163, 1} + return fileDescriptor_9943feda3d652502, []int{175, 1} } func (m *ManagedClusterEnumerateResponse_GoogleConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13000,7 +13673,7 @@ func (m *ManagedClusterEnumerateResponse_AzureConfig) String() string { } func (*ManagedClusterEnumerateResponse_AzureConfig) ProtoMessage() {} func (*ManagedClusterEnumerateResponse_AzureConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{163, 2} + return fileDescriptor_9943feda3d652502, []int{175, 2} } func (m *ManagedClusterEnumerateResponse_AzureConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13054,7 +13727,7 @@ func (m *ManagedClusterInspectRequest) Reset() { *m = ManagedClusterInsp func (m *ManagedClusterInspectRequest) String() string { return proto.CompactTextString(m) } func (*ManagedClusterInspectRequest) ProtoMessage() {} func (*ManagedClusterInspectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{164} + return fileDescriptor_9943feda3d652502, []int{176} } func (m *ManagedClusterInspectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13194,7 +13867,7 @@ func (m *ManagedClusterInspectRequest_AWSConfig) Reset() { func (m *ManagedClusterInspectRequest_AWSConfig) String() string { return proto.CompactTextString(m) } func (*ManagedClusterInspectRequest_AWSConfig) ProtoMessage() {} func (*ManagedClusterInspectRequest_AWSConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{164, 0} + return fileDescriptor_9943feda3d652502, []int{176, 0} } func (m *ManagedClusterInspectRequest_AWSConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13241,7 +13914,7 @@ func (m *ManagedClusterInspectRequest_GoogleConfig) String() string { } func (*ManagedClusterInspectRequest_GoogleConfig) ProtoMessage() {} func (*ManagedClusterInspectRequest_GoogleConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{164, 1} + return fileDescriptor_9943feda3d652502, []int{176, 1} } func (m *ManagedClusterInspectRequest_GoogleConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13279,7 +13952,7 @@ func (m *ManagedClusterInspectRequest_AzureConfig) Reset() { func (m *ManagedClusterInspectRequest_AzureConfig) String() string { return proto.CompactTextString(m) } func (*ManagedClusterInspectRequest_AzureConfig) ProtoMessage() {} func (*ManagedClusterInspectRequest_AzureConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{164, 2} + return fileDescriptor_9943feda3d652502, []int{176, 2} } func (m *ManagedClusterInspectRequest_AzureConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13317,7 +13990,7 @@ func (m *ManagedClusterInspectResponse) Reset() { *m = ManagedClusterIns func (m *ManagedClusterInspectResponse) String() string { return proto.CompactTextString(m) } func (*ManagedClusterInspectResponse) ProtoMessage() {} func (*ManagedClusterInspectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{165} + return fileDescriptor_9943feda3d652502, []int{177} } func (m *ManagedClusterInspectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13372,7 +14045,7 @@ func (m *ManagedClusterBulkAddRequest) Reset() { *m = ManagedClusterBulk func (m *ManagedClusterBulkAddRequest) String() string { return proto.CompactTextString(m) } func (*ManagedClusterBulkAddRequest) ProtoMessage() {} func (*ManagedClusterBulkAddRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{166} + return fileDescriptor_9943feda3d652502, []int{178} } func (m *ManagedClusterBulkAddRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13498,7 +14171,7 @@ func (m *ManagedClusterBulkAddRequest_AWSConfig) Reset() { func (m *ManagedClusterBulkAddRequest_AWSConfig) String() string { return proto.CompactTextString(m) } func (*ManagedClusterBulkAddRequest_AWSConfig) ProtoMessage() {} func (*ManagedClusterBulkAddRequest_AWSConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{166, 0} + return fileDescriptor_9943feda3d652502, []int{178, 0} } func (m *ManagedClusterBulkAddRequest_AWSConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13545,7 +14218,7 @@ func (m *ManagedClusterBulkAddRequest_GoogleConfig) String() string { } func (*ManagedClusterBulkAddRequest_GoogleConfig) ProtoMessage() {} func (*ManagedClusterBulkAddRequest_GoogleConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{166, 1} + return fileDescriptor_9943feda3d652502, []int{178, 1} } func (m *ManagedClusterBulkAddRequest_GoogleConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13583,7 +14256,7 @@ func (m *ManagedClusterBulkAddRequest_AzureConfig) Reset() { func (m *ManagedClusterBulkAddRequest_AzureConfig) String() string { return proto.CompactTextString(m) } func (*ManagedClusterBulkAddRequest_AzureConfig) ProtoMessage() {} func (*ManagedClusterBulkAddRequest_AzureConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{166, 2} + return fileDescriptor_9943feda3d652502, []int{178, 2} } func (m *ManagedClusterBulkAddRequest_AzureConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13619,7 +14292,7 @@ func (m *ManagedClusterBulkAddResponse) Reset() { *m = ManagedClusterBul func (m *ManagedClusterBulkAddResponse) String() string { return proto.CompactTextString(m) } func (*ManagedClusterBulkAddResponse) ProtoMessage() {} func (*ManagedClusterBulkAddResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{167} + return fileDescriptor_9943feda3d652502, []int{179} } func (m *ManagedClusterBulkAddResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13666,7 +14339,7 @@ func (m *ActivityEnumerateRequest) Reset() { *m = ActivityEnumerateReque func (m *ActivityEnumerateRequest) String() string { return proto.CompactTextString(m) } func (*ActivityEnumerateRequest) ProtoMessage() {} func (*ActivityEnumerateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{168} + return fileDescriptor_9943feda3d652502, []int{180} } func (m *ActivityEnumerateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13752,7 +14425,7 @@ func (m *ActivityEnumerateResponse) Reset() { *m = ActivityEnumerateResp func (m *ActivityEnumerateResponse) String() string { return proto.CompactTextString(m) } func (*ActivityEnumerateResponse) ProtoMessage() {} func (*ActivityEnumerateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{169} + return fileDescriptor_9943feda3d652502, []int{181} } func (m *ActivityEnumerateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13803,7 +14476,7 @@ func (m *ActivityEnumerateResponse_Data) Reset() { *m = ActivityEnumerat func (m *ActivityEnumerateResponse_Data) String() string { return proto.CompactTextString(m) } func (*ActivityEnumerateResponse_Data) ProtoMessage() {} func (*ActivityEnumerateResponse_Data) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{169, 0} + return fileDescriptor_9943feda3d652502, []int{181, 0} } func (m *ActivityEnumerateResponse_Data) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13895,7 +14568,7 @@ func (m *RoleObject) Reset() { *m = RoleObject{} } func (m *RoleObject) String() string { return proto.CompactTextString(m) } func (*RoleObject) ProtoMessage() {} func (*RoleObject) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{170} + return fileDescriptor_9943feda3d652502, []int{182} } func (m *RoleObject) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -13952,7 +14625,7 @@ func (m *RoleConfig) Reset() { *m = RoleConfig{} } func (m *RoleConfig) String() string { return proto.CompactTextString(m) } func (*RoleConfig) ProtoMessage() {} func (*RoleConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{171} + return fileDescriptor_9943feda3d652502, []int{183} } func (m *RoleConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14009,7 +14682,7 @@ func (m *RoleCreateRequest) Reset() { *m = RoleCreateRequest{} } func (m *RoleCreateRequest) String() string { return proto.CompactTextString(m) } func (*RoleCreateRequest) ProtoMessage() {} func (*RoleCreateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{172} + return fileDescriptor_9943feda3d652502, []int{184} } func (m *RoleCreateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14059,7 +14732,7 @@ func (m *RoleCreateResponse) Reset() { *m = RoleCreateResponse{} } func (m *RoleCreateResponse) String() string { return proto.CompactTextString(m) } func (*RoleCreateResponse) ProtoMessage() {} func (*RoleCreateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{173} + return fileDescriptor_9943feda3d652502, []int{185} } func (m *RoleCreateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14100,7 +14773,7 @@ func (m *RoleUpdateRequest) Reset() { *m = RoleUpdateRequest{} } func (m *RoleUpdateRequest) String() string { return proto.CompactTextString(m) } func (*RoleUpdateRequest) ProtoMessage() {} func (*RoleUpdateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{174} + return fileDescriptor_9943feda3d652502, []int{186} } func (m *RoleUpdateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14151,7 +14824,7 @@ func (m *RoleUpdateResponse) Reset() { *m = RoleUpdateResponse{} } func (m *RoleUpdateResponse) String() string { return proto.CompactTextString(m) } func (*RoleUpdateResponse) ProtoMessage() {} func (*RoleUpdateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{175} + return fileDescriptor_9943feda3d652502, []int{187} } func (m *RoleUpdateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14191,7 +14864,7 @@ func (m *RoleEnumerateRequest) Reset() { *m = RoleEnumerateRequest{} } func (m *RoleEnumerateRequest) String() string { return proto.CompactTextString(m) } func (*RoleEnumerateRequest) ProtoMessage() {} func (*RoleEnumerateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{176} + return fileDescriptor_9943feda3d652502, []int{188} } func (m *RoleEnumerateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14236,7 +14909,7 @@ func (m *RoleEnumerateResponse) Reset() { *m = RoleEnumerateResponse{} } func (m *RoleEnumerateResponse) String() string { return proto.CompactTextString(m) } func (*RoleEnumerateResponse) ProtoMessage() {} func (*RoleEnumerateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{177} + return fileDescriptor_9943feda3d652502, []int{189} } func (m *RoleEnumerateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14283,7 +14956,7 @@ func (m *RoleInspectRequest) Reset() { *m = RoleInspectRequest{} } func (m *RoleInspectRequest) String() string { return proto.CompactTextString(m) } func (*RoleInspectRequest) ProtoMessage() {} func (*RoleInspectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{178} + return fileDescriptor_9943feda3d652502, []int{190} } func (m *RoleInspectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14342,7 +15015,7 @@ func (m *RoleInspectResponse) Reset() { *m = RoleInspectResponse{} } func (m *RoleInspectResponse) String() string { return proto.CompactTextString(m) } func (*RoleInspectResponse) ProtoMessage() {} func (*RoleInspectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{179} + return fileDescriptor_9943feda3d652502, []int{191} } func (m *RoleInspectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14389,7 +15062,7 @@ func (m *RoleDeleteRequest) Reset() { *m = RoleDeleteRequest{} } func (m *RoleDeleteRequest) String() string { return proto.CompactTextString(m) } func (*RoleDeleteRequest) ProtoMessage() {} func (*RoleDeleteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{180} + return fileDescriptor_9943feda3d652502, []int{192} } func (m *RoleDeleteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14447,7 +15120,7 @@ func (m *RoleDeleteResponse) Reset() { *m = RoleDeleteResponse{} } func (m *RoleDeleteResponse) String() string { return proto.CompactTextString(m) } func (*RoleDeleteResponse) ProtoMessage() {} func (*RoleDeleteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{181} + return fileDescriptor_9943feda3d652502, []int{193} } func (m *RoleDeleteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14485,7 +15158,7 @@ func (m *RolePermissionRequest) Reset() { *m = RolePermissionRequest{} } func (m *RolePermissionRequest) String() string { return proto.CompactTextString(m) } func (*RolePermissionRequest) ProtoMessage() {} func (*RolePermissionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{182} + return fileDescriptor_9943feda3d652502, []int{194} } func (m *RolePermissionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14530,7 +15203,7 @@ func (m *RolePermissionResponse) Reset() { *m = RolePermissionResponse{} func (m *RolePermissionResponse) String() string { return proto.CompactTextString(m) } func (*RolePermissionResponse) ProtoMessage() {} func (*RolePermissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{183} + return fileDescriptor_9943feda3d652502, []int{195} } func (m *RolePermissionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14575,7 +15248,7 @@ func (m *Permission) Reset() { *m = Permission{} } func (m *Permission) String() string { return proto.CompactTextString(m) } func (*Permission) ProtoMessage() {} func (*Permission) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{184} + return fileDescriptor_9943feda3d652502, []int{196} } func (m *Permission) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14629,7 +15302,7 @@ func (m *ActivityDataObject) Reset() { *m = ActivityDataObject{} } func (m *ActivityDataObject) String() string { return proto.CompactTextString(m) } func (*ActivityDataObject) ProtoMessage() {} func (*ActivityDataObject) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{185} + return fileDescriptor_9943feda3d652502, []int{197} } func (m *ActivityDataObject) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14710,7 +15383,7 @@ func (m *ActivityDataObject_Opcycle) Reset() { *m = ActivityDataObject_O func (m *ActivityDataObject_Opcycle) String() string { return proto.CompactTextString(m) } func (*ActivityDataObject_Opcycle) ProtoMessage() {} func (*ActivityDataObject_Opcycle) Descriptor() ([]byte, []int) { - return fileDescriptor_9943feda3d652502, []int{185, 0} + return fileDescriptor_9943feda3d652502, []int{197, 0} } func (m *ActivityDataObject_Opcycle) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -14781,6 +15454,9 @@ func init() { proto.RegisterEnum("BackupScheduleCreateRequest_BackupType", BackupScheduleCreateRequest_BackupType_name, BackupScheduleCreateRequest_BackupType_value) proto.RegisterEnum("ClusterCreateRequest_Provider", ClusterCreateRequest_Provider_name, ClusterCreateRequest_Provider_value) proto.RegisterEnum("ReceiverInfo_Type", ReceiverInfo_Type_name, ReceiverInfo_Type_value) + proto.RegisterEnum("RecipientInfo_Type", RecipientInfo_Type_name, RecipientInfo_Type_value) + proto.RegisterEnum("RecipientInfo_Severity", RecipientInfo_Severity_name, RecipientInfo_Severity_value) + proto.RegisterEnum("RecipientEnumerateRequest_Type", RecipientEnumerateRequest_Type_name, RecipientEnumerateRequest_Type_value) proto.RegisterEnum("BackupCreateRequest_BackupType", BackupCreateRequest_BackupType_name, BackupCreateRequest_BackupType_value) proto.RegisterEnum("ManagedClusterEnumerateRequest_Provider", ManagedClusterEnumerateRequest_Provider_name, ManagedClusterEnumerateRequest_Provider_value) proto.RegisterEnum("ManagedClusterObject_Status", ManagedClusterObject_Status_name, ManagedClusterObject_Status_value) @@ -14919,6 +15595,18 @@ func init() { proto.RegisterType((*ReceiverUpdateResponse)(nil), "ReceiverUpdateResponse") proto.RegisterType((*ReceiverDeleteRequest)(nil), "ReceiverDeleteRequest") proto.RegisterType((*ReceiverDeleteResponse)(nil), "ReceiverDeleteResponse") + proto.RegisterType((*RecipientObject)(nil), "RecipientObject") + proto.RegisterType((*RecipientInfo)(nil), "RecipientInfo") + proto.RegisterType((*RecipientCreateRequest)(nil), "RecipientCreateRequest") + proto.RegisterType((*RecipientCreateResponse)(nil), "RecipientCreateResponse") + proto.RegisterType((*RecipientEnumerateRequest)(nil), "RecipientEnumerateRequest") + proto.RegisterType((*RecipientEnumerateResponse)(nil), "RecipientEnumerateResponse") + proto.RegisterType((*RecipientInspectRequest)(nil), "RecipientInspectRequest") + proto.RegisterType((*RecipientInspectResponse)(nil), "RecipientInspectResponse") + proto.RegisterType((*RecipientUpdateRequest)(nil), "RecipientUpdateRequest") + proto.RegisterType((*RecipientUpdateResponse)(nil), "RecipientUpdateResponse") + proto.RegisterType((*RecipientDeleteRequest)(nil), "RecipientDeleteRequest") + proto.RegisterType((*RecipientDeleteResponse)(nil), "RecipientDeleteResponse") proto.RegisterType((*BackupLocationCreateRequest)(nil), "BackupLocationCreateRequest") proto.RegisterType((*BackupLocationCreateResponse)(nil), "BackupLocationCreateResponse") proto.RegisterType((*BackupLocationUpdateRequest)(nil), "BackupLocationUpdateRequest") @@ -15045,650 +15733,673 @@ func init() { func init() { proto.RegisterFile("pkg/apis/v1/api.proto", fileDescriptor_9943feda3d652502) } var fileDescriptor_9943feda3d652502 = []byte{ - // 10287 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x5b, 0x8c, 0x23, 0xd7, - 0x99, 0x18, 0x3c, 0x45, 0xb2, 0xd9, 0xe4, 0x47, 0x76, 0x37, 0xfb, 0xf4, 0x8d, 0x53, 0x7d, 0x61, - 0x4f, 0x49, 0x73, 0x97, 0x6a, 0xac, 0x96, 0xc6, 0x92, 0x47, 0xb2, 0xec, 0xee, 0xb9, 0x68, 0xda, - 0x9a, 0x4b, 0xbb, 0x5a, 0x92, 0x6d, 0xd9, 0x58, 0xa2, 0x9a, 0xac, 0xee, 0x2e, 0x0f, 0x9b, 0x45, - 0x57, 0x15, 0x47, 0xd3, 0x32, 0xb4, 0xff, 0x7a, 0xed, 0x3f, 0x9b, 0x18, 0x59, 0xc7, 0xf1, 0xc2, - 0x5e, 0xec, 0x25, 0xd8, 0x60, 0xf7, 0x21, 0x79, 0x09, 0x92, 0x60, 0x1f, 0x72, 0x59, 0x20, 0xc8, - 0x43, 0xb2, 0x31, 0x02, 0x64, 0x61, 0x20, 0x48, 0xb0, 0x0f, 0xc9, 0x24, 0xb1, 0x03, 0x2c, 0xa0, - 0x20, 0x2f, 0xda, 0x60, 0x93, 0xc7, 0xe0, 0xdc, 0xaa, 0xce, 0xa9, 0x3a, 0x45, 0xb2, 0x2f, 0x96, - 0x0c, 0xc4, 0x4f, 0x64, 0x7d, 0xe7, 0xf6, 0xd5, 0x39, 0xdf, 0xf9, 0x6e, 0xe7, 0x3b, 0x5f, 0xc1, - 0x5c, 0xef, 0xd1, 0xde, 0x35, 0xbb, 0xe7, 0x06, 0xd7, 0x1e, 0xbf, 0x80, 0x7f, 0xcd, 0x9e, 0xef, - 0x85, 0x9e, 0xbe, 0xb4, 0xe7, 0x79, 0x7b, 0x1d, 0x07, 0x43, 0xae, 0xd9, 0xdd, 0xae, 0x17, 0xda, - 0xa1, 0xeb, 0x75, 0x03, 0x56, 0xda, 0x60, 0xa5, 0xe4, 0x69, 0xa7, 0xbf, 0x7b, 0x2d, 0x74, 0x0f, - 0x9c, 0x20, 0xb4, 0x0f, 0x7a, 0xac, 0xc2, 0xf3, 0x7b, 0x6e, 0xb8, 0xdf, 0xdf, 0x31, 0x5b, 0xde, - 0xc1, 0xb5, 0x3d, 0x6f, 0xcf, 0x8b, 0x6b, 0xe2, 0x27, 0xf2, 0x40, 0xfe, 0xb1, 0xea, 0x75, 0x11, - 0x89, 0x96, 0x77, 0x70, 0xe0, 0x75, 0x59, 0x09, 0xfd, 0x69, 0x3d, 0xbf, 0xe7, 0x74, 0x9f, 0xf7, - 0x7a, 0x4e, 0xd7, 0xee, 0xb9, 0x8f, 0xd7, 0xae, 0x79, 0x3d, 0x82, 0x4d, 0x1a, 0x33, 0x63, 0x1d, - 0xd0, 0x43, 0x7f, 0xcf, 0xee, 0xba, 0xef, 0x13, 0xf0, 0xc3, 0x9d, 0xaf, 0x3b, 0xad, 0x10, 0x5d, - 0x85, 0xd2, 0x81, 0x13, 0xda, 0x6d, 0x3b, 0xb4, 0xeb, 0xda, 0xaa, 0x76, 0xa9, 0xb2, 0x56, 0x36, - 0xef, 0x33, 0xc0, 0x46, 0xe1, 0x27, 0x4f, 0x1b, 0x9a, 0x15, 0x55, 0x30, 0xfe, 0x0a, 0xa0, 0x72, - 0xb3, 0xd3, 0x0f, 0x42, 0xc7, 0xdf, 0xec, 0xee, 0x7a, 0xe8, 0x25, 0x28, 0xf7, 0x9e, 0x34, 0x5b, - 0x5e, 0x77, 0xd7, 0xdd, 0x8b, 0x5a, 0x6f, 0x7d, 0xf9, 0x26, 0x01, 0x6c, 0x54, 0x3f, 0x7c, 0xda, - 0x28, 0xf5, 0x9e, 0xd0, 0x62, 0xab, 0xd4, 0x7b, 0x42, 0xe1, 0xe8, 0x73, 0x00, 0x8f, 0xfa, 0x3b, - 0x0e, 0x6b, 0x96, 0x5b, 0xd5, 0x2e, 0x95, 0x37, 0x1a, 0x1f, 0x3e, 0x6d, 0x08, 0xd0, 0x8f, 0x9e, - 0x36, 0x26, 0x02, 0xa7, 0xd5, 0xf7, 0x9d, 0x1b, 0x46, 0xe8, 0xf7, 0x1d, 0xc3, 0x12, 0x0a, 0xd1, - 0x65, 0xa8, 0xb5, 0x3a, 0x5e, 0xbf, 0xdd, 0x6c, 0xf9, 0x4e, 0xdb, 0xe9, 0x86, 0xae, 0xdd, 0xa9, - 0xe7, 0x71, 0x37, 0xd6, 0x14, 0x81, 0xdf, 0x8c, 0xc0, 0xe8, 0x1a, 0x14, 0x83, 0xd0, 0x0e, 0xfb, - 0x41, 0xbd, 0x40, 0xd0, 0x5b, 0x30, 0x05, 0xfc, 0xcd, 0x6d, 0x52, 0x84, 0xff, 0x5a, 0xac, 0x1a, - 0x3a, 0x0f, 0x93, 0x6d, 0xa7, 0xe3, 0x84, 0x4e, 0x73, 0xc7, 0x6e, 0x3d, 0xea, 0xf7, 0x82, 0xfa, - 0xd8, 0xaa, 0x76, 0xa9, 0x64, 0x4d, 0x50, 0xe8, 0x06, 0x05, 0xa2, 0x8b, 0x30, 0xc5, 0xaa, 0xf9, + // 10654 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5b, 0x6c, 0x24, 0xd7, + 0x95, 0xd8, 0x54, 0x77, 0xb3, 0xd9, 0x7d, 0xba, 0x49, 0x36, 0x2f, 0x5f, 0x3d, 0x35, 0x43, 0x36, + 0xa7, 0xa4, 0x79, 0x4b, 0x35, 0x12, 0xa5, 0xb1, 0xe4, 0x91, 0x2c, 0x9b, 0x9c, 0x87, 0x86, 0xd6, + 0xbc, 0x5c, 0xd4, 0x48, 0xb6, 0x6c, 0x6c, 0xa3, 0xd8, 0x5d, 0x24, 0xcb, 0xd3, 0xec, 0x6a, 0x57, + 0x55, 0x53, 0x43, 0x19, 0x4a, 0xd6, 0x8f, 0x64, 0x13, 0x23, 0xeb, 0x38, 0x0e, 0xec, 0xc5, 0x3e, + 0x82, 0x0d, 0x76, 0x3f, 0x92, 0x7c, 0x04, 0x49, 0xb0, 0x08, 0xf2, 0x58, 0x20, 0xc8, 0x47, 0xb2, + 0x31, 0x02, 0x64, 0x61, 0x20, 0x48, 0xb0, 0x1f, 0xc9, 0x24, 0x91, 0x03, 0x2c, 0xa0, 0x60, 0x7f, + 0xb4, 0x41, 0x92, 0x8f, 0x7c, 0x04, 0xf7, 0x55, 0x75, 0x6f, 0xd5, 0xad, 0xee, 0xe6, 0xc3, 0x23, + 0x03, 0xf1, 0x57, 0x77, 0x9d, 0xfb, 0x3a, 0x75, 0xee, 0xb9, 0xe7, 0x71, 0xef, 0xb9, 0xa7, 0x60, + 0xae, 0xf7, 0x68, 0xfb, 0x8a, 0xdd, 0x73, 0x83, 0x2b, 0x7b, 0x2f, 0xe2, 0x5f, 0xb3, 0xe7, 0x7b, + 0xa1, 0xa7, 0x9f, 0xde, 0xf6, 0xbc, 0xed, 0x8e, 0x83, 0x21, 0x57, 0xec, 0x6e, 0xd7, 0x0b, 0xed, + 0xd0, 0xf5, 0xba, 0x01, 0x2b, 0x6d, 0xb0, 0x52, 0xf2, 0xb4, 0xd9, 0xdf, 0xba, 0x12, 0xba, 0xbb, + 0x4e, 0x10, 0xda, 0xbb, 0x3d, 0x56, 0xe1, 0xf9, 0x6d, 0x37, 0xdc, 0xe9, 0x6f, 0x9a, 0x2d, 0x6f, + 0xf7, 0xca, 0xb6, 0xb7, 0xed, 0xc5, 0x35, 0xf1, 0x13, 0x79, 0x20, 0xff, 0x58, 0xf5, 0xba, 0x88, + 0x44, 0xcb, 0xdb, 0xdd, 0xf5, 0xba, 0xac, 0x84, 0xfe, 0xb4, 0x9e, 0xdf, 0x76, 0xba, 0xcf, 0x7b, + 0x3d, 0xa7, 0x6b, 0xf7, 0xdc, 0xbd, 0x95, 0x2b, 0x5e, 0x8f, 0x60, 0x93, 0xc6, 0xcc, 0x58, 0x05, + 0x74, 0xdf, 0xdf, 0xb6, 0xbb, 0xee, 0x07, 0x04, 0x7c, 0x7f, 0xf3, 0xeb, 0x4e, 0x2b, 0x44, 0x97, + 0xa1, 0xb4, 0xeb, 0x84, 0x76, 0xdb, 0x0e, 0xed, 0xba, 0xb6, 0xac, 0x5d, 0xa8, 0xac, 0x94, 0xcd, + 0xbb, 0x0c, 0xb0, 0x56, 0xf8, 0xe9, 0x93, 0x86, 0x66, 0x45, 0x15, 0x8c, 0xff, 0x05, 0x50, 0xb9, + 0xde, 0xe9, 0x07, 0xa1, 0xe3, 0xaf, 0x77, 0xb7, 0x3c, 0xf4, 0x32, 0x94, 0x7b, 0x8f, 0x9b, 0x2d, + 0xaf, 0xbb, 0xe5, 0x6e, 0x47, 0xad, 0x1f, 0x7c, 0xf9, 0x3a, 0x01, 0xac, 0x55, 0x3f, 0x7e, 0xd2, + 0x28, 0xf5, 0x1e, 0xd3, 0x62, 0xab, 0xd4, 0x7b, 0x4c, 0xe1, 0xe8, 0xf3, 0x00, 0x8f, 0xfa, 0x9b, + 0x0e, 0x6b, 0x96, 0x5b, 0xd6, 0x2e, 0x94, 0xd7, 0x1a, 0x1f, 0x3f, 0x69, 0x08, 0xd0, 0x4f, 0x9e, + 0x34, 0x26, 0x02, 0xa7, 0xd5, 0xf7, 0x9d, 0x6b, 0x46, 0xe8, 0xf7, 0x1d, 0xc3, 0x12, 0x0a, 0xd1, + 0x45, 0xa8, 0xb5, 0x3a, 0x5e, 0xbf, 0xdd, 0x6c, 0xf9, 0x4e, 0xdb, 0xe9, 0x86, 0xae, 0xdd, 0xa9, + 0xe7, 0x71, 0x37, 0xd6, 0x14, 0x81, 0x5f, 0x8f, 0xc0, 0xe8, 0x0a, 0x14, 0x83, 0xd0, 0x0e, 0xfb, + 0x41, 0xbd, 0x40, 0xd0, 0x5b, 0x30, 0x05, 0xfc, 0xcd, 0x0d, 0x52, 0x84, 0xff, 0x5a, 0xac, 0x1a, + 0x3a, 0x0b, 0x93, 0x6d, 0xa7, 0xe3, 0x84, 0x4e, 0x73, 0xd3, 0x6e, 0x3d, 0xea, 0xf7, 0x82, 0xfa, + 0xd8, 0xb2, 0x76, 0xa1, 0x64, 0x4d, 0x50, 0xe8, 0x1a, 0x05, 0xa2, 0xf3, 0x30, 0xc5, 0xaa, 0xf9, 0x4e, 0x10, 0x7a, 0xbe, 0x13, 0xd4, 0x8b, 0xa4, 0x1e, 0x6b, 0x6d, 0x31, 0x28, 0x7a, 0x06, 0x26, - 0xf0, 0xbf, 0x47, 0xcd, 0xc7, 0x8e, 0x1f, 0xb8, 0x5e, 0xb7, 0x3e, 0x4e, 0x10, 0xad, 0x12, 0xe0, - 0x3b, 0x14, 0x86, 0x5e, 0x83, 0xd9, 0xe4, 0x0b, 0x35, 0x7d, 0x67, 0xb7, 0x5e, 0x22, 0x38, 0x83, - 0x49, 0xd7, 0xca, 0x72, 0x76, 0x2d, 0x94, 0x78, 0x41, 0xcb, 0xd9, 0x45, 0x9f, 0x86, 0x9a, 0xdd, - 0x6e, 0x33, 0x7c, 0x9b, 0xc1, 0xbe, 0xed, 0x3b, 0xf5, 0x32, 0x69, 0x59, 0x35, 0x29, 0xbe, 0xdb, - 0x18, 0x66, 0x4d, 0xda, 0xed, 0xb6, 0xf0, 0x8c, 0xdb, 0xb5, 0x9d, 0x8e, 0xdc, 0x0e, 0x54, 0xed, - 0xda, 0x4e, 0x47, 0x6c, 0xf7, 0x55, 0xa8, 0x8b, 0x6d, 0x9a, 0x74, 0xe6, 0x9a, 0x6e, 0x77, 0xd7, - 0xab, 0x57, 0x48, 0x7b, 0x43, 0x9a, 0x65, 0xa1, 0xad, 0x30, 0xe1, 0x73, 0x3b, 0x2a, 0x30, 0xba, - 0x04, 0x35, 0xef, 0xbd, 0xae, 0xe3, 0x37, 0xf7, 0x7c, 0xaf, 0xdf, 0x6b, 0x76, 0xdc, 0x20, 0xac, - 0x57, 0x57, 0xf3, 0x97, 0xca, 0xd6, 0x24, 0x81, 0xbf, 0x81, 0xc1, 0xf7, 0xdc, 0x20, 0x44, 0x1b, - 0xb0, 0xd0, 0xeb, 0xd8, 0xe1, 0xae, 0xe7, 0x1f, 0x24, 0xe7, 0x6d, 0x22, 0x35, 0x6f, 0x73, 0xbc, - 0xaa, 0x3c, 0x75, 0x26, 0xcc, 0x84, 0x4e, 0xc7, 0xe9, 0x79, 0x7e, 0xd8, 0x6c, 0x51, 0x94, 0x9b, - 0x6e, 0xbb, 0x3e, 0x49, 0xd6, 0x68, 0x9a, 0x17, 0xf1, 0x97, 0x69, 0xa3, 0x45, 0x28, 0x87, 0x4e, - 0xd7, 0xee, 0x86, 0xb8, 0xd6, 0x14, 0xa9, 0x55, 0xa2, 0x80, 0xcd, 0x36, 0xba, 0x03, 0x13, 0x81, - 0xe3, 0x3f, 0x76, 0x5b, 0x4e, 0x33, 0xf4, 0x1e, 0x39, 0xdd, 0x7a, 0x8d, 0x90, 0xf6, 0xb9, 0x0f, - 0x9f, 0x36, 0xaa, 0xac, 0x80, 0xc0, 0xd3, 0xc4, 0xcd, 0x8b, 0xdf, 0xc2, 0xc5, 0xe8, 0x05, 0x28, - 0xf5, 0x7c, 0xef, 0xb1, 0xdb, 0x76, 0xfc, 0xfa, 0xf4, 0xaa, 0x76, 0x69, 0x72, 0x6d, 0x4e, 0x9a, - 0xcf, 0x2d, 0x56, 0x68, 0x45, 0xd5, 0xf4, 0x7f, 0xad, 0x01, 0x08, 0x93, 0xf8, 0xe9, 0x88, 0xea, - 0x35, 0xd2, 0x7e, 0x25, 0x83, 0xea, 0xd9, 0xdf, 0x88, 0xf8, 0xe7, 0xa1, 0xe8, 0x3b, 0x76, 0xe0, - 0x75, 0xe9, 0xae, 0xb4, 0xd8, 0x93, 0xb1, 0x07, 0x45, 0x5a, 0x13, 0x55, 0x60, 0x7c, 0xb3, 0xfb, - 0xd8, 0xee, 0xb8, 0xed, 0xda, 0x19, 0x04, 0x50, 0x7c, 0xd8, 0xed, 0xb8, 0x5d, 0xa7, 0xa6, 0xe1, - 0x82, 0x87, 0xbb, 0xbb, 0xe4, 0x21, 0x87, 0xa6, 0x61, 0xe2, 0x16, 0xd9, 0x06, 0x5b, 0x4e, 0xb7, - 0xed, 0x76, 0xf7, 0x6a, 0x79, 0x5c, 0xce, 0x1f, 0x0a, 0xb8, 0xe1, 0x1d, 0xdb, 0xed, 0x38, 0xed, - 0xda, 0x18, 0x2e, 0xd8, 0xee, 0xb7, 0x5a, 0x4e, 0x10, 0xd4, 0x8a, 0xfa, 0x9f, 0x6a, 0x30, 0xa7, - 0x24, 0x17, 0xb4, 0x9e, 0x78, 0xa5, 0xcb, 0xc3, 0x49, 0x6c, 0xd4, 0xb7, 0xb3, 0xd4, 0x6f, 0x37, - 0x09, 0xb0, 0xd9, 0xdd, 0xf2, 0xbd, 0x3d, 0x1f, 0xe3, 0xa6, 0x09, 0x48, 0xe7, 0x44, 0xa4, 0xf3, - 0x08, 0xc1, 0xe4, 0x96, 0xed, 0x63, 0x92, 0xe2, 0xb0, 0x82, 0x71, 0x1f, 0x4a, 0x7c, 0x99, 0xe4, - 0x5e, 0xc7, 0x21, 0xbf, 0xfe, 0xa5, 0xed, 0x9a, 0x86, 0xca, 0x30, 0xb6, 0xfe, 0x7e, 0xdf, 0xc7, - 0xd3, 0x05, 0x50, 0x7c, 0x83, 0x48, 0x8d, 0x5a, 0x1e, 0x97, 0x6f, 0x6e, 0xdc, 0xaf, 0x15, 0x70, - 0x2b, 0xcb, 0xee, 0xb6, 0xf6, 0x1d, 0xbf, 0x36, 0x66, 0x7c, 0x4b, 0x83, 0x09, 0xf6, 0xbe, 0xc7, - 0xe0, 0xdb, 0xe8, 0x26, 0x54, 0x5a, 0xf1, 0x6c, 0x91, 0xd7, 0xc7, 0x9b, 0x5c, 0x98, 0xc1, 0x8d, - 0x19, 0xdc, 0xe4, 0xc3, 0xa7, 0x0d, 0x5e, 0x11, 0xef, 0x66, 0x4b, 0x6c, 0x65, 0xbc, 0x0e, 0x25, - 0xce, 0xda, 0xd1, 0x1a, 0x54, 0x6d, 0xf2, 0xaa, 0x8c, 0xd2, 0x35, 0x42, 0xe9, 0x53, 0xb8, 0x3d, - 0x85, 0x13, 0xb0, 0xc5, 0x1e, 0x08, 0x59, 0x1b, 0x4f, 0xa0, 0xbc, 0xfe, 0xa5, 0x6d, 0xd6, 0xc1, - 0x73, 0x00, 0xac, 0x83, 0x47, 0xce, 0x21, 0x6b, 0x3e, 0xf1, 0xe1, 0xd3, 0x46, 0x99, 0x42, 0x1f, - 0x39, 0x87, 0x16, 0xfb, 0xfb, 0xa6, 0x73, 0x88, 0x3e, 0x0b, 0x10, 0x38, 0x2d, 0xdf, 0x09, 0x49, - 0x6d, 0x2a, 0x31, 0x56, 0x70, 0x6d, 0x0a, 0x7d, 0xe4, 0x1c, 0xa6, 0xf7, 0x14, 0x2b, 0x7b, 0xd3, - 0x39, 0x34, 0x36, 0xa0, 0xbc, 0xb9, 0x71, 0x9f, 0x8d, 0x7c, 0x1d, 0xc6, 0xed, 0x9e, 0x2b, 0x0c, - 0xbb, 0xf4, 0xe1, 0xd3, 0x06, 0x07, 0xa5, 0xbb, 0x29, 0xda, 0x3d, 0x17, 0xf7, 0xf1, 0x08, 0x26, - 0xd8, 0x72, 0xb0, 0x7e, 0x2e, 0x41, 0xc9, 0xe9, 0xb6, 0x7b, 0x9e, 0xdb, 0x0d, 0x59, 0x47, 0x44, - 0xde, 0x71, 0x98, 0x15, 0xfd, 0x43, 0x9f, 0x82, 0x31, 0x3a, 0x4b, 0x14, 0x71, 0xfd, 0xc3, 0xa7, - 0x8d, 0xb1, 0x0c, 0x46, 0x40, 0xe1, 0xc6, 0xdf, 0xc8, 0x41, 0x69, 0xfb, 0x45, 0x36, 0x90, 0x9e, - 0x1c, 0x48, 0xe8, 0x9a, 0x90, 0xf4, 0x9e, 0x2b, 0x92, 0x34, 0x7e, 0x42, 0x0d, 0xa8, 0xb4, 0xdd, - 0xc0, 0xde, 0xe9, 0x38, 0xcd, 0x20, 0xa0, 0xc2, 0xb1, 0x64, 0x01, 0x03, 0x6d, 0x07, 0x1d, 0xf4, - 0x1c, 0x20, 0x5e, 0xa1, 0x67, 0x87, 0xfb, 0xcd, 0x20, 0x3c, 0xec, 0x38, 0x44, 0x46, 0x96, 0xac, - 0x1a, 0x2b, 0xd9, 0xb2, 0xc3, 0xfd, 0x6d, 0x0c, 0xe7, 0x42, 0xcc, 0xde, 0x73, 0x9a, 0xad, 0x8e, - 0x1d, 0x50, 0x99, 0xc8, 0x84, 0x98, 0xbd, 0xe7, 0xdc, 0xc4, 0x30, 0x3c, 0x21, 0x41, 0xe0, 0x34, - 0xc3, 0xc3, 0x9e, 0x43, 0x64, 0xe1, 0xe4, 0xda, 0x84, 0xc9, 0x5f, 0xc2, 0xdc, 0x0e, 0x1c, 0x6b, - 0x3c, 0x08, 0x9c, 0xb7, 0x0e, 0x7b, 0x8e, 0x71, 0x15, 0xf2, 0xdb, 0x81, 0x93, 0xe2, 0x25, 0xdb, - 0xdb, 0xb7, 0x9b, 0xdb, 0x2f, 0x52, 0x5e, 0x82, 0xff, 0xbf, 0x79, 0x7f, 0xbb, 0x96, 0x33, 0x7e, - 0x2d, 0x0f, 0x15, 0xb2, 0x51, 0xd8, 0x74, 0x9c, 0x23, 0xa4, 0xe7, 0xf5, 0xbb, 0x61, 0xb3, 0x6b, - 0x1f, 0x38, 0x6c, 0x4a, 0x2a, 0x0c, 0xf6, 0xc0, 0x3e, 0x70, 0xd0, 0xe7, 0x81, 0x3f, 0x0a, 0xf4, - 0x42, 0x34, 0x0c, 0x06, 0x56, 0xae, 0x34, 0x2f, 0xc4, 0x04, 0x77, 0x07, 0x26, 0x5a, 0x1d, 0xd7, - 0xe9, 0x86, 0x4d, 0x4a, 0x45, 0x54, 0xbd, 0xa0, 0xac, 0x9c, 0x16, 0x50, 0xb8, 0x82, 0x95, 0xd3, - 0xe2, 0x6d, 0x52, 0x8c, 0x6e, 0x40, 0x99, 0xf5, 0xe3, 0xb6, 0xc9, 0xec, 0x96, 0x37, 0x96, 0x31, - 0x95, 0x50, 0xa0, 0xdb, 0x4e, 0xb7, 0x67, 0x45, 0x9b, 0x6d, 0xdc, 0x36, 0x96, 0x35, 0x63, 0x71, - 0x5b, 0x0a, 0x54, 0xb6, 0x8d, 0x44, 0xd1, 0x3d, 0x98, 0x0a, 0xfa, 0x3b, 0x41, 0xcb, 0x77, 0x89, - 0x3a, 0x88, 0x7b, 0x28, 0x92, 0x1e, 0x9e, 0xf9, 0xf0, 0x69, 0x63, 0x52, 0x2c, 0x52, 0xf5, 0x23, - 0x55, 0xd8, 0x6c, 0x1b, 0xbb, 0x50, 0xa5, 0xfc, 0x89, 0x2d, 0xc1, 0x32, 0x40, 0xcf, 0xf7, 0x30, - 0x1b, 0xc2, 0x1d, 0xd3, 0x05, 0x28, 0x33, 0xc8, 0x66, 0x1b, 0xbd, 0x0c, 0xa5, 0xaf, 0x07, 0x5e, - 0x57, 0x98, 0x7b, 0xb2, 0xc5, 0x30, 0x4c, 0x39, 0xf1, 0xa4, 0x04, 0xef, 0xb1, 0x1f, 0xe6, 0x61, - 0xe6, 0xa6, 0xac, 0xdf, 0x10, 0xde, 0xff, 0x3c, 0x14, 0x08, 0x55, 0x51, 0xce, 0x7f, 0xd6, 0x54, - 0xd4, 0x31, 0x31, 0x61, 0x59, 0xa4, 0x1a, 0xba, 0x0a, 0x60, 0xbf, 0x17, 0x70, 0xb5, 0xb4, 0xcd, - 0x74, 0x81, 0x88, 0xf7, 0xdc, 0x3d, 0x63, 0x95, 0xed, 0xf7, 0x02, 0xf6, 0x2e, 0x2f, 0x40, 0xd5, - 0xc6, 0xd4, 0xc5, 0xab, 0x3b, 0x8c, 0x37, 0x0a, 0x24, 0x77, 0xf7, 0x8c, 0x55, 0xb1, 0x05, 0x0a, - 0x7c, 0x09, 0x26, 0xa8, 0x92, 0xcf, 0xdb, 0xec, 0x92, 0x36, 0x13, 0xa6, 0x38, 0x49, 0x77, 0xcf, - 0x58, 0xd5, 0x3d, 0x71, 0xd2, 0xae, 0x02, 0xb8, 0x3b, 0x07, 0xbc, 0xc9, 0x1e, 0xc3, 0x2a, 0xe2, - 0x4b, 0x18, 0x2b, 0x77, 0xe7, 0x80, 0x55, 0x7e, 0x19, 0x26, 0x7d, 0xca, 0x6d, 0x78, 0x83, 0x7d, - 0xd2, 0x60, 0xd2, 0x94, 0x98, 0xd0, 0xdd, 0x33, 0xd6, 0x84, 0x2f, 0x02, 0x8c, 0x4d, 0x28, 0xe0, - 0x99, 0x38, 0x05, 0x99, 0xb3, 0x51, 0x82, 0x22, 0x1d, 0xdb, 0xf8, 0x5d, 0x0d, 0xe6, 0x12, 0x73, - 0xce, 0xa4, 0xd0, 0xcb, 0x83, 0xa4, 0x50, 0x8d, 0x89, 0x94, 0xa8, 0x8a, 0x20, 0x91, 0xee, 0xc2, - 0x5c, 0x4a, 0xe3, 0x75, 0x63, 0xd9, 0x34, 0xab, 0x5a, 0x63, 0x6b, 0xa6, 0x95, 0x06, 0x1a, 0xbf, - 0x5d, 0x02, 0xb4, 0xdd, 0xda, 0x77, 0xda, 0xfd, 0x8e, 0xb3, 0xe5, 0x75, 0xdc, 0xd6, 0x21, 0xa1, - 0x99, 0xd7, 0xa1, 0xe4, 0x76, 0x43, 0xc7, 0x7f, 0x6c, 0x77, 0x18, 0x66, 0x86, 0x99, 0xae, 0x66, - 0x6e, 0xb2, 0x3a, 0x14, 0x64, 0x45, 0x6d, 0xd0, 0x75, 0x18, 0x6b, 0xdb, 0x6e, 0xe7, 0x90, 0x21, - 0xd4, 0x50, 0x35, 0xbe, 0x85, 0x2b, 0xb0, 0x96, 0xb4, 0x36, 0x7a, 0x05, 0x8a, 0xef, 0x39, 0xce, - 0xa3, 0xce, 0x21, 0xe1, 0x18, 0x95, 0xb5, 0x55, 0x55, 0xbb, 0x2f, 0x91, 0x1a, 0xac, 0x21, 0xab, - 0x8f, 0x5e, 0x85, 0xf1, 0x03, 0xaf, 0x1b, 0xee, 0x77, 0x0e, 0x99, 0xa9, 0x72, 0x4e, 0xd5, 0xf4, - 0x3e, 0xad, 0xc2, 0xda, 0xf2, 0x16, 0xd8, 0x1c, 0xe1, 0x2a, 0x39, 0x6b, 0x53, 0x1f, 0xa3, 0x4a, - 0x33, 0xd3, 0xb2, 0x19, 0x14, 0x5d, 0x80, 0xa9, 0x5d, 0xcf, 0x6f, 0x7a, 0x64, 0xf9, 0x9a, 0x1d, - 0xaf, 0xf5, 0x88, 0xd9, 0x2d, 0x13, 0xbb, 0x1e, 0x53, 0x2d, 0xee, 0x79, 0xad, 0x47, 0x58, 0x80, - 0xd8, 0xfd, 0xd0, 0x6b, 0x52, 0x6b, 0x86, 0x18, 0x2d, 0x25, 0x0b, 0x30, 0x88, 0x2a, 0x76, 0xfa, - 0x8b, 0x50, 0xdb, 0xec, 0xb6, 0x7c, 0xe7, 0xc0, 0xe9, 0x86, 0x76, 0xe7, 0x26, 0x66, 0x9c, 0xa8, - 0x01, 0x63, 0x84, 0x83, 0x92, 0x09, 0x2f, 0x6c, 0x94, 0xb1, 0xa0, 0x23, 0x00, 0x8b, 0xfe, 0xe8, - 0x3f, 0xd4, 0x60, 0x52, 0x9e, 0x71, 0x54, 0x87, 0xf1, 0x03, 0xb7, 0xdb, 0x0f, 0x1d, 0xaa, 0xd8, - 0xe5, 0x2d, 0xfe, 0x48, 0x65, 0x5b, 0x68, 0xbb, 0x54, 0xb6, 0xe5, 0x2d, 0xf6, 0x84, 0xbe, 0x08, - 0xd3, 0x6e, 0x3c, 0x72, 0x93, 0x8e, 0x48, 0x67, 0xfb, 0x59, 0xf5, 0x12, 0xcb, 0x68, 0x5a, 0x35, - 0x37, 0x01, 0xd1, 0xff, 0xa6, 0x06, 0x15, 0x61, 0x31, 0x11, 0x82, 0x02, 0x36, 0xdb, 0x19, 0x6b, - 0x23, 0xff, 0x3f, 0x4e, 0x74, 0xfe, 0x40, 0x83, 0xaa, 0x48, 0x23, 0xa8, 0x06, 0xf9, 0xb6, 0xcd, - 0xf4, 0x15, 0x0b, 0xff, 0x8d, 0x30, 0xcc, 0x29, 0x31, 0xcc, 0x0f, 0xc7, 0xb0, 0x70, 0x22, 0x0c, - 0xff, 0x50, 0x83, 0x09, 0x89, 0x14, 0x31, 0x42, 0x6d, 0x3b, 0x74, 0xd8, 0x22, 0x92, 0xff, 0x9f, - 0x30, 0x92, 0xc6, 0xef, 0x6b, 0x30, 0x2b, 0xb7, 0x3c, 0x29, 0xd7, 0x7a, 0x13, 0x66, 0xf9, 0xfe, - 0x6a, 0xf6, 0x48, 0x8f, 0x22, 0xd3, 0x9a, 0x51, 0xe0, 0xc9, 0x54, 0x71, 0x14, 0xa4, 0x4a, 0x8c, - 0x7f, 0x35, 0x0d, 0x68, 0x43, 0xda, 0x9d, 0x84, 0x71, 0x5d, 0x84, 0xa9, 0xc4, 0x18, 0x6c, 0xdd, - 0x27, 0xe5, 0x3e, 0xf0, 0xce, 0x09, 0xfa, 0x41, 0xcf, 0xe9, 0xb6, 0xc9, 0xf8, 0x25, 0x8b, 0x3f, - 0xa2, 0x7b, 0x30, 0xe9, 0x3b, 0xad, 0x8e, 0xed, 0x1e, 0xf0, 0x1e, 0xf2, 0x44, 0x72, 0x9e, 0x37, - 0xd3, 0xe3, 0x99, 0x16, 0xad, 0x49, 0x3b, 0x25, 0x52, 0x74, 0xc2, 0x17, 0x41, 0xe8, 0x0b, 0x30, - 0xc1, 0x79, 0x0b, 0xf7, 0xa4, 0xe4, 0x2f, 0x55, 0xd4, 0x9d, 0x31, 0x10, 0xa9, 0x77, 0xbb, 0x1b, - 0xfa, 0x87, 0x56, 0x75, 0x47, 0x00, 0x09, 0x7c, 0xaa, 0xe3, 0xb5, 0x88, 0x1b, 0x8a, 0xa9, 0x92, - 0x8c, 0x4f, 0xdd, 0x63, 0x50, 0xfc, 0x72, 0xcc, 0xf6, 0xa0, 0x8a, 0x8b, 0xc5, 0x1f, 0xd1, 0x0a, - 0x00, 0xd6, 0xfb, 0x82, 0x9e, 0xdd, 0x72, 0x82, 0xfa, 0x38, 0xe1, 0x72, 0x02, 0x04, 0x6d, 0xc1, - 0x54, 0xc7, 0xde, 0x71, 0x3a, 0xcd, 0xc0, 0xe9, 0x38, 0xad, 0xd0, 0xf3, 0x83, 0x7a, 0x89, 0x20, - 0x7c, 0x51, 0x85, 0xf0, 0x3d, 0x5c, 0x75, 0x9b, 0xd7, 0xa4, 0x28, 0x4f, 0x76, 0x24, 0x20, 0x32, - 0x60, 0xa2, 0xe7, 0x3b, 0x4d, 0xe7, 0x89, 0xd3, 0x6a, 0xfa, 0x98, 0xb5, 0x96, 0xa9, 0xca, 0xd9, - 0xf3, 0x9d, 0xdb, 0x4f, 0x9c, 0x96, 0x85, 0xf9, 0xea, 0xb3, 0x30, 0xd9, 0xf3, 0x82, 0x50, 0xa8, - 0x04, 0x54, 0x45, 0xc6, 0xd0, 0xa8, 0x56, 0xda, 0xb9, 0x54, 0x51, 0x39, 0x97, 0x62, 0xf3, 0xbd, - 0x4a, 0x08, 0x6b, 0x45, 0x85, 0xb9, 0xc2, 0x77, 0xb5, 0x01, 0x55, 0x46, 0x02, 0x4e, 0xbb, 0xb9, - 0x73, 0xc8, 0xdc, 0x20, 0x0d, 0x65, 0x6b, 0x5e, 0x6f, 0xe3, 0xd0, 0xaa, 0x04, 0xf1, 0x03, 0xba, - 0x41, 0xf6, 0x61, 0xa7, 0xdf, 0x26, 0x9e, 0x2d, 0xaf, 0xef, 0xe3, 0x59, 0x9e, 0x24, 0x13, 0x38, - 0x61, 0x5a, 0x0c, 0x42, 0x46, 0xad, 0xb1, 0x7a, 0x1c, 0xa8, 0xf0, 0x75, 0x4d, 0x29, 0x7c, 0x5d, - 0xd7, 0x61, 0xa1, 0x15, 0xb8, 0xcd, 0xa0, 0x6b, 0xf7, 0x82, 0x7d, 0x2f, 0xa4, 0x06, 0x05, 0x55, - 0xe5, 0x89, 0xbf, 0xc4, 0x9a, 0x6d, 0x05, 0xee, 0x36, 0x2b, 0x25, 0x96, 0x05, 0xd1, 0xe9, 0xcf, - 0x63, 0x9a, 0xa6, 0x03, 0x11, 0x13, 0x23, 0xa8, 0x4f, 0x93, 0xa5, 0x9f, 0xe0, 0x50, 0x4c, 0xba, - 0x01, 0xba, 0x01, 0x33, 0xc9, 0x1d, 0xea, 0x3b, 0xbb, 0x75, 0x94, 0x72, 0x08, 0x4d, 0xcb, 0xbb, - 0xc9, 0x72, 0x76, 0x71, 0xdb, 0x04, 0x71, 0x92, 0xb6, 0x33, 0xe9, 0xb6, 0x32, 0xb1, 0xe2, 0xb6, - 0xd7, 0x61, 0x5a, 0xa2, 0x11, 0xd2, 0x72, 0x36, 0xd5, 0x72, 0x52, 0xa0, 0x19, 0xdc, 0xec, 0x65, - 0x40, 0x32, 0xd9, 0x90, 0x76, 0x73, 0xa9, 0x76, 0x53, 0x22, 0x19, 0xe1, 0x86, 0x9f, 0x83, 0x0a, - 0xc3, 0x95, 0x68, 0xc6, 0xf3, 0xd9, 0x74, 0x42, 0x41, 0x64, 0x63, 0xc3, 0x4e, 0xf4, 0x1f, 0x1b, - 0x80, 0xdd, 0xa0, 0x99, 0xdc, 0x29, 0x0b, 0x64, 0x05, 0x6a, 0xdd, 0x40, 0xde, 0x17, 0xe8, 0x32, - 0xd4, 0x42, 0xdb, 0xdf, 0x73, 0xa8, 0xcd, 0x45, 0x76, 0x5a, 0xbd, 0x4e, 0x3d, 0xae, 0x14, 0xfe, - 0x80, 0x83, 0xd1, 0xd5, 0xc8, 0xd7, 0x40, 0xde, 0xe5, 0x6c, 0xea, 0x5d, 0x80, 0x15, 0x5b, 0xce, - 0xae, 0xde, 0x82, 0xe9, 0x14, 0xcb, 0xc0, 0xd2, 0x2e, 0xb2, 0xce, 0x2d, 0xfc, 0x17, 0xbd, 0x02, - 0x63, 0x8f, 0xed, 0x4e, 0xdf, 0x61, 0x8c, 0xd6, 0x18, 0xbc, 0x1f, 0xee, 0xb9, 0x41, 0x68, 0xd1, - 0x06, 0x37, 0x72, 0xaf, 0x68, 0xfa, 0x3a, 0xcc, 0x28, 0xb6, 0xb9, 0x62, 0x98, 0x59, 0x71, 0x98, - 0xb2, 0xd8, 0x45, 0x00, 0x10, 0xcf, 0x23, 0x7a, 0x59, 0xb2, 0x47, 0x9e, 0x19, 0x3c, 0xeb, 0x82, - 0x65, 0x62, 0x3c, 0xa7, 0xd2, 0xce, 0x2b, 0x30, 0xfe, 0x86, 0xd3, 0x75, 0x7c, 0xb7, 0x45, 0x9d, - 0x4c, 0x0f, 0x3c, 0xff, 0xc0, 0xee, 0xd4, 0x72, 0xfa, 0xaf, 0x69, 0x50, 0x11, 0xf6, 0x29, 0x7a, - 0x1d, 0x8a, 0x94, 0xd4, 0xd9, 0xc0, 0x17, 0x86, 0x6c, 0x6c, 0x73, 0x9b, 0xd4, 0xb6, 0x58, 0x2b, - 0xe3, 0x05, 0x28, 0x52, 0x88, 0x3c, 0x7e, 0x09, 0x0a, 0x6f, 0x07, 0x8e, 0x5f, 0xd3, 0x50, 0x0d, - 0xaa, 0xf7, 0xdc, 0x96, 0xd3, 0x0d, 0x9c, 0x9b, 0xfb, 0x4e, 0xeb, 0x51, 0x2d, 0xa7, 0xdf, 0x85, - 0x49, 0x79, 0x5e, 0x25, 0xd7, 0x62, 0x7e, 0x74, 0xde, 0xa4, 0xff, 0x7e, 0x5e, 0xf2, 0x50, 0x36, - 0x22, 0xfa, 0x15, 0x8c, 0x78, 0x46, 0x9f, 0x64, 0xbf, 0xbf, 0x0a, 0x95, 0x96, 0xef, 0xd8, 0xa1, - 0xd3, 0x8c, 0x54, 0x88, 0xca, 0x9a, 0x6e, 0x52, 0x93, 0xca, 0xe4, 0x67, 0x26, 0xe6, 0x5b, 0xfc, - 0x74, 0xc5, 0x02, 0x5a, 0x1d, 0x03, 0x70, 0xe3, 0x5d, 0xb7, 0xeb, 0x06, 0xfb, 0xb4, 0x71, 0x7e, - 0x78, 0x63, 0x5a, 0x9d, 0x34, 0xfe, 0xac, 0x74, 0x64, 0x90, 0x21, 0x35, 0x07, 0x7a, 0x19, 0x2d, - 0xea, 0x65, 0xa4, 0x92, 0x8d, 0x3d, 0x19, 0xbf, 0xa7, 0xa9, 0xdd, 0x8c, 0x82, 0x63, 0x54, 0x4b, - 0xf8, 0x1c, 0x89, 0x9f, 0x71, 0x7d, 0xc7, 0xf3, 0x43, 0xa7, 0x5d, 0xcb, 0x0b, 0x0e, 0xc8, 0x02, - 0xaa, 0x42, 0x89, 0x28, 0xe2, 0xb8, 0x99, 0xec, 0x43, 0xc5, 0x45, 0x37, 0xed, 0x5e, 0xd8, 0xf7, - 0x9d, 0x76, 0x6d, 0x5c, 0xe1, 0x9c, 0x2c, 0xa5, 0xdd, 0xb3, 0x65, 0xe3, 0x15, 0x98, 0x4e, 0x29, - 0x02, 0x29, 0x07, 0x0d, 0x6d, 0x44, 0xa9, 0xd4, 0x22, 0x6a, 0x5b, 0x2d, 0x47, 0xb4, 0x2c, 0x79, - 0x82, 0x4e, 0x41, 0xcb, 0x4a, 0x18, 0x33, 0xb2, 0x96, 0x95, 0x5e, 0x0e, 0xae, 0x65, 0xed, 0xa4, - 0x4a, 0x8c, 0xaf, 0x43, 0xf9, 0xc1, 0x1d, 0xee, 0x75, 0x6c, 0x40, 0x25, 0x70, 0xfc, 0xc7, 0x8e, - 0xdf, 0xb4, 0xdb, 0x6d, 0x9f, 0x53, 0x1d, 0x05, 0xad, 0xb7, 0xdb, 0x3e, 0x3a, 0x0b, 0xa5, 0xa0, - 0xbf, 0x43, 0x5c, 0x62, 0x8c, 0x09, 0x8c, 0x07, 0xfd, 0x9d, 0x2d, 0x3b, 0xdc, 0x47, 0xe7, 0xa0, - 0x7a, 0x40, 0x5c, 0x4a, 0xf4, 0x84, 0x8d, 0x1d, 0x38, 0x55, 0x08, 0xec, 0x21, 0x01, 0x19, 0xff, - 0xa2, 0xc8, 0x35, 0x3a, 0x2e, 0x1a, 0x08, 0xad, 0x3f, 0x27, 0xb1, 0x8b, 0xba, 0x99, 0xae, 0x22, - 0x7a, 0x2f, 0x10, 0x14, 0x84, 0xe1, 0xc9, 0x7f, 0xb4, 0x09, 0x93, 0x4e, 0xb7, 0xe5, 0x1f, 0x52, - 0x67, 0x0e, 0xe6, 0x5a, 0xd4, 0x1f, 0x65, 0x7c, 0xf8, 0xb4, 0x31, 0x11, 0x97, 0x28, 0xbd, 0x2b, - 0x42, 0xf9, 0x9b, 0xce, 0xa1, 0xf2, 0xec, 0xac, 0xa0, 0x3e, 0x3b, 0x8b, 0xb7, 0xfa, 0x98, 0x24, - 0x5e, 0x24, 0xcc, 0x47, 0x3a, 0x42, 0x2b, 0xaa, 0xb4, 0x9c, 0x1b, 0x70, 0x96, 0xd0, 0x16, 0xde, - 0xe3, 0x29, 0x94, 0xa8, 0xc1, 0xb9, 0xc0, 0x2b, 0x24, 0xbc, 0x01, 0x27, 0x3c, 0x30, 0x33, 0x61, - 0x46, 0x30, 0x80, 0x9b, 0x4e, 0xd7, 0xde, 0xe9, 0x38, 0x6d, 0xa2, 0xd6, 0x95, 0xac, 0x69, 0x2f, - 0xb2, 0x82, 0x6f, 0xd3, 0x02, 0x74, 0x09, 0xca, 0xc1, 0x8b, 0xb2, 0x3f, 0xa9, 0x1c, 0xb9, 0x36, - 0xef, 0x9e, 0xb1, 0x4a, 0xc1, 0x8b, 0xb1, 0x93, 0xa7, 0xbb, 0x1b, 0xc8, 0xbe, 0x24, 0x30, 0x23, - 0x02, 0xbc, 0x7b, 0xc6, 0x2a, 0x77, 0x77, 0x99, 0xeb, 0x49, 0xff, 0xb1, 0x7c, 0x68, 0xf3, 0xd9, - 0xc4, 0x09, 0xc7, 0xf9, 0xc1, 0xd3, 0x3d, 0xea, 0xe9, 0x46, 0x4b, 0xcd, 0x76, 0xca, 0x30, 0xf6, - 0x0e, 0xf9, 0xab, 0xa5, 0xd9, 0x41, 0x0e, 0xd5, 0x61, 0xf6, 0x1d, 0x3a, 0xf5, 0x64, 0xe0, 0x88, - 0x23, 0xe5, 0xd1, 0x2c, 0xd4, 0xe2, 0x12, 0xce, 0x8e, 0x8c, 0x57, 0x55, 0x82, 0xad, 0x08, 0x39, - 0xe2, 0xce, 0xcd, 0xf6, 0x3a, 0x3d, 0xb8, 0xb3, 0x5d, 0x2b, 0x08, 0x8e, 0xa6, 0x1f, 0x45, 0xbc, - 0x84, 0xbf, 0xf4, 0x49, 0x79, 0xc9, 0xed, 0x88, 0x97, 0x44, 0x3a, 0x9d, 0x82, 0x97, 0x88, 0x53, - 0xcc, 0xb9, 0x88, 0x08, 0x33, 0xbe, 0xa3, 0x41, 0x55, 0x54, 0x7e, 0xf1, 0x2e, 0x15, 0x04, 0x17, - 0xf9, 0x8f, 0x96, 0xa0, 0x1c, 0x6b, 0x47, 0x74, 0x11, 0x62, 0x00, 0x56, 0x2e, 0xc8, 0x91, 0x26, - 0x63, 0x1c, 0xf4, 0x01, 0xf7, 0xf3, 0xc8, 0xed, 0x32, 0xdf, 0xb0, 0x45, 0xfe, 0x63, 0xdb, 0x87, - 0x2b, 0xd0, 0x54, 0x84, 0xf0, 0x47, 0xe3, 0x47, 0xf3, 0x5c, 0x0f, 0xe1, 0xa6, 0x62, 0xd2, 0x9a, - 0xd2, 0x86, 0x59, 0x53, 0xb9, 0x41, 0xd6, 0x54, 0x3e, 0x65, 0x4d, 0xdd, 0x4d, 0x5b, 0x53, 0xd4, - 0xfc, 0xe3, 0x56, 0xc5, 0xc8, 0x56, 0x94, 0x99, 0xe0, 0x26, 0xf3, 0x62, 0x07, 0x0a, 0x2e, 0x72, - 0x15, 0xca, 0xb1, 0x01, 0x52, 0x54, 0x19, 0x20, 0x71, 0x39, 0x7a, 0x0e, 0xc6, 0x1f, 0x7b, 0x9d, - 0xfe, 0x01, 0xb3, 0x08, 0x2b, 0x6b, 0x48, 0xec, 0xfd, 0x1d, 0x52, 0x64, 0xf1, 0x2a, 0x82, 0xf2, - 0x41, 0x38, 0x6d, 0x49, 0x54, 0x3e, 0x08, 0xaf, 0xbf, 0x08, 0x63, 0x41, 0x68, 0xef, 0x51, 0x4b, - 0x6f, 0x72, 0x6d, 0x3a, 0x81, 0xea, 0x9e, 0x63, 0xd1, 0xf2, 0xb4, 0x69, 0x08, 0xa3, 0x98, 0x86, - 0x15, 0x85, 0x69, 0x78, 0x33, 0xed, 0xc1, 0xab, 0x32, 0xb5, 0x45, 0x18, 0x5c, 0x16, 0x7d, 0x29, - 0xef, 0xde, 0x02, 0x8c, 0xb7, 0x7c, 0xaa, 0x51, 0x4d, 0x50, 0x26, 0xd0, 0xf2, 0x89, 0x36, 0xb5, - 0x0c, 0x10, 0x7a, 0xa1, 0xdd, 0x69, 0x06, 0xee, 0xfb, 0x0e, 0x39, 0xde, 0x2e, 0x58, 0x65, 0x02, - 0xd9, 0x76, 0xdf, 0x77, 0x94, 0x42, 0x61, 0x4a, 0x2d, 0x14, 0x94, 0xf6, 0x61, 0x6d, 0x34, 0xfb, - 0x50, 0xb4, 0xe1, 0xa8, 0x83, 0x67, 0x9a, 0x60, 0x12, 0xd9, 0x70, 0xd4, 0x8d, 0x98, 0x32, 0x23, - 0xd1, 0xd1, 0xcc, 0xc8, 0x99, 0x23, 0x99, 0x91, 0xb3, 0x19, 0x66, 0xa4, 0xca, 0x14, 0x9c, 0x3b, - 0xb6, 0x29, 0x38, 0x7f, 0x4c, 0x53, 0x70, 0x61, 0xb8, 0x29, 0x98, 0x25, 0x0b, 0xeb, 0x23, 0xc9, - 0xc2, 0x97, 0x65, 0x43, 0xf2, 0x6c, 0x7a, 0x6f, 0x66, 0x18, 0x90, 0x73, 0x50, 0x6c, 0xf9, 0xcd, - 0xbe, 0xdb, 0xae, 0xeb, 0x94, 0xa1, 0xb5, 0xfc, 0xb7, 0xdd, 0x36, 0x26, 0x25, 0xdf, 0x09, 0x71, - 0xff, 0x5e, 0xb7, 0xd9, 0x73, 0x7c, 0xd7, 0x6b, 0xd7, 0x17, 0x89, 0xa7, 0x6f, 0x2a, 0x82, 0x6f, - 0x11, 0x30, 0xba, 0x06, 0x55, 0x29, 0xf6, 0x64, 0x49, 0x11, 0x7b, 0x52, 0x11, 0xa2, 0x44, 0xd0, - 0x43, 0x58, 0xe8, 0x07, 0x8e, 0xcf, 0xd5, 0x0a, 0x12, 0x7c, 0x42, 0x0f, 0x89, 0xeb, 0xcb, 0x64, - 0xa3, 0x2e, 0x88, 0x6d, 0xcd, 0x75, 0x7a, 0xf8, 0x8c, 0x11, 0x9f, 0xc3, 0xed, 0x36, 0xe2, 0x66, - 0xb4, 0x28, 0x69, 0xab, 0xae, 0x0c, 0xb2, 0x55, 0x33, 0x2c, 0xe6, 0x46, 0x86, 0xc5, 0xfc, 0x26, - 0xd4, 0xf8, 0x09, 0x0e, 0x3b, 0x19, 0x0b, 0xea, 0xab, 0x64, 0x9b, 0xac, 0x8a, 0x93, 0xcb, 0x8e, - 0x5b, 0xb6, 0x58, 0x15, 0xca, 0x3a, 0xa7, 0x7c, 0x19, 0xaa, 0x34, 0xbf, 0xcf, 0xa9, 0xcd, 0xef, - 0x97, 0x60, 0xbe, 0x83, 0x41, 0xd1, 0xee, 0x8c, 0xd4, 0x1b, 0x83, 0xa8, 0x37, 0xb3, 0xa4, 0x94, - 0xef, 0x49, 0xa6, 0xe1, 0x9c, 0x86, 0x89, 0xbc, 0x01, 0xb3, 0xaa, 0x97, 0x39, 0x52, 0x1f, 0x8f, - 0x24, 0x33, 0xfb, 0x9a, 0xa4, 0x37, 0x2f, 0xaa, 0x69, 0xf2, 0xf8, 0xe6, 0xf5, 0xa7, 0x61, 0x52, - 0x66, 0xa7, 0x18, 0xd5, 0x7e, 0x74, 0xa0, 0x89, 0xff, 0x46, 0x62, 0x3e, 0x17, 0x8b, 0x79, 0xfd, - 0x37, 0x0b, 0x50, 0xa4, 0x12, 0xe5, 0x18, 0x5a, 0x40, 0x0d, 0xf2, 0xbd, 0xc7, 0x2d, 0xa6, 0x03, - 0xe0, 0xbf, 0x68, 0x11, 0xca, 0x6c, 0x17, 0xf0, 0x23, 0x62, 0xab, 0x44, 0x01, 0x9b, 0xed, 0x23, - 0x0b, 0xcd, 0x06, 0x54, 0xda, 0xbe, 0x8b, 0x0d, 0x1c, 0x82, 0x17, 0x75, 0x9d, 0x02, 0x05, 0x11, - 0xfe, 0x37, 0x0b, 0x63, 0xef, 0x7b, 0xdd, 0xc8, 0x71, 0x4a, 0x1f, 0xd0, 0x67, 0x60, 0x9c, 0xc5, - 0x0d, 0x32, 0x5f, 0x69, 0x23, 0x2d, 0x3e, 0x4d, 0x6a, 0xe4, 0x30, 0x12, 0xe5, 0xf5, 0x13, 0x92, - 0xa5, 0x9c, 0x94, 0x2c, 0x0d, 0xa8, 0xd8, 0xad, 0xb0, 0xcf, 0xcb, 0x81, 0x94, 0x03, 0x05, 0x91, - 0x0a, 0xa9, 0xd0, 0x82, 0x8a, 0x22, 0xb4, 0x60, 0x0e, 0x8a, 0xbd, 0xc7, 0x2d, 0x3c, 0x41, 0x55, - 0x4a, 0x32, 0xbd, 0xc7, 0xad, 0xcd, 0x36, 0x5a, 0x85, 0x0a, 0x89, 0x80, 0xc2, 0x02, 0xc1, 0xf1, - 0x99, 0xc8, 0x13, 0x41, 0xe8, 0x02, 0x4c, 0x32, 0xa1, 0xcf, 0x24, 0x01, 0x0b, 0xed, 0x4a, 0x40, - 0xf5, 0x1b, 0x50, 0x15, 0x5f, 0xef, 0x48, 0x44, 0xfb, 0xb7, 0x73, 0x92, 0x1a, 0x7f, 0x3d, 0xa1, - 0xc6, 0x2f, 0xab, 0x97, 0x6c, 0x54, 0xf5, 0xfd, 0x8f, 0x7f, 0x91, 0xdd, 0x06, 0x68, 0x1e, 0x10, - 0x31, 0xcd, 0xe8, 0x2b, 0xde, 0x77, 0x83, 0x00, 0xc3, 0xc1, 0xe8, 0xc2, 0x18, 0xd1, 0x93, 0x52, - 0x38, 0x6f, 0x76, 0x5d, 0xdc, 0x69, 0x4d, 0x43, 0x53, 0x50, 0xd9, 0x8a, 0x25, 0x60, 0x2d, 0x87, - 0x6a, 0x50, 0xdd, 0x12, 0x44, 0x1b, 0x8d, 0x19, 0xa3, 0xb4, 0x17, 0xd4, 0x0a, 0xb8, 0x78, 0xbd, - 0xd7, 0xeb, 0xb8, 0x54, 0xd0, 0x06, 0xb5, 0x31, 0x6c, 0x57, 0xdc, 0x71, 0xbb, 0x76, 0xa7, 0x56, - 0x34, 0x3c, 0xa8, 0x52, 0x14, 0x8e, 0x13, 0x1d, 0xb5, 0x16, 0x89, 0x40, 0xc1, 0x34, 0xa8, 0x08, - 0xcb, 0xc6, 0x5a, 0x30, 0xe9, 0x47, 0x0c, 0x82, 0xbf, 0xcc, 0x43, 0x19, 0x63, 0x49, 0xd7, 0xfc, - 0x55, 0x18, 0xc3, 0x12, 0x9b, 0xfb, 0xc4, 0x66, 0xcc, 0xa8, 0x88, 0xfc, 0xdb, 0x0c, 0x9d, 0x83, - 0x8d, 0xda, 0x47, 0x4f, 0x1b, 0xd5, 0x43, 0xfb, 0xa0, 0x73, 0xc3, 0x20, 0x75, 0x0d, 0x8b, 0xb6, - 0xd1, 0xbf, 0x9b, 0x83, 0x12, 0xaf, 0x85, 0x9a, 0x50, 0xed, 0x79, 0xed, 0x48, 0xbe, 0xb0, 0x0e, - 0x9f, 0x55, 0x74, 0x68, 0x6e, 0x79, 0x6d, 0xce, 0xae, 0x09, 0xd1, 0x6e, 0xcc, 0x7f, 0xf4, 0xb4, - 0x81, 0xe8, 0x08, 0xbd, 0xb8, 0xcc, 0xb0, 0x2a, 0xc2, 0x13, 0xfa, 0x1c, 0x8c, 0xdb, 0x2d, 0xba, - 0xd5, 0x73, 0xa4, 0xef, 0x69, 0xa1, 0xef, 0x75, 0x52, 0xb2, 0x81, 0x3e, 0x7a, 0xda, 0x98, 0xa4, - 0x1d, 0xb1, 0xba, 0x86, 0xc5, 0x5b, 0x61, 0xfe, 0xd6, 0xf2, 0xba, 0xa1, 0xed, 0xe2, 0x2d, 0x47, - 0xf9, 0x58, 0x0c, 0xd0, 0x5f, 0x87, 0x5a, 0x12, 0xaf, 0x23, 0x6d, 0xa6, 0xdf, 0xd3, 0xa0, 0x48, - 0xb1, 0x40, 0xd7, 0x81, 0x4c, 0x38, 0xb6, 0x93, 0xba, 0x94, 0x29, 0x97, 0x36, 0xe6, 0x3e, 0x7a, - 0xda, 0x98, 0xa6, 0x98, 0xc5, 0x65, 0x86, 0x25, 0x54, 0x44, 0xb7, 0x60, 0xda, 0xef, 0x63, 0x2b, - 0xaf, 0x89, 0x69, 0x91, 0x1c, 0x03, 0xb0, 0x03, 0xb2, 0x8d, 0xb3, 0x1f, 0x3d, 0x6d, 0xcc, 0xf1, - 0x25, 0xe8, 0x6e, 0x76, 0xb7, 0x49, 0x85, 0x2d, 0xaf, 0x6d, 0x58, 0x93, 0x32, 0x20, 0xc6, 0x30, - 0x2f, 0x60, 0x68, 0x7c, 0x1d, 0xc0, 0x8a, 0x1d, 0x5c, 0x47, 0x22, 0xb2, 0x6b, 0x00, 0x64, 0xb9, - 0x45, 0x1a, 0x83, 0x78, 0xea, 0x59, 0xfd, 0xb2, 0xcf, 0x01, 0xc6, 0x6b, 0x30, 0x61, 0x39, 0xbd, - 0x8e, 0xdd, 0x62, 0x27, 0x14, 0xc6, 0x55, 0x95, 0x74, 0x8b, 0x3d, 0x71, 0x9a, 0xe0, 0xa1, 0xcb, - 0x19, 0x7f, 0x77, 0x0e, 0x2a, 0x2c, 0x06, 0x99, 0x50, 0xe8, 0x3c, 0x14, 0x29, 0xf5, 0xb2, 0x65, - 0x60, 0x4f, 0x2a, 0x13, 0x32, 0xa7, 0x34, 0x21, 0x37, 0xd3, 0x86, 0x60, 0x9e, 0xa9, 0x33, 0xc2, - 0x38, 0x23, 0x59, 0x82, 0x0f, 0x61, 0x3a, 0x12, 0x88, 0xcd, 0x03, 0xbb, 0xd7, 0x73, 0xbb, 0x7b, - 0xcc, 0xaa, 0x34, 0xa4, 0xce, 0x22, 0xad, 0xe6, 0x3e, 0xad, 0x44, 0xbb, 0xab, 0x75, 0x13, 0x60, - 0x74, 0x03, 0x2b, 0xf5, 0x64, 0xaa, 0xf8, 0x79, 0xe7, 0x18, 0x61, 0xbd, 0x33, 0xa6, 0x34, 0x83, - 0x26, 0x3f, 0xdd, 0x14, 0x60, 0x42, 0x80, 0x78, 0x91, 0x05, 0x88, 0x8b, 0x18, 0x28, 0x44, 0xec, - 0xab, 0xa2, 0x5d, 0x4a, 0x8d, 0xcd, 0x65, 0xa9, 0x0d, 0xfb, 0xdf, 0xe6, 0x3a, 0x96, 0x68, 0xa7, - 0x3e, 0x1f, 0xdb, 0xa9, 0x25, 0xce, 0x2a, 0x84, 0xa6, 0x49, 0x43, 0x55, 0xb0, 0xdb, 0xcb, 0xb2, - 0xdd, 0x7e, 0x1b, 0x1a, 0xdc, 0x0c, 0xa3, 0x92, 0x98, 0x28, 0xfd, 0x92, 0x61, 0x03, 0x44, 0xc2, - 0x2f, 0xb1, 0x6a, 0x0f, 0x59, 0x2d, 0x4b, 0xb2, 0x73, 0x64, 0xe9, 0x5d, 0x49, 0x4a, 0x6f, 0xa5, - 0xb1, 0x57, 0x3d, 0xae, 0xb1, 0x37, 0x31, 0x92, 0xb1, 0x37, 0xa9, 0x30, 0xf6, 0x32, 0xcc, 0xb1, - 0xa9, 0x51, 0xcc, 0xb1, 0xaf, 0xc0, 0x9c, 0xa4, 0x60, 0x44, 0x14, 0x57, 0x63, 0xc7, 0xd8, 0xf2, - 0x7a, 0xc7, 0x5a, 0x87, 0x44, 0x74, 0x33, 0x41, 0xba, 0x04, 0x5d, 0x06, 0x26, 0x12, 0x08, 0x36, - 0xd3, 0x29, 0x6c, 0x98, 0x62, 0x87, 0xb1, 0x68, 0xc2, 0x42, 0xc2, 0x1c, 0x88, 0xf0, 0x40, 0xec, - 0x74, 0x5a, 0xa2, 0x21, 0x49, 0x93, 0x96, 0x30, 0x99, 0xf3, 0x55, 0x65, 0xa8, 0x03, 0x4b, 0xc9, - 0x01, 0xf0, 0x3e, 0x89, 0x46, 0x99, 0x21, 0xa3, 0x5c, 0x1d, 0x30, 0x0a, 0xde, 0x6d, 0xd2, 0x48, - 0x67, 0xfd, 0xac, 0xf2, 0x01, 0x56, 0xc6, 0x6c, 0xb6, 0x95, 0x81, 0x3e, 0x0d, 0x0b, 0xec, 0xb6, - 0x44, 0xbb, 0x99, 0xa0, 0x8d, 0x39, 0x42, 0x1b, 0x73, 0x7e, 0x62, 0xef, 0x50, 0x1a, 0xb9, 0x4b, - 0x48, 0x09, 0x17, 0xf0, 0x10, 0x84, 0x79, 0x16, 0x21, 0xa5, 0xd8, 0x77, 0xbc, 0x29, 0xde, 0xba, - 0x64, 0xb7, 0x13, 0xe8, 0x36, 0x77, 0x2a, 0x49, 0x06, 0xdf, 0xc2, 0xc0, 0xc3, 0xc9, 0x53, 0x30, - 0x8a, 0x6e, 0xc2, 0x9c, 0x92, 0x89, 0x1d, 0xa9, 0x93, 0x3b, 0x50, 0xcf, 0xa2, 0xcb, 0x23, 0xf5, - 0x73, 0x17, 0xf4, 0x6c, 0xba, 0x3a, 0x52, 0x4f, 0xf7, 0x60, 0x65, 0x30, 0xed, 0x1c, 0xa9, 0xb7, - 0x3f, 0xd1, 0x60, 0x56, 0xb5, 0x78, 0xe8, 0x4b, 0xa9, 0x75, 0xa7, 0x2a, 0xf5, 0xa7, 0x86, 0xae, - 0xbb, 0x29, 0x3e, 0xf5, 0x83, 0x04, 0x19, 0x18, 0x5f, 0x80, 0x49, 0xb9, 0x02, 0x9a, 0x80, 0xf2, - 0x96, 0xef, 0xf4, 0x6c, 0x1f, 0xeb, 0xaf, 0x67, 0x24, 0x3d, 0x59, 0xc3, 0x85, 0xef, 0x38, 0xbe, - 0xbb, 0x7b, 0x48, 0x9d, 0xe3, 0x55, 0x28, 0x61, 0x4d, 0x94, 0x3c, 0xe5, 0xf5, 0x7f, 0xa6, 0x41, - 0x2d, 0xc9, 0xf2, 0x3f, 0x19, 0xf7, 0xf0, 0x91, 0x65, 0x99, 0xfe, 0xfd, 0x7c, 0x64, 0xca, 0x32, - 0xc3, 0x54, 0x8b, 0x0d, 0xd3, 0xcb, 0x50, 0x63, 0x5b, 0x34, 0x89, 0xf6, 0x14, 0x85, 0xc7, 0x4e, - 0x07, 0xcc, 0xc4, 0x69, 0x55, 0x2a, 0xb9, 0xd8, 0x4b, 0x54, 0x29, 0x90, 0x8d, 0x70, 0x3e, 0x5e, - 0x4d, 0x56, 0x8b, 0xbe, 0x15, 0x5f, 0x1b, 0x56, 0xed, 0x5a, 0xc2, 0xe4, 0x1d, 0x2a, 0x90, 0x8f, - 0x69, 0xf3, 0xde, 0x48, 0xda, 0xbc, 0xab, 0x0a, 0x51, 0x7c, 0x2c, 0xa3, 0xf7, 0x44, 0xd6, 0xe4, - 0x5f, 0x0c, 0xbb, 0xc9, 0xa3, 0x9e, 0x8d, 0x51, 0xcd, 0xc9, 0xbf, 0xfe, 0x31, 0x9a, 0x93, 0x54, - 0x31, 0xcd, 0x32, 0x27, 0x8d, 0x00, 0x2b, 0xb8, 0xe4, 0x5d, 0x8e, 0xa3, 0x4f, 0x5f, 0x87, 0x2a, - 0xa7, 0x26, 0x57, 0xbc, 0xd3, 0x22, 0x4c, 0x0f, 0x6b, 0x53, 0xf1, 0x63, 0x90, 0x31, 0x07, 0x33, - 0x77, 0x1d, 0xbb, 0x13, 0xee, 0xb3, 0xf9, 0x72, 0xbe, 0xd1, 0x77, 0x82, 0xd0, 0x98, 0x87, 0x59, - 0x19, 0x1c, 0xf4, 0xbc, 0x6e, 0xe0, 0x18, 0x1f, 0x40, 0xf9, 0x2d, 0xf7, 0xc0, 0xb1, 0xec, 0xee, - 0x9e, 0x83, 0x3e, 0x03, 0x10, 0x84, 0xb6, 0x1f, 0x36, 0xa3, 0xd8, 0xd0, 0xc1, 0x41, 0x05, 0x65, - 0x52, 0x9b, 0xc4, 0x14, 0x5c, 0x27, 0x77, 0x38, 0x46, 0x0d, 0x65, 0x18, 0x77, 0xba, 0x6d, 0xfc, - 0x64, 0xfc, 0x38, 0x0f, 0xb5, 0xdb, 0xdd, 0xfe, 0x81, 0xe3, 0xdb, 0x21, 0xd3, 0xe0, 0x02, 0x74, - 0x1d, 0x8a, 0x44, 0xa1, 0xe6, 0xd6, 0xe6, 0xb2, 0x99, 0xac, 0x42, 0xb5, 0x70, 0x46, 0xb4, 0xac, - 0x32, 0xde, 0x26, 0x07, 0xf6, 0x13, 0x16, 0xf9, 0x1b, 0x10, 0x2c, 0x0a, 0x16, 0x1c, 0xd8, 0x4f, - 0xe8, 0xec, 0x07, 0x58, 0x9b, 0xc1, 0xf8, 0x35, 0x7d, 0xfc, 0xb2, 0x2c, 0x66, 0x02, 0xcc, 0xe8, - 0xf5, 0xad, 0x72, 0x18, 0xcd, 0x44, 0x03, 0x2a, 0x44, 0xb9, 0xd8, 0x75, 0x3b, 0x58, 0x37, 0xa5, - 0xfb, 0x98, 0x1c, 0x1b, 0xdd, 0x21, 0x10, 0x64, 0xc2, 0x0c, 0x97, 0xb3, 0x62, 0x45, 0xca, 0xaf, - 0xa6, 0x59, 0xd1, 0x83, 0xb8, 0xfe, 0x39, 0xa8, 0xb2, 0x13, 0x59, 0xb7, 0xdb, 0x76, 0x9e, 0x90, - 0x4d, 0x5c, 0xb0, 0x2a, 0x14, 0xb6, 0x89, 0x41, 0xe8, 0x35, 0xd0, 0xb9, 0x2e, 0xda, 0xc6, 0x84, - 0xd5, 0x11, 0x94, 0x88, 0x80, 0x9d, 0x17, 0xd7, 0x59, 0x8d, 0x5b, 0xac, 0x82, 0x25, 0x1c, 0x10, - 0x21, 0x8e, 0x50, 0xdf, 0x6d, 0x73, 0x7c, 0xe8, 0xc9, 0x4f, 0x8d, 0x95, 0xbc, 0xed, 0xb6, 0x19, - 0x3a, 0xf3, 0x50, 0x24, 0x97, 0x0d, 0x83, 0x7a, 0x99, 0xb0, 0x0c, 0xf6, 0xa4, 0x7f, 0x06, 0x2a, - 0xc2, 0xd4, 0x1e, 0x65, 0x5f, 0x1b, 0xdf, 0xd3, 0x60, 0x51, 0x0e, 0x0f, 0xbd, 0x49, 0xe2, 0x55, - 0x18, 0x05, 0xa2, 0x17, 0x52, 0xc4, 0x3f, 0x65, 0xd2, 0x1a, 0x99, 0x5b, 0xe0, 0xb5, 0x74, 0xa4, - 0x68, 0x76, 0x20, 0x6a, 0x32, 0x7c, 0xd4, 0x58, 0x81, 0x25, 0x35, 0x3e, 0x8c, 0xf4, 0xd3, 0x08, - 0xbf, 0xdd, 0x6b, 0xff, 0x42, 0x21, 0xcc, 0xf1, 0x61, 0x08, 0xff, 0x13, 0x0d, 0x56, 0xe4, 0x0a, - 0xd1, 0xbe, 0xe0, 0x38, 0xcf, 0x41, 0xd1, 0xf3, 0xf7, 0xe2, 0x4b, 0x2b, 0x63, 0x9e, 0xbf, 0xb7, - 0xd9, 0x46, 0x37, 0xa3, 0x1d, 0x95, 0x63, 0x5a, 0xf2, 0xe0, 0x7e, 0x54, 0xfb, 0xeb, 0x24, 0xb4, - 0xe1, 0x40, 0x23, 0x73, 0x40, 0xfa, 0x72, 0x68, 0x03, 0xa6, 0xe5, 0xa9, 0x73, 0x23, 0x6f, 0xd3, - 0x9c, 0xa9, 0x0a, 0x72, 0xb6, 0x6a, 0xd2, 0xf4, 0xb9, 0x4e, 0x60, 0x7c, 0x35, 0x39, 0x81, 0x9b, - 0xdd, 0xa0, 0x47, 0xf4, 0xde, 0x81, 0xb3, 0xa3, 0xf0, 0x81, 0x73, 0x4f, 0x79, 0x3e, 0xf2, 0x94, - 0x1b, 0x4d, 0x58, 0xce, 0xe8, 0x9c, 0xbd, 0xc1, 0xeb, 0xea, 0xb8, 0xe6, 0x4c, 0xfc, 0x93, 0xcb, - 0xff, 0x6e, 0x92, 0x1c, 0x6f, 0xb1, 0x8b, 0xd6, 0xa7, 0x80, 0x7c, 0x8a, 0xb4, 0x78, 0xdf, 0x8c, - 0xb4, 0x7e, 0x53, 0x83, 0x67, 0x13, 0x48, 0x12, 0x86, 0xb0, 0xef, 0xf6, 0xe4, 0x4d, 0x71, 0x04, - 0x2c, 0x2e, 0x41, 0xd9, 0xe3, 0x9d, 0x44, 0xdc, 0x36, 0xea, 0xd6, 0x8a, 0x0b, 0x39, 0xbe, 0x85, - 0x18, 0xdf, 0x8b, 0x70, 0x7e, 0x08, 0x3a, 0x0c, 0xf1, 0xff, 0x59, 0x82, 0x45, 0xf9, 0x90, 0xe3, - 0xc4, 0x5c, 0xe7, 0xa2, 0x7a, 0x13, 0xa7, 0xe3, 0xd3, 0x4f, 0x37, 0x0a, 0x5d, 0xe1, 0xa8, 0x2a, - 0x0c, 0x8b, 0x75, 0x18, 0x1b, 0x14, 0xeb, 0x50, 0x4c, 0xc5, 0x3a, 0x7c, 0x25, 0xed, 0xe2, 0xa2, - 0xfe, 0x9d, 0x4f, 0x99, 0x03, 0xe6, 0xf0, 0x78, 0x21, 0xe4, 0xa5, 0x51, 0xe2, 0x04, 0xca, 0x8a, - 0x38, 0x01, 0xa5, 0x4b, 0x06, 0x46, 0x73, 0xc9, 0x0c, 0x38, 0x33, 0xaf, 0x1c, 0xe9, 0xcc, 0xbc, - 0x7a, 0x84, 0xd0, 0xeb, 0x89, 0x13, 0x84, 0x5e, 0x4f, 0x1e, 0xfb, 0xbc, 0x7d, 0xea, 0x98, 0xe7, - 0xed, 0xb5, 0xe1, 0xe7, 0xed, 0x77, 0xe5, 0x13, 0x73, 0x7a, 0x43, 0xff, 0xe2, 0x40, 0x12, 0x39, - 0x52, 0x0c, 0x36, 0xca, 0x38, 0x51, 0x4e, 0xf8, 0x2e, 0x66, 0x7e, 0xce, 0xbe, 0x0b, 0x63, 0x4d, - 0x3a, 0x8c, 0x1d, 0xe9, 0x4c, 0x15, 0x33, 0x52, 0xf5, 0x3c, 0x30, 0x7e, 0xf4, 0x1b, 0xe3, 0x49, - 0x7e, 0x74, 0x62, 0xa5, 0xe2, 0x97, 0xfc, 0x48, 0x9e, 0xc3, 0x8f, 0x99, 0x1f, 0x09, 0xb7, 0x90, - 0x40, 0xbe, 0x85, 0xa4, 0xe4, 0x54, 0x95, 0x13, 0x73, 0xaa, 0xea, 0x00, 0x4e, 0xf5, 0xff, 0x08, - 0x0b, 0x3a, 0x8d, 0xdd, 0x9d, 0xda, 0xa9, 0x09, 0xcd, 0xe1, 0x3f, 0xe5, 0x60, 0x45, 0xae, 0x70, - 0x7c, 0x6d, 0x7a, 0x70, 0x3f, 0x4a, 0x6b, 0x55, 0xb1, 0xbd, 0xf2, 0xca, 0xed, 0x95, 0xb1, 0x6c, - 0x85, 0x51, 0x96, 0xed, 0x75, 0x98, 0x76, 0x38, 0x32, 0x4d, 0xee, 0x0c, 0xa2, 0x5e, 0xa7, 0xe9, - 0x94, 0x51, 0x6d, 0xd5, 0x9c, 0x04, 0xe4, 0x24, 0x2a, 0xff, 0x77, 0x34, 0x68, 0x64, 0x4e, 0x0b, - 0xd3, 0x98, 0x3f, 0x0f, 0xb5, 0x44, 0x48, 0x60, 0xac, 0xf2, 0xab, 0x22, 0xee, 0xad, 0x29, 0x39, - 0x1c, 0x90, 0xd8, 0xfc, 0xd4, 0x4f, 0x45, 0x9d, 0xec, 0xcc, 0xe6, 0x27, 0x20, 0x7a, 0x45, 0xf2, - 0xab, 0x49, 0x2a, 0x38, 0x65, 0x93, 0x20, 0xa3, 0xf3, 0xd8, 0x24, 0x48, 0xc6, 0x3c, 0x72, 0x93, - 0x40, 0xf9, 0x7e, 0x89, 0x70, 0x47, 0xe3, 0x5b, 0x5a, 0x52, 0x9a, 0x1c, 0xdb, 0x26, 0x48, 0xc7, - 0xac, 0xe7, 0x55, 0x31, 0xeb, 0x69, 0x55, 0x3c, 0xb5, 0x8f, 0x12, 0xa6, 0xc3, 0x9f, 0x69, 0xd0, - 0x60, 0x79, 0x56, 0x84, 0xd8, 0xb4, 0x63, 0x5b, 0x0d, 0xaa, 0x5c, 0x4f, 0xf9, 0x63, 0xe6, 0x7a, - 0x2a, 0x8c, 0x90, 0xeb, 0x89, 0xbd, 0xf0, 0x58, 0xfc, 0xc2, 0x06, 0xac, 0x66, 0xbf, 0x0f, 0xb7, - 0x97, 0xc6, 0x60, 0x96, 0x55, 0x3a, 0xb1, 0xbd, 0x21, 0xe5, 0x18, 0xcb, 0x1d, 0x2f, 0xc7, 0x58, - 0xfe, 0x74, 0x72, 0x8c, 0x65, 0xdc, 0x93, 0xc8, 0x0a, 0xc0, 0x1c, 0x1b, 0x29, 0x00, 0x73, 0x40, - 0x1a, 0xab, 0xe2, 0x09, 0xd3, 0x58, 0x8d, 0x8f, 0x94, 0xc6, 0xaa, 0x34, 0x2c, 0x8d, 0x55, 0xf9, - 0x78, 0x69, 0xac, 0x6e, 0x08, 0x69, 0xac, 0x40, 0x4e, 0x43, 0x25, 0x6b, 0xc7, 0xe9, 0x7c, 0x56, - 0xa7, 0x9d, 0x3e, 0x69, 0x01, 0xe6, 0x12, 0x23, 0x73, 0xfb, 0x38, 0x17, 0x11, 0xea, 0x89, 0x15, - 0xd1, 0x5f, 0x12, 0xea, 0x50, 0x42, 0x15, 0x16, 0x22, 0xc1, 0x31, 0xfe, 0x22, 0x07, 0x0b, 0xac, - 0x64, 0x54, 0x3d, 0xe3, 0xb5, 0x84, 0x9e, 0xf1, 0xac, 0x99, 0xd1, 0x41, 0x96, 0x82, 0xc1, 0xb5, - 0x53, 0x9a, 0xca, 0x87, 0x73, 0xfc, 0x49, 0x06, 0xa6, 0x19, 0x7c, 0x82, 0x8f, 0x6f, 0x7e, 0xaf, - 0xc0, 0xb4, 0xd7, 0xed, 0x1c, 0xca, 0x3c, 0x9a, 0xde, 0x9c, 0x9a, 0xc2, 0x05, 0x02, 0xbb, 0x3d, - 0x89, 0xe6, 0x71, 0x07, 0xea, 0xe9, 0x79, 0x62, 0x02, 0xf9, 0x0a, 0x94, 0x18, 0xfb, 0xe0, 0x9a, - 0xc6, 0xa4, 0x29, 0xa5, 0x1d, 0xb3, 0xa2, 0x72, 0xe3, 0x83, 0x68, 0x29, 0x8f, 0xaf, 0x33, 0x8c, - 0xbc, 0x08, 0x69, 0xb9, 0xbb, 0x01, 0xf3, 0xc9, 0xe1, 0xd9, 0x4b, 0x5c, 0x8a, 0x0d, 0x2e, 0x8d, - 0x25, 0xcd, 0x91, 0xdf, 0x81, 0x17, 0x1b, 0x7f, 0xa4, 0x45, 0xbb, 0xff, 0xe7, 0xad, 0x38, 0x28, - 0xf2, 0x45, 0x16, 0x94, 0xf9, 0x22, 0xd3, 0x02, 0x37, 0xde, 0x33, 0x09, 0xd5, 0xe2, 0x07, 0x1a, - 0x2c, 0x25, 0x2e, 0xc6, 0x9d, 0x58, 0xda, 0x7e, 0x4e, 0x41, 0xed, 0x83, 0x52, 0xf2, 0x24, 0xf7, - 0x80, 0xb1, 0x03, 0xcb, 0x19, 0x38, 0xb1, 0xe5, 0x59, 0x57, 0x8c, 0xa0, 0xb1, 0xe0, 0x66, 0x65, - 0x92, 0xa1, 0xf4, 0x18, 0x8a, 0x17, 0x3f, 0x31, 0xf7, 0x3e, 0xf1, 0x8b, 0x37, 0x52, 0x2f, 0x9e, - 0x60, 0x71, 0x36, 0x56, 0x04, 0xa5, 0x0a, 0xa3, 0x72, 0x3a, 0xc5, 0x36, 0xc9, 0xa9, 0xb6, 0x89, - 0xb1, 0x87, 0x75, 0xb3, 0xac, 0x21, 0xd8, 0xfc, 0xdf, 0x84, 0xe9, 0xe4, 0x8b, 0xf2, 0xcd, 0x9e, - 0xb5, 0x00, 0xb5, 0xc4, 0xbb, 0x06, 0xc6, 0xff, 0xaf, 0xa5, 0xde, 0xf6, 0x13, 0xe1, 0x02, 0x2d, - 0x58, 0xc9, 0x42, 0xe3, 0xf4, 0xc8, 0xed, 0xab, 0x29, 0x6a, 0x3b, 0xc5, 0xa3, 0x87, 0x34, 0xd9, - 0x24, 0x76, 0xf9, 0xf7, 0x34, 0x38, 0x9f, 0x44, 0xf4, 0x13, 0x3d, 0x7c, 0xb8, 0x04, 0x17, 0x86, - 0xe1, 0xc3, 0x50, 0xff, 0xab, 0x1c, 0x54, 0x6e, 0x1f, 0xd8, 0x6e, 0x87, 0xe9, 0x3a, 0x08, 0x0a, - 0xbb, 0xbe, 0x77, 0xc0, 0x31, 0xc1, 0xff, 0x91, 0x0e, 0x25, 0xdf, 0x69, 0x39, 0xee, 0x63, 0x72, - 0x8e, 0x9c, 0xc7, 0x9a, 0x28, 0x7f, 0xc6, 0xf5, 0xf7, 0xbd, 0x20, 0x64, 0xcc, 0x90, 0xfc, 0x27, - 0xd7, 0xa3, 0x3d, 0x3f, 0x64, 0x61, 0x1e, 0xe4, 0x3f, 0x09, 0x3f, 0x71, 0xba, 0xf4, 0x38, 0xb8, - 0xf3, 0xd8, 0x69, 0xb3, 0xd3, 0xe0, 0x2a, 0x06, 0x5a, 0x0c, 0x86, 0x2b, 0x91, 0x9b, 0xd0, 0xc4, - 0x45, 0x10, 0x04, 0x1d, 0xa2, 0xf7, 0x96, 0xac, 0x6a, 0x04, 0xdc, 0x0e, 0x3a, 0xe8, 0x1a, 0xcc, - 0x08, 0x17, 0xad, 0xc9, 0xf9, 0x7d, 0xd8, 0x09, 0xd8, 0xcd, 0x60, 0x14, 0x17, 0x6d, 0xb3, 0x12, - 0x74, 0x01, 0x26, 0xed, 0x7e, 0xb8, 0x8f, 0xe7, 0x81, 0xb9, 0x29, 0xa8, 0x17, 0x2c, 0x01, 0xc5, - 0xa3, 0x63, 0x48, 0xb3, 0x1f, 0x38, 0xbe, 0xe0, 0x70, 0xaf, 0x62, 0xe0, 0xdb, 0x0c, 0x86, 0xde, - 0x60, 0x95, 0x7a, 0x76, 0x10, 0xbc, 0xe7, 0xf9, 0xec, 0xb6, 0xc3, 0x48, 0xb7, 0xbc, 0x49, 0x47, - 0x5b, 0xac, 0x9d, 0xf1, 0x5b, 0xe4, 0xba, 0x2a, 0x9d, 0x45, 0x12, 0x46, 0x72, 0x41, 0xba, 0x4a, - 0x83, 0x4c, 0xb1, 0x50, 0xbc, 0x7c, 0xfe, 0x02, 0x54, 0x1d, 0xbc, 0x60, 0xf2, 0x65, 0xe7, 0xaa, - 0x29, 0xac, 0xe2, 0xdd, 0x33, 0x56, 0xc5, 0x89, 0x1f, 0x8d, 0x15, 0x21, 0x2c, 0xf9, 0xc1, 0x3b, - 0xeb, 0xf7, 0x36, 0x6f, 0xd1, 0xdb, 0xc5, 0xb7, 0xef, 0xaf, 0x6f, 0xde, 0xab, 0x69, 0xc2, 0xed, - 0xde, 0x0f, 0x60, 0x92, 0x8f, 0x7b, 0xd2, 0x6b, 0xbd, 0x6b, 0x30, 0xc1, 0xa9, 0x44, 0x0c, 0xff, - 0x98, 0x90, 0x5e, 0xcc, 0xaa, 0xfa, 0xc2, 0x93, 0xf1, 0xab, 0x30, 0xc7, 0x4b, 0x4f, 0x2c, 0x26, - 0x8f, 0x33, 0x7e, 0x1d, 0xe6, 0x93, 0xe3, 0xb3, 0x7d, 0xf2, 0x2e, 0xd4, 0x79, 0xc9, 0xa9, 0x8b, - 0x84, 0x2f, 0xc0, 0x59, 0x45, 0xdf, 0x8c, 0x39, 0x3e, 0x0f, 0x65, 0x8e, 0x22, 0x97, 0x01, 0x53, - 0xa6, 0xbc, 0x46, 0x56, 0x5c, 0xc3, 0xf8, 0xd5, 0xf8, 0x0d, 0x3e, 0x11, 0x6e, 0x7f, 0x07, 0x16, - 0x52, 0xe3, 0xb3, 0x37, 0xb9, 0x2a, 0xb0, 0x11, 0xbe, 0x86, 0x89, 0x17, 0x89, 0x2a, 0x88, 0x94, - 0x70, 0x62, 0xbd, 0xe1, 0x84, 0x94, 0x90, 0xe0, 0x98, 0x6f, 0xc5, 0x98, 0x9d, 0xa2, 0x8c, 0x11, - 0xc6, 0x4b, 0x0b, 0x97, 0x45, 0xf9, 0x0a, 0xfc, 0x69, 0x44, 0xa5, 0xa8, 0x6e, 0x14, 0x64, 0x5c, - 0xb6, 0x4f, 0xb8, 0x73, 0x63, 0x77, 0x5a, 0x12, 0x9f, 0x4c, 0x84, 0x4f, 0x23, 0x2a, 0xe5, 0x34, - 0x11, 0x4e, 0xac, 0xe8, 0xb7, 0xf3, 0xdc, 0x8f, 0xce, 0x2b, 0x9c, 0xd4, 0x8f, 0x9e, 0xd5, 0x8f, - 0xd2, 0xcc, 0x3d, 0x42, 0xaa, 0xfc, 0x2c, 0xeb, 0xb5, 0x30, 0x92, 0xf5, 0xaa, 0xd8, 0xd6, 0x63, - 0xca, 0x6d, 0xfd, 0x0a, 0xf0, 0x28, 0xad, 0xe6, 0xe3, 0x28, 0x91, 0x04, 0x89, 0xef, 0xe5, 0xd6, - 0xee, 0x3c, 0x2b, 0x8f, 0xf3, 0x4c, 0x90, 0x98, 0xde, 0x93, 0x18, 0xbd, 0x2d, 0xee, 0x6d, 0x57, - 0x4c, 0x5e, 0xca, 0xdb, 0xce, 0xc9, 0x20, 0xe9, 0x6d, 0x97, 0x73, 0x52, 0x70, 0x6f, 0x3b, 0x87, - 0x06, 0xc6, 0x77, 0xb4, 0x24, 0x2d, 0x9c, 0xa2, 0x37, 0x5d, 0x35, 0xc1, 0x05, 0x25, 0xc7, 0x8f, - 0xdc, 0xee, 0x29, 0x2c, 0x52, 0x6e, 0x77, 0x29, 0x6d, 0x44, 0xe6, 0x8b, 0x26, 0x49, 0xfe, 0x5b, - 0xa9, 0x3d, 0xf8, 0x09, 0xba, 0xdd, 0x93, 0x28, 0xb0, 0x6d, 0xf7, 0xb5, 0xe4, 0x24, 0x30, 0x62, - 0x3a, 0x1d, 0x86, 0xba, 0x9a, 0xdc, 0xd3, 0x71, 0xef, 0x42, 0xc4, 0x50, 0x62, 0x32, 0x3f, 0xe9, - 0x88, 0xa1, 0x21, 0xe8, 0x30, 0xc4, 0x4d, 0x98, 0xbb, 0xef, 0x84, 0xbe, 0xdb, 0x0a, 0x46, 0x22, - 0x5e, 0xe3, 0x47, 0x39, 0x98, 0x4f, 0x36, 0x60, 0x74, 0xf6, 0x22, 0xc9, 0xa2, 0x11, 0xc6, 0x71, - 0xaa, 0xea, 0x7a, 0x24, 0x74, 0x39, 0xb0, 0x68, 0x5d, 0xfd, 0x4f, 0x35, 0x72, 0x75, 0x34, 0x94, - 0x2e, 0x3f, 0x69, 0xf2, 0xc1, 0xf9, 0x79, 0x98, 0xec, 0xf6, 0x0f, 0x9a, 0xc2, 0xe1, 0x39, 0x3d, - 0xd9, 0x9a, 0xe8, 0xf6, 0x0f, 0x1e, 0xc4, 0xe7, 0xe7, 0x57, 0x60, 0x9a, 0x9e, 0x7e, 0x71, 0x8f, - 0x9a, 0xfb, 0x3e, 0x3d, 0x2c, 0x29, 0x58, 0x53, 0xa4, 0x80, 0x79, 0xd4, 0xd8, 0x35, 0x64, 0xdc, - 0x65, 0x7c, 0xd0, 0x56, 0x20, 0xf5, 0xaa, 0xdd, 0xfe, 0x41, 0x7c, 0x9c, 0x96, 0x88, 0xc0, 0x18, - 0x1b, 0x14, 0x81, 0x61, 0xfc, 0xe1, 0x38, 0xcc, 0xd0, 0x01, 0x4e, 0x23, 0xe4, 0x6a, 0xb4, 0x4b, - 0x7a, 0xc2, 0x94, 0xe5, 0x07, 0xc5, 0x1a, 0x14, 0x52, 0xb1, 0x06, 0x5f, 0x4c, 0xc7, 0x1a, 0x8c, - 0x91, 0x55, 0xbb, 0x64, 0x2a, 0x5e, 0xe2, 0x78, 0x31, 0x06, 0xc5, 0x51, 0x62, 0x0c, 0xc6, 0x47, - 0x8d, 0x79, 0x2a, 0x9d, 0x38, 0x92, 0xa0, 0x7c, 0xa4, 0x98, 0x27, 0x38, 0x42, 0x9e, 0x90, 0xca, - 0xb1, 0x83, 0x06, 0xaa, 0xc7, 0x0c, 0x1a, 0x98, 0x18, 0x1e, 0xb7, 0xf4, 0x79, 0x39, 0x6e, 0x69, - 0x92, 0x98, 0x82, 0x0d, 0xe5, 0xf2, 0x66, 0xc4, 0x2b, 0x25, 0xe8, 0x7f, 0xea, 0x18, 0xe9, 0x32, - 0x6a, 0xea, 0xe0, 0xa6, 0x4f, 0x2a, 0x5e, 0x69, 0x9e, 0xe7, 0x9b, 0x4a, 0xa8, 0x99, 0xff, 0x58, - 0xe3, 0x9b, 0xf7, 0xc4, 0xea, 0xe5, 0xe5, 0x0c, 0xc7, 0xe2, 0x11, 0x34, 0xb0, 0xfc, 0x28, 0x1a, - 0x58, 0xfc, 0x2e, 0x09, 0x8e, 0xde, 0x87, 0x79, 0x0a, 0x1f, 0x55, 0xf1, 0xbc, 0xa5, 0x0a, 0x8b, - 0xc8, 0x65, 0x84, 0x45, 0xb0, 0xf7, 0x4d, 0x05, 0x47, 0x18, 0xff, 0x1f, 0x2c, 0xa4, 0x86, 0x65, - 0x82, 0xe1, 0x22, 0x8c, 0x73, 0x71, 0xaf, 0xb1, 0x5d, 0x2c, 0xde, 0xde, 0xb7, 0x78, 0xe9, 0xd0, - 0xf8, 0x05, 0xa4, 0x43, 0xa9, 0xe5, 0x1d, 0xf4, 0x48, 0x8e, 0x72, 0xaa, 0x39, 0x44, 0xcf, 0xc6, - 0x36, 0x9f, 0x8f, 0x84, 0x20, 0x53, 0xdd, 0xcd, 0x8a, 0x67, 0x22, 0x27, 0xce, 0x44, 0x5a, 0x8e, - 0xbe, 0xce, 0xbf, 0x4f, 0x93, 0x14, 0x76, 0xe7, 0xa5, 0x0b, 0xd6, 0xa9, 0x57, 0x62, 0x85, 0xc6, - 0xef, 0x44, 0x84, 0x25, 0xeb, 0x4c, 0x47, 0x40, 0x2a, 0x9b, 0xc9, 0xa7, 0xd0, 0x3d, 0x9a, 0xc4, - 0x8a, 0x08, 0x28, 0xa1, 0x4b, 0xfd, 0x86, 0x06, 0xf5, 0xd3, 0x88, 0x5d, 0x30, 0x39, 0x03, 0xca, - 0x0e, 0x5b, 0x10, 0x2b, 0x28, 0x66, 0x7f, 0x11, 0xce, 0x66, 0x07, 0x1d, 0xfc, 0xc7, 0x52, 0x74, - 0x8d, 0xf0, 0xc4, 0x12, 0x37, 0xbe, 0x2e, 0x9f, 0x93, 0xae, 0xcb, 0x67, 0xcf, 0xfd, 0x97, 0xb3, - 0x2f, 0xb5, 0x47, 0x97, 0x6e, 0x65, 0x26, 0xfb, 0x71, 0xdc, 0x6e, 0x1f, 0xe1, 0x9a, 0x78, 0x71, - 0x84, 0x6b, 0xe2, 0x4a, 0x01, 0x3c, 0x3e, 0x9a, 0x00, 0xde, 0xc9, 0xba, 0x7f, 0x4d, 0x05, 0xb8, - 0xa9, 0x9e, 0x9c, 0x93, 0x5c, 0xc4, 0x2e, 0x0f, 0xba, 0x88, 0xbd, 0x9f, 0x7d, 0x11, 0x1b, 0x58, - 0x70, 0xa5, 0x12, 0xa1, 0xa3, 0xdf, 0xc8, 0xee, 0x0f, 0xb9, 0x91, 0x4d, 0x43, 0x21, 0x5f, 0x1a, - 0x65, 0xb8, 0xa3, 0x5c, 0xcd, 0x4e, 0x6c, 0xf9, 0xea, 0xc0, 0x30, 0xe1, 0x5f, 0xde, 0x4f, 0x1e, - 0x41, 0xb1, 0x58, 0x80, 0xb9, 0xc4, 0x1a, 0x31, 0x8e, 0xb3, 0x19, 0x31, 0x9c, 0x93, 0x6a, 0x09, - 0xc2, 0x18, 0x09, 0xae, 0xf6, 0x18, 0x16, 0x58, 0xc1, 0xc7, 0x2b, 0xbe, 0xbf, 0xad, 0x41, 0x3d, - 0x3d, 0x70, 0x1c, 0x27, 0x10, 0x1d, 0x63, 0xf3, 0x38, 0x01, 0xe9, 0x2e, 0xa7, 0x15, 0x95, 0x9f, - 0x4c, 0x86, 0xbf, 0x15, 0x4d, 0xcb, 0x69, 0x06, 0x26, 0x6e, 0xc0, 0x7c, 0xb2, 0xd7, 0x38, 0x76, - 0x80, 0x21, 0x1e, 0xc5, 0x0e, 0xc8, 0xef, 0xc5, 0x8b, 0xb1, 0x76, 0xc1, 0x4a, 0x4e, 0xd1, 0x51, - 0x1b, 0x53, 0x41, 0x42, 0x04, 0x3f, 0x80, 0xb3, 0xe2, 0xb7, 0x3b, 0x4f, 0x2a, 0xdf, 0x8c, 0x25, - 0xd0, 0x55, 0xfd, 0xb1, 0xd1, 0x56, 0x60, 0x49, 0x2c, 0x4d, 0x12, 0x9e, 0xf1, 0x2e, 0x2c, 0x67, - 0x94, 0xb3, 0x69, 0xfc, 0x0c, 0x4c, 0x78, 0x42, 0x85, 0x38, 0x2f, 0x52, 0xfa, 0x03, 0xa4, 0x96, - 0x5c, 0xd3, 0xf8, 0x94, 0x8c, 0x59, 0x86, 0xee, 0x26, 0x4c, 0xa3, 0xf1, 0x0e, 0x2c, 0x2a, 0x5b, - 0x30, 0x5c, 0x5e, 0x86, 0xaa, 0x38, 0x02, 0x9b, 0x21, 0x25, 0x2a, 0x52, 0x45, 0xe3, 0x9a, 0x3c, - 0xe7, 0x43, 0xf5, 0xb5, 0xe4, 0xa4, 0x26, 0x96, 0xf0, 0x1b, 0x30, 0x6d, 0x9d, 0xc6, 0xfd, 0xab, - 0xcb, 0x83, 0x13, 0x09, 0x89, 0x29, 0x84, 0x66, 0x01, 0x59, 0xe9, 0x3b, 0x18, 0x0c, 0x91, 0x53, - 0x30, 0x6c, 0x8e, 0x8a, 0x48, 0x82, 0xb5, 0x3d, 0x0f, 0xb3, 0xd6, 0xe8, 0x71, 0xe5, 0xc6, 0x0d, - 0x98, 0xb3, 0x94, 0x71, 0xd2, 0xe7, 0xe4, 0xec, 0x5b, 0x15, 0x33, 0xce, 0xd1, 0xc4, 0x72, 0x6c, - 0x19, 0x5f, 0xa4, 0x08, 0x9c, 0x26, 0x13, 0xf9, 0x34, 0xcc, 0x58, 0x8a, 0x98, 0xe6, 0x06, 0x14, - 0xfc, 0x38, 0x90, 0x59, 0xc2, 0x85, 0x14, 0x18, 0x5b, 0x74, 0xfa, 0x4f, 0x91, 0x6b, 0xb0, 0xd9, - 0x4d, 0xd0, 0xdb, 0xb7, 0x35, 0xd0, 0xc9, 0xe0, 0x9f, 0xa8, 0xdf, 0x71, 0x19, 0x16, 0x95, 0x48, - 0x30, 0x24, 0xff, 0x9e, 0x06, 0x15, 0x96, 0xe4, 0x87, 0x9c, 0x53, 0xcf, 0xc2, 0xd8, 0x81, 0xfd, - 0x75, 0x8f, 0x7b, 0xfc, 0xe8, 0x03, 0x81, 0xba, 0x5d, 0x8f, 0x27, 0x2f, 0xa6, 0x0f, 0x18, 0xda, - 0xb3, 0xc3, 0xd6, 0x3e, 0xcf, 0x98, 0x41, 0x1e, 0x88, 0x86, 0xbe, 0x6f, 0x77, 0xf7, 0x98, 0x0b, - 0x0f, 0x6b, 0xe8, 0xf4, 0x11, 0x2d, 0x03, 0xec, 0xb9, 0x61, 0xb3, 0xe5, 0x1d, 0x1c, 0xb8, 0x3c, - 0xa6, 0xa0, 0xbc, 0xe7, 0x86, 0x37, 0x09, 0x00, 0x17, 0xef, 0xf4, 0xdd, 0x4e, 0xbb, 0xd9, 0xe6, - 0x27, 0x11, 0x65, 0xab, 0x4c, 0x20, 0xb7, 0xec, 0xd0, 0x31, 0x66, 0x60, 0x9a, 0x21, 0xfa, 0x86, - 0xc3, 0x09, 0xc8, 0x78, 0x0d, 0x90, 0x08, 0x64, 0x24, 0x70, 0x21, 0x4e, 0xd0, 0xa1, 0x31, 0x1b, - 0x47, 0x78, 0xc7, 0x38, 0x9b, 0xf3, 0x77, 0x73, 0x30, 0xcf, 0xbe, 0xb7, 0xb0, 0xde, 0x0a, 0xdd, - 0xc7, 0x27, 0xdb, 0x8e, 0xe7, 0x61, 0xc2, 0xa6, 0xbd, 0xb0, 0x0f, 0xfe, 0x91, 0xc9, 0xba, 0x7b, - 0xc6, 0xaa, 0xc6, 0xe0, 0xcd, 0x36, 0x7a, 0x06, 0xaa, 0x1d, 0x3a, 0x66, 0x93, 0xf4, 0x8e, 0x27, - 0xaf, 0x7a, 0xf7, 0x8c, 0x55, 0x61, 0xd0, 0x5b, 0xb8, 0xaf, 0x0b, 0x30, 0xd9, 0x0f, 0xb0, 0xc6, - 0xbe, 0x63, 0x07, 0x4e, 0x3b, 0x4a, 0x4c, 0x89, 0x3b, 0x23, 0xf0, 0x0d, 0x0c, 0xde, 0x6c, 0xa3, - 0x57, 0xe1, 0x2c, 0x79, 0x6e, 0xb3, 0x8a, 0xb6, 0xeb, 0xef, 0xd9, 0xbd, 0x1e, 0x6d, 0x32, 0xc6, - 0x9a, 0xcc, 0xd3, 0x2a, 0xa4, 0xcd, 0x3a, 0xaf, 0xb0, 0xd9, 0xde, 0xa8, 0x02, 0xc4, 0x98, 0x19, - 0x67, 0x61, 0x21, 0x35, 0x17, 0x8c, 0x48, 0x3c, 0x98, 0x65, 0x45, 0x27, 0xe6, 0x59, 0xcf, 0xa6, - 0x5e, 0x8c, 0x92, 0x94, 0xf4, 0x5a, 0x58, 0x0c, 0x27, 0x06, 0x8c, 0x9d, 0xe3, 0xac, 0x60, 0x34, - 0xe7, 0xf8, 0xbb, 0xd1, 0x02, 0x27, 0xd9, 0xc4, 0xe7, 0x61, 0x9a, 0x2f, 0x83, 0xef, 0x04, 0x2c, - 0xf3, 0xa0, 0xc6, 0xe2, 0xcd, 0x58, 0x1b, 0x5e, 0x99, 0xc6, 0x9b, 0x75, 0x62, 0x20, 0xe1, 0xa9, - 0xdf, 0x2f, 0xc0, 0x8c, 0xa2, 0x22, 0xba, 0x09, 0xd5, 0x5d, 0xc7, 0x0e, 0xfb, 0x3c, 0x31, 0x86, - 0xc6, 0x92, 0x9b, 0x28, 0xea, 0x9a, 0x77, 0x68, 0x45, 0x32, 0x40, 0x65, 0x37, 0x7e, 0x40, 0x2f, - 0x46, 0x69, 0x47, 0x28, 0x5f, 0x5f, 0x54, 0x36, 0x97, 0x73, 0x8e, 0xe8, 0xdf, 0xd3, 0xa0, 0x22, - 0xf4, 0xa8, 0xf4, 0x69, 0x10, 0x65, 0xaf, 0x1b, 0xf4, 0x0f, 0x9c, 0x36, 0xfb, 0x8e, 0x5a, 0xf4, - 0x8c, 0x1e, 0x42, 0xcd, 0xe9, 0x86, 0x6e, 0xd8, 0x21, 0x5f, 0xf1, 0xa2, 0xd8, 0xe7, 0x59, 0x68, - 0xaf, 0x6a, 0xf8, 0xdb, 0x71, 0x65, 0x3a, 0x45, 0x8e, 0x0c, 0xd0, 0xff, 0x58, 0x83, 0xa9, 0x44, - 0x25, 0xcc, 0x35, 0xe2, 0x6f, 0xd4, 0xe5, 0xd9, 0x87, 0xe9, 0xd0, 0x4b, 0x30, 0xee, 0x3c, 0xe9, - 0xb9, 0xbe, 0x13, 0x8c, 0xf0, 0xb1, 0x10, 0x5e, 0x15, 0xad, 0x91, 0x59, 0xf2, 0x43, 0xfe, 0x71, - 0xf1, 0x41, 0x8d, 0x58, 0x4d, 0xb4, 0xca, 0x22, 0x71, 0xa8, 0x0d, 0x5f, 0xe5, 0x2f, 0x16, 0xc7, - 0xe0, 0xe8, 0xaf, 0x44, 0x19, 0x5a, 0xe6, 0xa5, 0xe4, 0x2f, 0xe5, 0xa1, 0xc9, 0x5d, 0xbe, 0xab, - 0xc1, 0x22, 0x27, 0x5c, 0x4c, 0xcf, 0xd1, 0x6e, 0x3b, 0x4e, 0x82, 0x95, 0x65, 0x80, 0xae, 0xd7, - 0x76, 0x04, 0xb5, 0x3d, 0x6f, 0x95, 0x31, 0x84, 0x7f, 0xeb, 0xaf, 0xe2, 0xd3, 0x0b, 0x07, 0xd1, - 0x27, 0x56, 0xf2, 0x16, 0x50, 0x10, 0xc9, 0x5d, 0x72, 0x08, 0x4b, 0x4a, 0x5c, 0x86, 0x08, 0xa0, - 0x64, 0x26, 0x90, 0x5c, 0x3a, 0x13, 0x48, 0x22, 0x93, 0x49, 0x3e, 0x99, 0xc9, 0xc4, 0xf8, 0x47, - 0x1a, 0x2c, 0x67, 0x8c, 0xcd, 0xb6, 0x9f, 0x05, 0x73, 0x1d, 0x55, 0x05, 0xb6, 0x5b, 0x96, 0xcc, - 0x01, 0xd3, 0x68, 0xa9, 0x9b, 0x4a, 0x76, 0x4c, 0x4e, 0xb6, 0x63, 0x92, 0x46, 0x50, 0x3e, 0x75, - 0x11, 0xeb, 0xb7, 0xc7, 0x60, 0xe5, 0xbe, 0xdd, 0xc5, 0x8c, 0xf2, 0x88, 0x61, 0xf0, 0xd7, 0x33, - 0x03, 0x57, 0xa5, 0xd3, 0x80, 0xa4, 0xaf, 0x79, 0xe4, 0x30, 0x1c, 0x36, 0xdb, 0xbe, 0x13, 0xf4, - 0x3b, 0x8c, 0xd2, 0xf3, 0x64, 0xb6, 0x2d, 0x0a, 0x41, 0xb7, 0x84, 0x7b, 0x1e, 0x94, 0xaa, 0x2f, - 0x99, 0x83, 0x5f, 0x45, 0x71, 0xe3, 0x03, 0x7d, 0x41, 0xf1, 0xd1, 0xd6, 0xcb, 0xc3, 0xfa, 0xc9, - 0xf8, 0xa6, 0xeb, 0x76, 0xf2, 0x03, 0xad, 0xf4, 0x43, 0x1c, 0xcf, 0x0d, 0xeb, 0x6e, 0xe0, 0xf7, - 0x5b, 0xb7, 0x12, 0x1f, 0x8a, 0xa5, 0x1f, 0x7d, 0xbd, 0x3a, 0x14, 0xc5, 0xcc, 0xef, 0xc8, 0xea, - 0x1b, 0xe2, 0x07, 0xb1, 0xe3, 0x2f, 0x39, 0x6b, 0xd2, 0x97, 0x9c, 0xf1, 0x36, 0x74, 0x9e, 0x84, - 0x4d, 0xe1, 0x0b, 0xd2, 0x56, 0x19, 0x43, 0xc8, 0x25, 0x1b, 0x7d, 0x52, 0xfe, 0x34, 0xaf, 0x3e, - 0x21, 0x7d, 0x2c, 0xd9, 0x78, 0xf9, 0x98, 0xf7, 0x68, 0x36, 0x4a, 0x50, 0x64, 0x5d, 0xfc, 0x49, - 0x0e, 0x66, 0xe5, 0x77, 0x64, 0xdc, 0x44, 0xc5, 0xde, 0x99, 0x02, 0x98, 0x8b, 0x3d, 0xd0, 0xd7, - 0x33, 0x02, 0x50, 0x86, 0x90, 0xa7, 0x7c, 0x2d, 0xa6, 0x70, 0xf4, 0x6b, 0x31, 0x0d, 0xa8, 0x3c, - 0x7a, 0x25, 0x68, 0xca, 0x99, 0xd2, 0xe0, 0xd1, 0x2b, 0x01, 0xcf, 0x29, 0xf9, 0x92, 0x94, 0x2c, - 0x6d, 0x72, 0x6d, 0xc9, 0x54, 0xbd, 0x65, 0x42, 0xc6, 0x19, 0xa6, 0x3a, 0x7d, 0x56, 0x15, 0x4a, - 0x0f, 0xbc, 0x70, 0xbd, 0xdd, 0x76, 0xda, 0x6c, 0x4e, 0xc9, 0xdf, 0x9c, 0xf1, 0x77, 0x0a, 0xd0, - 0xc8, 0xa4, 0x10, 0xc6, 0x8c, 0xae, 0x89, 0x07, 0xdd, 0x34, 0xe0, 0x44, 0x85, 0x8a, 0x98, 0xfc, - 0x33, 0xde, 0x71, 0x39, 0xf6, 0x35, 0xfc, 0x21, 0x83, 0xa8, 0xb6, 0xdc, 0x9b, 0x8a, 0x2d, 0x77, - 0x65, 0x68, 0x47, 0x19, 0x7b, 0xee, 0x2d, 0xf5, 0x9e, 0x7b, 0x7e, 0x68, 0x7f, 0x03, 0x37, 0xdd, - 0x17, 0x95, 0x9b, 0xee, 0xb9, 0xe1, 0x48, 0x66, 0xef, 0xba, 0x2b, 0xe2, 0xae, 0x93, 0x77, 0x97, - 0xf6, 0xf1, 0xef, 0xae, 0xbf, 0x2c, 0xc0, 0x92, 0xfc, 0x32, 0xc7, 0xb7, 0x51, 0x8f, 0xb9, 0xd5, - 0x46, 0x0d, 0x2c, 0x42, 0x1b, 0x29, 0x46, 0x7f, 0xc1, 0x1c, 0x84, 0xbb, 0x8a, 0xe6, 0x18, 0x83, - 0x28, 0xc6, 0x0c, 0xe2, 0xae, 0x82, 0x0a, 0x2f, 0x0e, 0xee, 0x37, 0x83, 0x04, 0xbf, 0xa8, 0x26, - 0xc1, 0x2b, 0x83, 0x3b, 0x1b, 0x48, 0x7f, 0x0f, 0x94, 0xf4, 0x77, 0x79, 0x08, 0x7a, 0xd9, 0xc4, - 0xf7, 0xcc, 0x08, 0x2c, 0xff, 0x63, 0xa0, 0xba, 0x2d, 0x58, 0xce, 0x78, 0x03, 0x15, 0x4b, 0xd2, - 0x86, 0xb3, 0x24, 0xe3, 0xdf, 0xa4, 0xe8, 0x78, 0xa3, 0xdf, 0x79, 0xb4, 0xde, 0x6e, 0xff, 0x7c, - 0xb4, 0x97, 0x73, 0x50, 0x15, 0xf3, 0xcb, 0xb1, 0x0f, 0x17, 0x55, 0x84, 0xc4, 0x72, 0x12, 0xb5, - 0x16, 0x94, 0xd4, 0x2a, 0x63, 0xa8, 0xa2, 0xd6, 0x51, 0x68, 0x33, 0xd1, 0xcb, 0xc9, 0x68, 0x33, - 0xd1, 0xd9, 0x29, 0xd0, 0x66, 0x12, 0xbd, 0x5f, 0x78, 0xda, 0x6c, 0x24, 0x69, 0x33, 0x7a, 0x03, - 0x66, 0x84, 0xff, 0x83, 0x1c, 0xd4, 0x89, 0x8f, 0xc0, 0x0d, 0x47, 0xce, 0xf0, 0x46, 0xbe, 0x4e, - 0x7d, 0x48, 0xad, 0xd9, 0x31, 0x8b, 0xfc, 0x97, 0xbe, 0x10, 0x4f, 0x33, 0xc1, 0x18, 0x66, 0x56, - 0xbf, 0xd1, 0x77, 0xe2, 0x85, 0x2f, 0xc4, 0x2f, 0x02, 0xc9, 0x88, 0xd8, 0x7c, 0xdf, 0xeb, 0xf2, - 0x54, 0xa6, 0x25, 0x0c, 0x78, 0xd7, 0xeb, 0x3a, 0x03, 0xb2, 0xbe, 0xf0, 0x94, 0xae, 0x45, 0x21, - 0xa5, 0x6b, 0xe2, 0xcc, 0x6e, 0x7c, 0xe0, 0x31, 0xbd, 0x09, 0x25, 0x8e, 0x4d, 0x2a, 0x17, 0xfc, - 0x5d, 0xaf, 0xef, 0x77, 0x0e, 0xe9, 0x34, 0x93, 0x0f, 0x9a, 0xd7, 0x72, 0xc6, 0xff, 0xca, 0xc1, - 0x59, 0xc5, 0x7b, 0xb1, 0x9d, 0x7e, 0x8b, 0xb9, 0x8d, 0xdc, 0xf0, 0xb0, 0xc9, 0x0c, 0x43, 0xfa, - 0x01, 0x90, 0xcc, 0x26, 0xe6, 0x2d, 0x3b, 0xb4, 0x99, 0x57, 0xc9, 0x0d, 0x0f, 0xf1, 0x93, 0xfe, - 0xfd, 0x1c, 0x14, 0x88, 0xe7, 0xe8, 0x63, 0xcf, 0x91, 0x89, 0x56, 0x00, 0x02, 0x9a, 0x53, 0x74, - 0xb7, 0xdf, 0xe1, 0x96, 0x55, 0x0c, 0xc1, 0x94, 0xbc, 0x4b, 0x92, 0x41, 0xb2, 0x90, 0x3e, 0xf6, - 0x84, 0x15, 0x44, 0xb7, 0xdb, 0xec, 0xb1, 0x2c, 0xa7, 0x64, 0x95, 0x0a, 0x16, 0xb8, 0x51, 0xde, - 0x53, 0x2c, 0x17, 0x99, 0xfd, 0xe6, 0x7a, 0x5d, 0x8a, 0x16, 0x5e, 0x33, 0xcd, 0x9a, 0x8c, 0xc1, - 0x04, 0x83, 0x59, 0x18, 0x23, 0x96, 0x1c, 0x59, 0xb7, 0x82, 0x45, 0x1f, 0x8c, 0x3e, 0x80, 0xe5, - 0x1d, 0xef, 0x5b, 0x01, 0x91, 0x43, 0x3b, 0xc7, 0x1d, 0xda, 0x1e, 0xdf, 0x70, 0xcc, 0xa1, 0x8d, - 0x16, 0x60, 0xdc, 0xf7, 0x3a, 0x4e, 0x33, 0xf2, 0x04, 0x17, 0xf1, 0xe3, 0x66, 0xdb, 0x78, 0x8d, - 0x0e, 0xcb, 0xb6, 0xb1, 0x0e, 0x25, 0x76, 0x27, 0x9f, 0x7a, 0xc7, 0xcb, 0x56, 0xf4, 0x8c, 0x09, - 0xd1, 0xee, 0xb9, 0x74, 0x90, 0xb2, 0x45, 0xfe, 0x1b, 0xbf, 0xae, 0xc1, 0x34, 0x69, 0x7e, 0xd2, - 0x53, 0x8a, 0x93, 0xbc, 0xc2, 0x2c, 0x20, 0x11, 0x07, 0xb6, 0xed, 0x39, 0x6a, 0x27, 0xf6, 0x01, - 0x9e, 0x02, 0x6a, 0x09, 0xb7, 0x60, 0x00, 0xb3, 0x18, 0xfa, 0xf1, 0x1e, 0xd0, 0xde, 0x80, 0xb9, - 0xc4, 0xa0, 0xc2, 0x71, 0x88, 0x27, 0x1d, 0x87, 0x78, 0xc2, 0x71, 0x88, 0xc7, 0x8f, 0x43, 0xbc, - 0xd3, 0x3f, 0x0e, 0xf1, 0xd4, 0xc7, 0x21, 0x9e, 0x78, 0x1c, 0xe2, 0x09, 0xc7, 0x21, 0x1e, 0x3b, - 0x0e, 0xf1, 0x4e, 0xfd, 0x38, 0xc4, 0x4b, 0x1d, 0x87, 0x98, 0x74, 0xba, 0xb6, 0x1c, 0xff, 0xc0, - 0x0d, 0x02, 0x12, 0x82, 0x39, 0xd0, 0x75, 0xfb, 0x3b, 0x1a, 0xcc, 0x27, 0x1b, 0xb0, 0x77, 0x7a, - 0x45, 0x3e, 0x6f, 0x32, 0x4c, 0x75, 0x3d, 0x7a, 0x14, 0x46, 0xe3, 0x35, 0xd8, 0xa7, 0x5e, 0x6e, - 0xd3, 0xef, 0x87, 0x64, 0x06, 0x37, 0x9e, 0x93, 0xbf, 0x73, 0x5d, 0x31, 0x85, 0x5e, 0x85, 0x80, - 0x84, 0xe7, 0x01, 0xe2, 0x02, 0xcc, 0xc8, 0x76, 0xfb, 0x9d, 0x0e, 0xff, 0x12, 0x1a, 0xf9, 0x50, - 0x8a, 0x05, 0x18, 0x44, 0xbf, 0x72, 0x66, 0xfc, 0x59, 0x01, 0xd0, 0xba, 0xc0, 0xad, 0x8f, 0xc3, - 0x92, 0xb8, 0xd4, 0xca, 0x09, 0x52, 0x6b, 0x2d, 0xb2, 0xa0, 0xa9, 0xf8, 0xd4, 0xcd, 0xf4, 0x28, - 0xc9, 0xbc, 0xd4, 0x0a, 0xa6, 0x5a, 0x50, 0x32, 0xd5, 0xeb, 0x30, 0xee, 0xf5, 0x5a, 0x87, 0xad, - 0x8e, 0xc3, 0x02, 0x91, 0x17, 0x55, 0xbd, 0x3f, 0xa4, 0x55, 0x2c, 0x5e, 0x57, 0x94, 0xbb, 0x45, - 0x59, 0xee, 0x1e, 0x45, 0xc6, 0xea, 0xff, 0x52, 0x83, 0x71, 0xd6, 0xf7, 0x49, 0x44, 0xda, 0x1d, - 0x98, 0xee, 0xd8, 0x41, 0xd8, 0xec, 0x13, 0x7e, 0x31, 0xb2, 0x6c, 0x9b, 0xc2, 0x8d, 0x28, 0x8f, - 0xa1, 0x32, 0xee, 0x18, 0x33, 0x6d, 0x7c, 0x45, 0xed, 0xa9, 0x20, 0xb9, 0xbd, 0xb9, 0xd4, 0xab, - 0x69, 0x62, 0xd2, 0xee, 0x9c, 0x90, 0xdb, 0x3b, 0x2f, 0xe5, 0xf6, 0x26, 0xe9, 0x54, 0xe8, 0x86, - 0x6a, 0xd7, 0xc6, 0xd6, 0xb6, 0xa1, 0x48, 0xb3, 0x65, 0xa3, 0xcd, 0x68, 0x90, 0x59, 0x53, 0x91, - 0x57, 0x5b, 0x9f, 0x33, 0x95, 0x69, 0xb5, 0xd1, 0xaf, 0xff, 0xfb, 0xff, 0xfe, 0x5b, 0xb9, 0x2a, - 0x82, 0x6b, 0x8f, 0x5f, 0xb8, 0xb6, 0x4f, 0x6a, 0xac, 0xfd, 0xf9, 0x18, 0x4c, 0xca, 0x49, 0x4d, - 0x51, 0x1b, 0x8a, 0x94, 0x97, 0xa3, 0x25, 0x73, 0x40, 0xee, 0x64, 0x7d, 0xd9, 0x1c, 0x98, 0xc9, - 0x78, 0x99, 0x8c, 0xb6, 0x60, 0x20, 0x3c, 0x1a, 0x8f, 0xf0, 0xa7, 0xa1, 0x74, 0x37, 0xb4, 0x2b, - 0x78, 0x14, 0x3a, 0xd7, 0xa9, 0x51, 0x24, 0x51, 0x93, 0x1a, 0x25, 0x21, 0x04, 0xd8, 0x28, 0x7a, - 0xc6, 0x28, 0x01, 0x94, 0x23, 0x56, 0x8d, 0x1a, 0x43, 0x12, 0x0c, 0xeb, 0xab, 0xe6, 0x90, 0x84, - 0xc0, 0xc6, 0x33, 0x64, 0xb8, 0x65, 0xb4, 0x98, 0x1e, 0xee, 0xda, 0x37, 0x29, 0x43, 0xfb, 0x00, - 0xbd, 0x8f, 0x57, 0x9e, 0x30, 0x64, 0xb4, 0x6c, 0x0e, 0xca, 0xfd, 0xab, 0xaf, 0x98, 0x03, 0xb3, - 0xf7, 0x1a, 0x9f, 0x22, 0xc3, 0x5d, 0x41, 0x97, 0x06, 0x0c, 0x77, 0xed, 0x9b, 0x98, 0x23, 0x7f, - 0x70, 0xed, 0x9b, 0x7d, 0x3c, 0xf6, 0x7b, 0xfc, 0x6b, 0x44, 0xa9, 0x69, 0x95, 0x78, 0x7d, 0x6a, - 0x5a, 0x13, 0x7c, 0x9b, 0x0d, 0x7c, 0x65, 0xf4, 0x81, 0xff, 0x96, 0x06, 0x53, 0x74, 0x6d, 0xa2, - 0x53, 0x67, 0x74, 0xde, 0x1c, 0x25, 0x7d, 0xaf, 0x7e, 0xc1, 0x1c, 0x2d, 0xad, 0xee, 0xf3, 0x04, - 0xa9, 0x8b, 0xba, 0xa1, 0x40, 0x8a, 0xee, 0xf5, 0xe8, 0x4c, 0xfc, 0x86, 0x76, 0x65, 0xed, 0x9f, - 0x17, 0x52, 0x9f, 0x1a, 0x14, 0x49, 0x7b, 0x40, 0xe6, 0x50, 0x7d, 0xd9, 0x1c, 0x98, 0x4f, 0x53, - 0x22, 0x6d, 0x16, 0x3b, 0xcb, 0x6a, 0x26, 0x49, 0x7b, 0x40, 0xca, 0xc8, 0xd4, 0x28, 0x83, 0x48, - 0x3b, 0x3d, 0x4a, 0x82, 0xb4, 0x07, 0x67, 0xfb, 0xd3, 0x57, 0xcd, 0x21, 0x79, 0xef, 0x64, 0xd2, - 0x96, 0x87, 0x8b, 0x49, 0x3b, 0x14, 0x49, 0x7b, 0x50, 0x0e, 0x3b, 0x7d, 0xc5, 0x1c, 0x98, 0x85, - 0xce, 0xb8, 0x42, 0x86, 0x7b, 0x16, 0x19, 0x03, 0x86, 0x63, 0x14, 0x86, 0xbe, 0x21, 0x10, 0xf5, - 0x80, 0xcc, 0x73, 0xa9, 0x09, 0x4d, 0x10, 0x35, 0x1b, 0xf2, 0xca, 0x08, 0x43, 0xae, 0xfd, 0x87, - 0x02, 0x8c, 0x33, 0x4b, 0x18, 0x3d, 0x8c, 0xa8, 0x66, 0x4e, 0x99, 0x4a, 0x4b, 0x9f, 0x37, 0xd5, - 0x79, 0xae, 0xe6, 0xc9, 0x80, 0x35, 0xa3, 0x82, 0x07, 0x64, 0x72, 0x0e, 0x2f, 0xdd, 0xc3, 0x88, - 0x40, 0xa2, 0x0e, 0x65, 0xca, 0x98, 0x37, 0xd5, 0xf9, 0x9a, 0x58, 0x87, 0x7a, 0xb2, 0xc3, 0x5f, - 0x11, 0x69, 0xa1, 0x9e, 0x95, 0x91, 0x49, 0x3f, 0x6b, 0x66, 0xb9, 0x6e, 0x8d, 0x25, 0xd2, 0xf3, - 0x3c, 0x9a, 0x15, 0x7a, 0x8e, 0x97, 0xdd, 0x89, 0x97, 0x3d, 0x42, 0x2d, 0xb1, 0xde, 0x0b, 0xa6, - 0xda, 0xa9, 0x65, 0x5c, 0x26, 0x3d, 0x3f, 0x83, 0xce, 0xa9, 0x7a, 0x96, 0x79, 0xc8, 0xd7, 0xa2, - 0x75, 0x8e, 0xe6, 0x45, 0x5e, 0xe0, 0x79, 0x53, 0x9d, 0x93, 0x87, 0xd1, 0xee, 0x95, 0xc5, 0x01, - 0x63, 0x20, 0x6c, 0xca, 0xd0, 0xf9, 0x14, 0x53, 0xed, 0xad, 0x9a, 0x43, 0xf2, 0x04, 0xea, 0xe7, - 0xcc, 0xa1, 0x99, 0xf7, 0x2e, 0x91, 0xf1, 0x0d, 0x7d, 0x59, 0x1c, 0x9f, 0xb2, 0x24, 0x21, 0xb4, - 0x1e, 0x33, 0xa5, 0xff, 0x31, 0x06, 0x53, 0xc9, 0xcf, 0xea, 0xef, 0x45, 0xf4, 0xb5, 0x6c, 0x0e, - 0xca, 0x2c, 0xa4, 0xaf, 0x98, 0x03, 0x93, 0xfc, 0x18, 0x2b, 0x04, 0x8d, 0xba, 0x31, 0x43, 0xd1, - 0xf0, 0xfa, 0xed, 0xd8, 0xbf, 0x87, 0xc9, 0x64, 0x2f, 0xa2, 0xbb, 0xd4, 0x40, 0xf2, 0x2b, 0xaf, - 0x98, 0x83, 0x93, 0xea, 0xb0, 0x81, 0xf4, 0xac, 0x81, 0x1e, 0x8b, 0xf4, 0xb8, 0x6a, 0x0e, 0x49, - 0xc0, 0x43, 0x66, 0x78, 0x70, 0xfe, 0x1c, 0xe3, 0x59, 0x32, 0xe2, 0x0a, 0x5a, 0x52, 0x8c, 0x18, - 0xd3, 0xe9, 0x07, 0x31, 0x9d, 0xae, 0x98, 0x03, 0x33, 0xe5, 0xe8, 0x0d, 0x73, 0x70, 0x0a, 0x1b, - 0xe3, 0x05, 0x32, 0xe2, 0x55, 0x74, 0x79, 0xd0, 0x88, 0x32, 0xfd, 0xbe, 0x1f, 0xd1, 0x6f, 0x6a, - 0x7e, 0x65, 0x3a, 0x5e, 0x31, 0x07, 0x67, 0x9f, 0x61, 0x63, 0x5f, 0x39, 0xc2, 0xd8, 0x3f, 0x50, - 0xc8, 0xdf, 0x0b, 0xe6, 0x48, 0x29, 0x6c, 0xf4, 0x8b, 0xe6, 0x88, 0xa9, 0x65, 0x4c, 0x82, 0xd7, - 0x25, 0xfd, 0x19, 0x15, 0x5e, 0x0a, 0x11, 0xfc, 0x9f, 0xf3, 0x50, 0xe2, 0x39, 0x10, 0x90, 0x15, - 0x91, 0xf9, 0xbc, 0xa9, 0x4c, 0x09, 0xa2, 0x2f, 0x98, 0x19, 0xa9, 0x3a, 0x16, 0xc8, 0xb8, 0xd3, - 0x46, 0x15, 0x8f, 0xcb, 0x93, 0x3a, 0x60, 0x42, 0xb3, 0x45, 0x42, 0x3b, 0x6b, 0x66, 0xe5, 0xf3, - 0xd0, 0x75, 0x33, 0x33, 0x1d, 0x07, 0x97, 0xb3, 0x68, 0x4e, 0xec, 0x3c, 0xa6, 0xa9, 0x66, 0x4c, - 0x53, 0x0b, 0xa6, 0x3a, 0x11, 0x87, 0x5e, 0x37, 0x33, 0x32, 0x64, 0x18, 0xe7, 0x48, 0xe7, 0x8b, - 0xe8, 0xac, 0xdc, 0xb9, 0xb8, 0x72, 0x56, 0xb4, 0x2b, 0xe3, 0x79, 0x91, 0xd7, 0x67, 0xc1, 0xcc, - 0x48, 0x5c, 0xc1, 0xe6, 0x45, 0x4f, 0xcd, 0x8b, 0x13, 0x51, 0x62, 0xdc, 0xa7, 0x4c, 0x82, 0x0b, - 0x66, 0x46, 0x72, 0x0a, 0x49, 0x4a, 0xa6, 0xa6, 0x43, 0x42, 0x7d, 0xed, 0xdf, 0x15, 0xb9, 0x8a, - 0x15, 0x5d, 0x86, 0x4d, 0xab, 0x58, 0xca, 0x1c, 0x17, 0x91, 0xac, 0xce, 0xc8, 0x38, 0xa1, 0x50, - 0xb1, 0xf8, 0x5d, 0x4f, 0xb5, 0x8a, 0xa5, 0x4c, 0x4c, 0x91, 0x1a, 0x65, 0xb8, 0x8a, 0x25, 0x8e, - 0xa2, 0x54, 0xb1, 0xb2, 0x12, 0x41, 0x44, 0x2a, 0x56, 0x66, 0xb2, 0x03, 0x95, 0x8a, 0xc5, 0x87, - 0xcb, 0xb0, 0x1e, 0x06, 0x25, 0x36, 0x88, 0x54, 0xac, 0x8c, 0x8c, 0x03, 0xb2, 0xf5, 0x90, 0x31, - 0x5c, 0xb6, 0xf5, 0x30, 0x20, 0xd7, 0x40, 0x6a, 0x5a, 0x07, 0x59, 0x0f, 0x23, 0x0d, 0x1c, 0x40, - 0x89, 0x5f, 0xe6, 0x47, 0xc9, 0xd7, 0x4a, 0xe4, 0x10, 0xd0, 0x1b, 0xe6, 0x90, 0x2c, 0x00, 0x17, - 0xc8, 0xf0, 0xab, 0x86, 0x6a, 0x9a, 0x59, 0xf2, 0x0b, 0xa2, 0x41, 0xab, 0x4d, 0x96, 0x51, 0xf2, - 0x07, 0xe8, 0x17, 0xcc, 0xd1, 0xee, 0xf5, 0x4b, 0x26, 0x4b, 0x02, 0x15, 0x05, 0xbf, 0x6c, 0xc1, - 0x38, 0xbb, 0xad, 0x8f, 0xbe, 0x2c, 0xaa, 0x5c, 0xca, 0xdc, 0x00, 0xfa, 0x42, 0xc6, 0xd5, 0x7e, - 0x59, 0x99, 0x3b, 0xa0, 0x75, 0xa2, 0x89, 0x5f, 0xfb, 0x87, 0x05, 0x28, 0x52, 0xec, 0xd1, 0xbd, - 0x68, 0xb3, 0xce, 0xaa, 0x6e, 0x24, 0xeb, 0x73, 0xa6, 0xf2, 0x9e, 0xee, 0x1c, 0xe9, 0x7f, 0xca, - 0x80, 0xf8, 0xad, 0xf0, 0x7c, 0xde, 0x8b, 0x36, 0x25, 0xef, 0x4d, 0x9e, 0xb4, 0x39, 0x53, 0x79, - 0x53, 0x96, 0xf5, 0xa6, 0x27, 0x7a, 0xfb, 0xaa, 0xb8, 0xf9, 0x16, 0x4c, 0xf5, 0x65, 0x5a, 0xbd, - 0x6e, 0x66, 0x5c, 0x77, 0x35, 0x16, 0x49, 0xb7, 0x73, 0x68, 0x26, 0xee, 0x36, 0xde, 0x64, 0x5f, - 0x8b, 0x67, 0x77, 0xce, 0x54, 0xdd, 0x57, 0xd5, 0xe7, 0x4d, 0xe5, 0x8d, 0x53, 0xc3, 0x20, 0xdd, - 0x2e, 0x21, 0x5d, 0xd1, 0x2d, 0xd7, 0x34, 0xbf, 0x12, 0x6d, 0x23, 0x3e, 0x11, 0xf2, 0xf6, 0x99, - 0x33, 0x95, 0x37, 0x3e, 0x59, 0xd7, 0x57, 0x06, 0x75, 0x1d, 0xa8, 0x74, 0xd8, 0xb3, 0x66, 0xa6, - 0xf2, 0xaa, 0x9b, 0xd9, 0x5a, 0xeb, 0x45, 0x32, 0xde, 0x39, 0x7d, 0x49, 0x18, 0x4f, 0xa9, 0xb4, - 0xfe, 0xdb, 0x3c, 0x8c, 0xb3, 0x1b, 0x32, 0x92, 0x31, 0xa4, 0xba, 0x43, 0xa7, 0xcf, 0x9b, 0xea, - 0x6b, 0x5b, 0x92, 0x31, 0xc4, 0xee, 0xf3, 0x24, 0x8d, 0x21, 0xd5, 0xbd, 0xae, 0xb8, 0xc3, 0x41, - 0xc6, 0x90, 0xd0, 0x61, 0xc2, 0x18, 0xca, 0xb8, 0xc7, 0xa5, 0x9f, 0x35, 0xb3, 0x2e, 0x5a, 0xc9, - 0xfb, 0x87, 0xf5, 0xac, 0x54, 0x08, 0xe6, 0x4d, 0xe5, 0x3d, 0x29, 0x7d, 0xc1, 0x54, 0xdf, 0x74, - 0x92, 0x25, 0x40, 0xb2, 0x67, 0xbe, 0xc6, 0xa2, 0x19, 0xa4, 0xba, 0xed, 0x14, 0xcf, 0xc8, 0x20, - 0x33, 0x28, 0xa3, 0xf7, 0xb5, 0x3f, 0xc8, 0x43, 0x55, 0xbc, 0x30, 0x83, 0x7e, 0x25, 0x5a, 0x51, - 0xdd, 0xcc, 0xbc, 0xee, 0xa4, 0x2f, 0x9a, 0x03, 0xae, 0x2e, 0xb1, 0xbd, 0x66, 0xd4, 0xf0, 0xc0, - 0xe2, 0x75, 0x1e, 0x2a, 0xab, 0x85, 0xf5, 0x58, 0x36, 0x07, 0xdd, 0x71, 0xd2, 0x57, 0xcc, 0x81, - 0x57, 0x9c, 0x8c, 0x3a, 0x19, 0x08, 0xa1, 0xd4, 0x40, 0xa2, 0x89, 0x2a, 0xa3, 0x9a, 0x58, 0x9a, - 0x25, 0x73, 0xc0, 0xb5, 0x25, 0xa3, 0x41, 0xfa, 0x3f, 0x8b, 0x16, 0x92, 0xfd, 0xf3, 0xb5, 0xd9, - 0x89, 0xd6, 0x46, 0x9e, 0x2c, 0x79, 0x81, 0x16, 0xcd, 0x01, 0x57, 0x92, 0xd8, 0x18, 0x57, 0xb2, - 0xc6, 0x58, 0xfb, 0xdd, 0x02, 0x8c, 0x91, 0x03, 0x0b, 0x74, 0x27, 0x5a, 0x1a, 0x64, 0xa6, 0xae, - 0x31, 0xe9, 0x33, 0xa6, 0xe2, 0x9e, 0xd1, 0x0c, 0xe9, 0x7d, 0xc2, 0x28, 0x11, 0x1a, 0x60, 0xbe, - 0xa2, 0x3b, 0xd1, 0x1e, 0xa3, 0xfd, 0xc8, 0x1b, 0x6c, 0xc6, 0x54, 0x5c, 0x13, 0x62, 0xfd, 0xe8, - 0x52, 0x3f, 0x6f, 0x8b, 0x4b, 0x39, 0x67, 0xaa, 0xee, 0x11, 0x61, 0xe2, 0x54, 0xfa, 0x97, 0xce, - 0x92, 0x0e, 0x67, 0xd0, 0x34, 0xef, 0x50, 0xc9, 0x8d, 0x29, 0x2e, 0x89, 0x35, 0x9b, 0x35, 0x15, - 0x77, 0x7e, 0xb8, 0x98, 0x47, 0x2b, 0xa9, 0x0e, 0x65, 0xdd, 0x22, 0xe6, 0xc6, 0xf4, 0xe5, 0xe5, - 0xa5, 0x9a, 0x31, 0x15, 0xb7, 0x78, 0x58, 0xd7, 0x57, 0x86, 0x75, 0xfd, 0x8d, 0xb4, 0x02, 0xb1, - 0x68, 0x66, 0x5f, 0xff, 0xd1, 0x97, 0xcc, 0x41, 0xd7, 0x72, 0xd8, 0xf6, 0xd5, 0xeb, 0xd1, 0xa8, - 0x0a, 0x15, 0xe1, 0x01, 0x8c, 0xf3, 0x58, 0xca, 0x9b, 0x90, 0x7f, 0xc3, 0x09, 0x11, 0x32, 0x53, - 0x57, 0x64, 0xf4, 0x19, 0x33, 0x7d, 0x43, 0x86, 0x2f, 0x29, 0x22, 0x0c, 0x93, 0x85, 0x68, 0xae, - 0xfd, 0x51, 0x1e, 0xc6, 0x59, 0xd8, 0x35, 0x7a, 0x1b, 0x4a, 0xfc, 0x1a, 0x08, 0x5a, 0x30, 0xd5, - 0x97, 0x64, 0xf4, 0xba, 0x99, 0x75, 0x63, 0x44, 0xe2, 0xf0, 0x2c, 0x5a, 0x1b, 0x53, 0x8d, 0xa4, - 0xca, 0x28, 0x6f, 0x72, 0xe8, 0x0b, 0xa6, 0xfa, 0xc6, 0x86, 0xcc, 0x8a, 0x59, 0x9f, 0x31, 0xe1, - 0x88, 0xb2, 0x43, 0x75, 0x59, 0x45, 0x9f, 0x37, 0xd5, 0x57, 0x4a, 0x24, 0xd9, 0x21, 0xa0, 0xfa, - 0x43, 0x0d, 0x56, 0x22, 0xd2, 0x4d, 0x44, 0xa3, 0xbf, 0x41, 0x03, 0xce, 0x97, 0xcd, 0x41, 0x01, - 0xf6, 0xfa, 0x8a, 0x39, 0x30, 0x06, 0xde, 0x78, 0x89, 0x8c, 0x6c, 0xa2, 0xe7, 0x54, 0x2f, 0xc4, - 0x01, 0x4d, 0x7a, 0x5d, 0x26, 0xba, 0xd8, 0xb3, 0xf6, 0x5f, 0x72, 0x30, 0x25, 0xc7, 0xe7, 0x04, - 0x49, 0xeb, 0x64, 0x70, 0x44, 0xb4, 0xbe, 0x3a, 0x2c, 0x7a, 0x53, 0x96, 0x4d, 0x07, 0xb4, 0x72, - 0xca, 0x13, 0x78, 0x20, 0x5a, 0x27, 0x83, 0xe2, 0xf1, 0xf4, 0x15, 0x73, 0x60, 0xb0, 0xdb, 0x68, - 0xc3, 0xed, 0xc3, 0x38, 0x0b, 0x44, 0x4a, 0x0d, 0x27, 0x87, 0x58, 0xa5, 0x86, 0x4b, 0xc6, 0x2f, - 0x49, 0xbe, 0x31, 0x79, 0xb8, 0x00, 0xef, 0xab, 0xbf, 0xa6, 0x41, 0x8d, 0x1f, 0xef, 0xbd, 0xe5, - 0x1e, 0x38, 0xf7, 0xdc, 0xae, 0x83, 0x7c, 0xd9, 0xbd, 0x90, 0x15, 0xa7, 0xa4, 0xeb, 0xd9, 0x71, - 0x3b, 0xdc, 0x67, 0x82, 0x2e, 0xa8, 0x85, 0x72, 0xdb, 0x3e, 0x0c, 0x3e, 0xb8, 0xf6, 0x4d, 0x1e, - 0xdf, 0xf4, 0xc1, 0xda, 0xff, 0xce, 0x43, 0xc1, 0xf2, 0x3a, 0x8e, 0xcc, 0xfc, 0x3d, 0x05, 0xf3, - 0xf7, 0x86, 0x30, 0x7f, 0x4f, 0xcd, 0xb4, 0x3d, 0x35, 0xd3, 0xf6, 0x86, 0x33, 0x6d, 0x2f, 0x9b, - 0x69, 0x7b, 0x2a, 0xa6, 0xed, 0x0d, 0x63, 0xda, 0x5e, 0x26, 0x67, 0x95, 0x24, 0x96, 0xa7, 0x90, - 0x58, 0xde, 0x10, 0x89, 0xc5, 0x5e, 0x5e, 0x62, 0xfe, 0x9e, 0x82, 0xf9, 0x7b, 0x43, 0x98, 0x7f, - 0x36, 0x8a, 0x0f, 0xa5, 0x78, 0x80, 0x79, 0x53, 0x19, 0xe8, 0x80, 0x55, 0x41, 0x65, 0x9c, 0x82, - 0x51, 0x23, 0xc3, 0x00, 0x8a, 0xd0, 0xdd, 0xf8, 0xa1, 0xf6, 0x83, 0x75, 0xf7, 0xdd, 0xaf, 0xc0, - 0x97, 0xa0, 0xb8, 0xe3, 0xd8, 0xbe, 0xe3, 0xa3, 0xfb, 0xa5, 0x1c, 0x7a, 0x65, 0x5d, 0xca, 0x69, - 0xbc, 0x4a, 0x82, 0xa6, 0x9f, 0x5b, 0xed, 0xf9, 0xce, 0xae, 0xfb, 0xc4, 0x69, 0xaf, 0xee, 0x1c, - 0xae, 0x6e, 0x90, 0xda, 0x37, 0xd8, 0xef, 0xea, 0x6b, 0xa4, 0xca, 0xeb, 0xfa, 0x04, 0x6e, 0xe9, - 0xf9, 0x4c, 0xbb, 0x58, 0xcd, 0xed, 0x54, 0x01, 0xa2, 0xae, 0xcf, 0xfc, 0x9f, 0xff, 0xb6, 0xa2, - 0xfd, 0xfd, 0x9f, 0xae, 0x68, 0xff, 0xf4, 0xa7, 0x2b, 0xda, 0x8f, 0x7f, 0xba, 0xa2, 0xfd, 0xe4, - 0xa7, 0x2b, 0xda, 0x7f, 0xfd, 0xe9, 0x8a, 0xf6, 0xfd, 0x9f, 0xad, 0x9c, 0xf9, 0xc9, 0xcf, 0x56, - 0xce, 0xfc, 0xf9, 0xcf, 0x56, 0xce, 0xbc, 0x9b, 0xb7, 0x7b, 0xee, 0x4e, 0x91, 0x1c, 0x96, 0xbf, - 0xf8, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xa2, 0x7b, 0x68, 0xca, 0x9a, 0xb3, 0x00, 0x00, + 0xf0, 0xbf, 0x47, 0xcd, 0x3d, 0xc7, 0x0f, 0x5c, 0xaf, 0x5b, 0x1f, 0x27, 0x88, 0x56, 0x09, 0xf0, + 0x1d, 0x0a, 0x43, 0xaf, 0xc3, 0x6c, 0xf2, 0x85, 0x9a, 0xbe, 0xb3, 0x55, 0x2f, 0x11, 0x9c, 0xc1, + 0xa4, 0x73, 0x65, 0x39, 0x5b, 0x16, 0x4a, 0xbc, 0xa0, 0xe5, 0x6c, 0xa1, 0xcf, 0x40, 0xcd, 0x6e, + 0xb7, 0x19, 0xbe, 0xcd, 0x60, 0xc7, 0xf6, 0x9d, 0x7a, 0x99, 0xb4, 0xac, 0x9a, 0x14, 0xdf, 0x0d, + 0x0c, 0xb3, 0x26, 0xed, 0x76, 0x5b, 0x78, 0xc6, 0xed, 0xda, 0x4e, 0x47, 0x6e, 0x07, 0xaa, 0x76, + 0x6d, 0xa7, 0x23, 0xb6, 0xfb, 0x2a, 0xd4, 0xc5, 0x36, 0x4d, 0x4a, 0xb9, 0xa6, 0xdb, 0xdd, 0xf2, + 0xea, 0x15, 0xd2, 0xde, 0x90, 0xa8, 0x2c, 0xb4, 0x15, 0x08, 0x3e, 0xb7, 0xa9, 0x02, 0xa3, 0x0b, + 0x50, 0xf3, 0xde, 0xef, 0x3a, 0x7e, 0x73, 0xdb, 0xf7, 0xfa, 0xbd, 0x66, 0xc7, 0x0d, 0xc2, 0x7a, + 0x75, 0x39, 0x7f, 0xa1, 0x6c, 0x4d, 0x12, 0xf8, 0x9b, 0x18, 0x7c, 0xc7, 0x0d, 0x42, 0xb4, 0x06, + 0x0b, 0xbd, 0x8e, 0x1d, 0x6e, 0x79, 0xfe, 0x6e, 0x92, 0x6e, 0x13, 0x29, 0xba, 0xcd, 0xf1, 0xaa, + 0x32, 0xe9, 0x4c, 0x98, 0x09, 0x9d, 0x8e, 0xd3, 0xf3, 0xfc, 0xb0, 0xd9, 0xa2, 0x28, 0x37, 0xdd, + 0x76, 0x7d, 0x92, 0xcc, 0xd1, 0x34, 0x2f, 0xe2, 0x2f, 0xd3, 0x46, 0xa7, 0xa0, 0x1c, 0x3a, 0x5d, + 0xbb, 0x1b, 0xe2, 0x5a, 0x53, 0xa4, 0x56, 0x89, 0x02, 0xd6, 0xdb, 0xe8, 0x16, 0x4c, 0x04, 0x8e, + 0xbf, 0xe7, 0xb6, 0x9c, 0x66, 0xe8, 0x3d, 0x72, 0xba, 0xf5, 0x1a, 0x61, 0xed, 0x33, 0x1f, 0x3f, + 0x69, 0x54, 0x59, 0x01, 0x81, 0xa7, 0x99, 0x9b, 0x17, 0xbf, 0x8d, 0x8b, 0xd1, 0x8b, 0x50, 0xea, + 0xf9, 0xde, 0x9e, 0xdb, 0x76, 0xfc, 0xfa, 0xf4, 0xb2, 0x76, 0x61, 0x72, 0x65, 0x4e, 0xa2, 0xe7, + 0x03, 0x56, 0x68, 0x45, 0xd5, 0xf4, 0x7f, 0xad, 0x01, 0x08, 0x44, 0xfc, 0x4c, 0xc4, 0xf5, 0x1a, + 0x69, 0xbf, 0x94, 0xc1, 0xf5, 0xec, 0x6f, 0xc4, 0xfc, 0xf3, 0x50, 0xf4, 0x1d, 0x3b, 0xf0, 0xba, + 0x74, 0x55, 0x5a, 0xec, 0xc9, 0xd8, 0x86, 0x22, 0xad, 0x89, 0x2a, 0x30, 0xbe, 0xde, 0xdd, 0xb3, + 0x3b, 0x6e, 0xbb, 0x76, 0x02, 0x01, 0x14, 0xef, 0x77, 0x3b, 0x6e, 0xd7, 0xa9, 0x69, 0xb8, 0xe0, + 0xfe, 0xd6, 0x16, 0x79, 0xc8, 0xa1, 0x69, 0x98, 0xb8, 0x41, 0x96, 0xc1, 0x03, 0xa7, 0xdb, 0x76, + 0xbb, 0xdb, 0xb5, 0x3c, 0x2e, 0xe7, 0x0f, 0x05, 0xdc, 0xf0, 0x96, 0xed, 0x76, 0x9c, 0x76, 0x6d, + 0x0c, 0x17, 0x6c, 0xf4, 0x5b, 0x2d, 0x27, 0x08, 0x6a, 0x45, 0xfd, 0x8f, 0x34, 0x98, 0x53, 0xb2, + 0x0b, 0x5a, 0x4d, 0xbc, 0xd2, 0xc5, 0xe1, 0x2c, 0x36, 0xea, 0xdb, 0x59, 0xea, 0xb7, 0x9b, 0x04, + 0x58, 0xef, 0x3e, 0xf0, 0xbd, 0x6d, 0x1f, 0xe3, 0xa6, 0x09, 0x48, 0xe7, 0x44, 0xa4, 0xf3, 0x08, + 0xc1, 0xe4, 0x03, 0xdb, 0xc7, 0x2c, 0xc5, 0x61, 0x05, 0xe3, 0x2e, 0x94, 0xf8, 0x34, 0xc9, 0xbd, + 0x8e, 0x43, 0x7e, 0xf5, 0xdd, 0x8d, 0x9a, 0x86, 0xca, 0x30, 0xb6, 0xfa, 0x41, 0xdf, 0xc7, 0xe4, + 0x02, 0x28, 0xbe, 0x49, 0xb4, 0x46, 0x2d, 0x8f, 0xcb, 0xd7, 0xd7, 0xee, 0xd6, 0x0a, 0xb8, 0x95, + 0x65, 0x77, 0x5b, 0x3b, 0x8e, 0x5f, 0x1b, 0x33, 0xbe, 0xa5, 0xc1, 0x04, 0x7b, 0xdf, 0x43, 0xc8, + 0x6d, 0x74, 0x1d, 0x2a, 0xad, 0x98, 0x5a, 0xe4, 0xf5, 0xf1, 0x22, 0x17, 0x28, 0xb8, 0x36, 0x83, + 0x9b, 0x7c, 0xfc, 0xa4, 0xc1, 0x2b, 0xe2, 0xd5, 0x6c, 0x89, 0xad, 0x8c, 0x37, 0xa0, 0xc4, 0x45, + 0x3b, 0x5a, 0x81, 0xaa, 0x4d, 0x5e, 0x95, 0x71, 0xba, 0x46, 0x38, 0x7d, 0x0a, 0xb7, 0xa7, 0x70, + 0x02, 0xb6, 0xd8, 0x03, 0x61, 0x6b, 0xe3, 0x31, 0x94, 0x57, 0xdf, 0xdd, 0x60, 0x1d, 0x3c, 0x07, + 0xc0, 0x3a, 0x78, 0xe4, 0xec, 0xb3, 0xe6, 0x13, 0x1f, 0x3f, 0x69, 0x94, 0x29, 0xf4, 0x91, 0xb3, + 0x6f, 0xb1, 0xbf, 0x6f, 0x39, 0xfb, 0xe8, 0x73, 0x00, 0x81, 0xd3, 0xf2, 0x9d, 0x90, 0xd4, 0xa6, + 0x1a, 0x63, 0x09, 0xd7, 0xa6, 0xd0, 0x47, 0xce, 0x7e, 0x7a, 0x4d, 0xb1, 0xb2, 0xb7, 0x9c, 0x7d, + 0x63, 0x0d, 0xca, 0xeb, 0x6b, 0x77, 0xd9, 0xc8, 0x57, 0x61, 0xdc, 0xee, 0xb9, 0xc2, 0xb0, 0xa7, + 0x3f, 0x7e, 0xd2, 0xe0, 0xa0, 0x74, 0x37, 0x45, 0xbb, 0xe7, 0xe2, 0x3e, 0x1e, 0xc1, 0x04, 0x9b, + 0x0e, 0xd6, 0xcf, 0x05, 0x28, 0x39, 0xdd, 0x76, 0xcf, 0x73, 0xbb, 0x21, 0xeb, 0x88, 0xe8, 0x3b, + 0x0e, 0xb3, 0xa2, 0x7f, 0xe8, 0x05, 0x18, 0xa3, 0x54, 0xa2, 0x88, 0xeb, 0x1f, 0x3f, 0x69, 0x8c, + 0x65, 0x08, 0x02, 0x0a, 0x37, 0xfe, 0x6a, 0x0e, 0x4a, 0x1b, 0x2f, 0xb1, 0x81, 0xf4, 0xe4, 0x40, + 0x42, 0xd7, 0x84, 0xa5, 0xb7, 0x5d, 0x91, 0xa5, 0xf1, 0x13, 0x6a, 0x40, 0xa5, 0xed, 0x06, 0xf6, + 0x66, 0xc7, 0x69, 0x06, 0x01, 0x55, 0x8e, 0x25, 0x0b, 0x18, 0x68, 0x23, 0xe8, 0xa0, 0xe7, 0x00, + 0xf1, 0x0a, 0x3d, 0x3b, 0xdc, 0x69, 0x06, 0xe1, 0x7e, 0xc7, 0x21, 0x3a, 0xb2, 0x64, 0xd5, 0x58, + 0xc9, 0x03, 0x3b, 0xdc, 0xd9, 0xc0, 0x70, 0xae, 0xc4, 0xec, 0x6d, 0xa7, 0xd9, 0xea, 0xd8, 0x01, + 0xd5, 0x89, 0x4c, 0x89, 0xd9, 0xdb, 0xce, 0x75, 0x0c, 0xc3, 0x04, 0x09, 0x02, 0xa7, 0x19, 0xee, + 0xf7, 0x1c, 0xa2, 0x0b, 0x27, 0x57, 0x26, 0x4c, 0xfe, 0x12, 0xe6, 0x46, 0xe0, 0x58, 0xe3, 0x41, + 0xe0, 0xbc, 0xbd, 0xdf, 0x73, 0x8c, 0xcb, 0x90, 0xdf, 0x08, 0x9c, 0x94, 0x2c, 0xd9, 0xd8, 0xb8, + 0xd9, 0xdc, 0x78, 0x89, 0xca, 0x12, 0xfc, 0xff, 0xad, 0xbb, 0x1b, 0xb5, 0x9c, 0xf1, 0xab, 0x79, + 0xa8, 0x90, 0x85, 0xc2, 0xc8, 0x71, 0x86, 0xb0, 0x9e, 0xd7, 0xef, 0x86, 0xcd, 0xae, 0xbd, 0xeb, + 0x30, 0x92, 0x54, 0x18, 0xec, 0x9e, 0xbd, 0xeb, 0xa0, 0x2f, 0x00, 0x7f, 0x14, 0xf8, 0x85, 0x58, + 0x18, 0x0c, 0xac, 0x9c, 0x69, 0x5e, 0x88, 0x19, 0xee, 0x16, 0x4c, 0xb4, 0x3a, 0xae, 0xd3, 0x0d, + 0x9b, 0x94, 0x8b, 0xa8, 0x79, 0x41, 0x45, 0x39, 0x2d, 0xa0, 0x70, 0x85, 0x28, 0xa7, 0xc5, 0x1b, + 0xa4, 0x18, 0x5d, 0x83, 0x32, 0xeb, 0xc7, 0x6d, 0x13, 0xea, 0x96, 0xd7, 0x16, 0x31, 0x97, 0x50, + 0xa0, 0xdb, 0x4e, 0xb7, 0x67, 0x45, 0xeb, 0x6d, 0xdc, 0x36, 0xd6, 0x35, 0x63, 0x71, 0x5b, 0x0a, + 0x54, 0xb6, 0x8d, 0x54, 0xd1, 0x1d, 0x98, 0x0a, 0xfa, 0x9b, 0x41, 0xcb, 0x77, 0x89, 0x39, 0x88, + 0x7b, 0x28, 0x92, 0x1e, 0x9e, 0xf9, 0xf8, 0x49, 0x63, 0x52, 0x2c, 0x52, 0xf5, 0x23, 0x55, 0x58, + 0x6f, 0x1b, 0x5b, 0x50, 0xa5, 0xf2, 0x89, 0x4d, 0xc1, 0x22, 0x40, 0xcf, 0xf7, 0xb0, 0x18, 0xc2, + 0x1d, 0xd3, 0x09, 0x28, 0x33, 0xc8, 0x7a, 0x1b, 0xbd, 0x02, 0xa5, 0xaf, 0x07, 0x5e, 0x57, 0xa0, + 0x3d, 0x59, 0x62, 0x18, 0xa6, 0x24, 0x3c, 0x29, 0xc1, 0x6b, 0xec, 0x47, 0x79, 0x98, 0xb9, 0x2e, + 0xdb, 0x37, 0x44, 0xf6, 0x3f, 0x0f, 0x05, 0xc2, 0x55, 0x54, 0xf2, 0x9f, 0x34, 0x15, 0x75, 0x4c, + 0xcc, 0x58, 0x16, 0xa9, 0x86, 0x2e, 0x03, 0xd8, 0xef, 0x07, 0xdc, 0x2c, 0x6d, 0x33, 0x5b, 0x20, + 0x92, 0x3d, 0xb7, 0x4f, 0x58, 0x65, 0xfb, 0xfd, 0x80, 0xbd, 0xcb, 0x8b, 0x50, 0xb5, 0x31, 0x77, + 0xf1, 0xea, 0x0e, 0x93, 0x8d, 0x02, 0xcb, 0xdd, 0x3e, 0x61, 0x55, 0x6c, 0x81, 0x03, 0x5f, 0x86, + 0x09, 0x6a, 0xe4, 0xf3, 0x36, 0x5b, 0xa4, 0xcd, 0x84, 0x29, 0x12, 0xe9, 0xf6, 0x09, 0xab, 0xba, + 0x2d, 0x12, 0xed, 0x32, 0x80, 0xbb, 0xb9, 0xcb, 0x9b, 0x6c, 0x33, 0xac, 0x22, 0xb9, 0x84, 0xb1, + 0x72, 0x37, 0x77, 0x59, 0xe5, 0x57, 0x60, 0xd2, 0xa7, 0xd2, 0x86, 0x37, 0xd8, 0x21, 0x0d, 0x26, + 0x4d, 0x49, 0x08, 0xdd, 0x3e, 0x61, 0x4d, 0xf8, 0x22, 0xc0, 0x58, 0x87, 0x02, 0xa6, 0xc4, 0x31, + 0xe8, 0x9c, 0xb5, 0x12, 0x14, 0xe9, 0xd8, 0xc6, 0x6f, 0x69, 0x30, 0x97, 0xa0, 0x39, 0xd3, 0x42, + 0xaf, 0x0c, 0xd2, 0x42, 0x35, 0xa6, 0x52, 0xa2, 0x2a, 0x82, 0x46, 0xba, 0x0d, 0x73, 0x29, 0x8b, + 0xd7, 0x8d, 0x75, 0xd3, 0xac, 0x6a, 0x8e, 0xad, 0x99, 0x56, 0x1a, 0x68, 0xfc, 0x46, 0x09, 0xd0, + 0x46, 0x6b, 0xc7, 0x69, 0xf7, 0x3b, 0xce, 0x03, 0xaf, 0xe3, 0xb6, 0xf6, 0x09, 0xcf, 0xbc, 0x01, + 0x25, 0xb7, 0x1b, 0x3a, 0xfe, 0x9e, 0xdd, 0x61, 0x98, 0x19, 0x66, 0xba, 0x9a, 0xb9, 0xce, 0xea, + 0x50, 0x90, 0x15, 0xb5, 0x41, 0x57, 0x61, 0xac, 0x6d, 0xbb, 0x9d, 0x7d, 0x86, 0x50, 0x43, 0xd5, + 0xf8, 0x06, 0xae, 0xc0, 0x5a, 0xd2, 0xda, 0xe8, 0x55, 0x28, 0xbe, 0xef, 0x38, 0x8f, 0x3a, 0xfb, + 0x44, 0x62, 0x54, 0x56, 0x96, 0x55, 0xed, 0xde, 0x25, 0x35, 0x58, 0x43, 0x56, 0x1f, 0xbd, 0x06, + 0xe3, 0xbb, 0x5e, 0x37, 0xdc, 0xe9, 0xec, 0x33, 0x57, 0xe5, 0x8c, 0xaa, 0xe9, 0x5d, 0x5a, 0x85, + 0xb5, 0xe5, 0x2d, 0xb0, 0x3b, 0xc2, 0x4d, 0x72, 0xd6, 0xa6, 0x3e, 0x46, 0x8d, 0x66, 0x66, 0x65, + 0x33, 0x28, 0x3a, 0x07, 0x53, 0x5b, 0x9e, 0xdf, 0xf4, 0xc8, 0xf4, 0x35, 0x3b, 0x5e, 0xeb, 0x11, + 0xf3, 0x5b, 0x26, 0xb6, 0x3c, 0x66, 0x5a, 0xdc, 0xf1, 0x5a, 0x8f, 0xb0, 0x02, 0xb1, 0xfb, 0xa1, + 0xd7, 0xa4, 0xde, 0x0c, 0x71, 0x5a, 0x4a, 0x16, 0x60, 0x10, 0x35, 0xec, 0xf4, 0x97, 0xa0, 0xb6, + 0xde, 0x6d, 0xf9, 0xce, 0xae, 0xd3, 0x0d, 0xed, 0xce, 0x75, 0x2c, 0x38, 0x51, 0x03, 0xc6, 0x88, + 0x04, 0x25, 0x04, 0x2f, 0xac, 0x95, 0xb1, 0xa2, 0x23, 0x00, 0x8b, 0xfe, 0xe8, 0x3f, 0xd2, 0x60, + 0x52, 0xa6, 0x38, 0xaa, 0xc3, 0xf8, 0xae, 0xdb, 0xed, 0x87, 0x0e, 0x35, 0xec, 0xf2, 0x16, 0x7f, + 0xa4, 0xba, 0x2d, 0xb4, 0x5d, 0xaa, 0xdb, 0xf2, 0x16, 0x7b, 0x42, 0x5f, 0x82, 0x69, 0x37, 0x1e, + 0xb9, 0x49, 0x47, 0xa4, 0xd4, 0x7e, 0x56, 0x3d, 0xc5, 0x32, 0x9a, 0x56, 0xcd, 0x4d, 0x40, 0xf4, + 0xbf, 0xa6, 0x41, 0x45, 0x98, 0x4c, 0x84, 0xa0, 0x80, 0xdd, 0x76, 0x26, 0xda, 0xc8, 0xff, 0xa7, + 0x89, 0xce, 0xef, 0x6a, 0x50, 0x15, 0x79, 0x04, 0xd5, 0x20, 0xdf, 0xb6, 0x99, 0xbd, 0x62, 0xe1, + 0xbf, 0x11, 0x86, 0x39, 0x25, 0x86, 0xf9, 0xe1, 0x18, 0x16, 0x8e, 0x84, 0xe1, 0xef, 0x69, 0x30, + 0x21, 0xb1, 0x22, 0x46, 0xa8, 0x6d, 0x87, 0x0e, 0x9b, 0x44, 0xf2, 0xff, 0x53, 0x46, 0xd2, 0xf8, + 0x1d, 0x0d, 0x66, 0xe5, 0x96, 0x47, 0x95, 0x5a, 0x6f, 0xc1, 0x2c, 0x5f, 0x5f, 0xcd, 0x1e, 0xe9, + 0x51, 0x14, 0x5a, 0x33, 0x0a, 0x3c, 0x99, 0x29, 0x8e, 0x82, 0x54, 0x89, 0xf1, 0xaf, 0xa6, 0x01, + 0xad, 0x49, 0xab, 0x93, 0x08, 0xae, 0xf3, 0x30, 0x95, 0x18, 0x83, 0xcd, 0xfb, 0xa4, 0xdc, 0x07, + 0x5e, 0x39, 0x41, 0x3f, 0xe8, 0x39, 0xdd, 0x36, 0x19, 0xbf, 0x64, 0xf1, 0x47, 0x74, 0x07, 0x26, + 0x7d, 0xa7, 0xd5, 0xb1, 0xdd, 0x5d, 0xde, 0x43, 0x9e, 0x68, 0xce, 0xb3, 0x66, 0x7a, 0x3c, 0xd3, + 0xa2, 0x35, 0x69, 0xa7, 0x44, 0x8b, 0x4e, 0xf8, 0x22, 0x08, 0x7d, 0x11, 0x26, 0xb8, 0x6c, 0xe1, + 0x3b, 0x29, 0xf9, 0x0b, 0x15, 0x75, 0x67, 0x0c, 0x44, 0xea, 0xdd, 0xec, 0x86, 0xfe, 0xbe, 0x55, + 0xdd, 0x14, 0x40, 0x82, 0x9c, 0xea, 0x78, 0x2d, 0xb2, 0x0d, 0xc5, 0x4c, 0x49, 0x26, 0xa7, 0xee, + 0x30, 0x28, 0x7e, 0x39, 0xe6, 0x7b, 0x50, 0xc3, 0xc5, 0xe2, 0x8f, 0x68, 0x09, 0x00, 0xdb, 0x7d, + 0x41, 0xcf, 0x6e, 0x39, 0x41, 0x7d, 0x9c, 0x48, 0x39, 0x01, 0x82, 0x1e, 0xc0, 0x54, 0xc7, 0xde, + 0x74, 0x3a, 0xcd, 0xc0, 0xe9, 0x38, 0xad, 0xd0, 0xf3, 0x83, 0x7a, 0x89, 0x20, 0x7c, 0x5e, 0x85, + 0xf0, 0x1d, 0x5c, 0x75, 0x83, 0xd7, 0xa4, 0x28, 0x4f, 0x76, 0x24, 0x20, 0x32, 0x60, 0xa2, 0xe7, + 0x3b, 0x4d, 0xe7, 0xb1, 0xd3, 0x6a, 0xfa, 0x58, 0xb4, 0x96, 0xa9, 0xc9, 0xd9, 0xf3, 0x9d, 0x9b, + 0x8f, 0x9d, 0x96, 0x85, 0xe5, 0xea, 0xb3, 0x30, 0xd9, 0xf3, 0x82, 0x50, 0xa8, 0x04, 0xd4, 0x44, + 0xc6, 0xd0, 0xa8, 0x56, 0x7a, 0x73, 0xa9, 0xa2, 0xda, 0x5c, 0x8a, 0xdd, 0xf7, 0x2a, 0x61, 0xac, + 0x25, 0x15, 0xe6, 0x8a, 0xbd, 0xab, 0x35, 0xa8, 0x32, 0x16, 0x70, 0xda, 0xcd, 0xcd, 0x7d, 0xb6, + 0x0d, 0xd2, 0x50, 0xb6, 0xe6, 0xf5, 0xd6, 0xf6, 0xad, 0x4a, 0x10, 0x3f, 0xa0, 0x6b, 0x64, 0x1d, + 0x76, 0xfa, 0x6d, 0xb2, 0xb3, 0xe5, 0xf5, 0x7d, 0x4c, 0xe5, 0x49, 0x42, 0xc0, 0x09, 0xd3, 0x62, + 0x10, 0x32, 0x6a, 0x8d, 0xd5, 0xe3, 0x40, 0xc5, 0x5e, 0xd7, 0x94, 0x62, 0xaf, 0xeb, 0x2a, 0x2c, + 0xb4, 0x02, 0xb7, 0x19, 0x74, 0xed, 0x5e, 0xb0, 0xe3, 0x85, 0xd4, 0xa1, 0xa0, 0xa6, 0x3c, 0xd9, + 0x2f, 0xb1, 0x66, 0x5b, 0x81, 0xbb, 0xc1, 0x4a, 0x89, 0x67, 0x41, 0x6c, 0xfa, 0xb3, 0x98, 0xa7, + 0xe9, 0x40, 0xc4, 0xc5, 0x08, 0xea, 0xd3, 0x64, 0xea, 0x27, 0x38, 0x14, 0xb3, 0x6e, 0x80, 0xae, + 0xc1, 0x4c, 0x72, 0x85, 0xfa, 0xce, 0x56, 0x1d, 0xa5, 0x36, 0x84, 0xa6, 0xe5, 0xd5, 0x64, 0x39, + 0x5b, 0xb8, 0x6d, 0x82, 0x39, 0x49, 0xdb, 0x99, 0x74, 0x5b, 0x99, 0x59, 0x71, 0xdb, 0xab, 0x30, + 0x2d, 0xf1, 0x08, 0x69, 0x39, 0x9b, 0x6a, 0x39, 0x29, 0xf0, 0x0c, 0x6e, 0xf6, 0x0a, 0x20, 0x99, + 0x6d, 0x48, 0xbb, 0xb9, 0x54, 0xbb, 0x29, 0x91, 0x8d, 0x70, 0xc3, 0xcf, 0x43, 0x85, 0xe1, 0x4a, + 0x2c, 0xe3, 0xf9, 0x6c, 0x3e, 0xa1, 0x20, 0xb2, 0xb0, 0x61, 0x33, 0xfa, 0x8f, 0x1d, 0xc0, 0x6e, + 0xd0, 0x4c, 0xae, 0x94, 0x05, 0x32, 0x03, 0xb5, 0x6e, 0x20, 0xaf, 0x0b, 0x74, 0x11, 0x6a, 0xa1, + 0xed, 0x6f, 0x3b, 0xd4, 0xe7, 0x22, 0x2b, 0xad, 0x5e, 0xa7, 0x3b, 0xae, 0x14, 0x7e, 0x8f, 0x83, + 0xd1, 0xe5, 0x68, 0xaf, 0x81, 0xbc, 0xcb, 0xc9, 0xd4, 0xbb, 0x00, 0x2b, 0xb6, 0x9c, 0x2d, 0xbd, + 0x05, 0xd3, 0x29, 0x91, 0x81, 0xb5, 0x5d, 0xe4, 0x9d, 0x5b, 0xf8, 0x2f, 0x7a, 0x15, 0xc6, 0xf6, + 0xec, 0x4e, 0xdf, 0x61, 0x82, 0xd6, 0x18, 0xbc, 0x1e, 0xee, 0xb8, 0x41, 0x68, 0xd1, 0x06, 0xd7, + 0x72, 0xaf, 0x6a, 0xfa, 0x2a, 0xcc, 0x28, 0x96, 0xb9, 0x62, 0x98, 0x59, 0x71, 0x98, 0xb2, 0xd8, + 0x45, 0x00, 0x10, 0xd3, 0x11, 0xbd, 0x22, 0xf9, 0x23, 0xcf, 0x0c, 0xa6, 0xba, 0xe0, 0x99, 0x18, + 0xcf, 0xa9, 0xac, 0xf3, 0x0a, 0x8c, 0xbf, 0xe9, 0x74, 0x1d, 0xdf, 0x6d, 0xd1, 0x4d, 0xa6, 0x7b, + 0x9e, 0xbf, 0x6b, 0x77, 0x6a, 0x39, 0xfd, 0x57, 0x35, 0xa8, 0x08, 0xeb, 0x14, 0xbd, 0x01, 0x45, + 0xca, 0xea, 0x6c, 0xe0, 0x73, 0x43, 0x16, 0xb6, 0xb9, 0x41, 0x6a, 0x5b, 0xac, 0x95, 0xf1, 0x22, + 0x14, 0x29, 0x44, 0x1e, 0xbf, 0x04, 0x85, 0x87, 0x81, 0xe3, 0xd7, 0x34, 0x54, 0x83, 0xea, 0x1d, + 0xb7, 0xe5, 0x74, 0x03, 0xe7, 0xfa, 0x8e, 0xd3, 0x7a, 0x54, 0xcb, 0xe9, 0xb7, 0x61, 0x52, 0xa6, + 0xab, 0xb4, 0xb5, 0x98, 0x1f, 0x5d, 0x36, 0xe9, 0xbf, 0x93, 0x97, 0x76, 0x28, 0x1b, 0x11, 0xff, + 0x0a, 0x4e, 0x3c, 0xe3, 0x4f, 0xb2, 0xde, 0x5f, 0x83, 0x4a, 0xcb, 0x77, 0xec, 0xd0, 0x69, 0x46, + 0x26, 0x44, 0x65, 0x45, 0x37, 0xa9, 0x4b, 0x65, 0xf2, 0x33, 0x13, 0xf3, 0x6d, 0x7e, 0xba, 0x62, + 0x01, 0xad, 0x8e, 0x01, 0xb8, 0xf1, 0x96, 0xdb, 0x75, 0x83, 0x1d, 0xda, 0x38, 0x3f, 0xbc, 0x31, + 0xad, 0x4e, 0x1a, 0x7f, 0x4e, 0x3a, 0x32, 0xc8, 0xd0, 0x9a, 0x03, 0x77, 0x19, 0x2d, 0xba, 0xcb, + 0x48, 0x35, 0x1b, 0x7b, 0x32, 0x7e, 0x5b, 0x53, 0x6f, 0x33, 0x0a, 0x1b, 0xa3, 0x5a, 0x62, 0xcf, + 0x91, 0xec, 0x33, 0xae, 0x6e, 0x7a, 0x7e, 0xe8, 0xb4, 0x6b, 0x79, 0x61, 0x03, 0xb2, 0x80, 0xaa, + 0x50, 0x22, 0x86, 0x38, 0x6e, 0x26, 0xef, 0xa1, 0xe2, 0xa2, 0xeb, 0x76, 0x2f, 0xec, 0xfb, 0x4e, + 0xbb, 0x36, 0xae, 0xd8, 0x9c, 0x2c, 0xa5, 0xb7, 0x67, 0xcb, 0xc6, 0xab, 0x30, 0x9d, 0x32, 0x04, + 0x52, 0x1b, 0x34, 0xb4, 0x11, 0xe5, 0x52, 0x8b, 0x98, 0x6d, 0xb5, 0x1c, 0xb1, 0xb2, 0x64, 0x02, + 0x1d, 0x83, 0x95, 0x95, 0x70, 0x66, 0x64, 0x2b, 0x2b, 0x3d, 0x1d, 0xdc, 0xca, 0xda, 0x4c, 0x95, + 0x18, 0x5f, 0x87, 0xf2, 0xbd, 0x5b, 0x7c, 0xd7, 0xb1, 0x01, 0x95, 0xc0, 0xf1, 0xf7, 0x1c, 0xbf, + 0x69, 0xb7, 0xdb, 0x3e, 0xe7, 0x3a, 0x0a, 0x5a, 0x6d, 0xb7, 0x7d, 0x74, 0x12, 0x4a, 0x41, 0x7f, + 0x93, 0x6c, 0x89, 0x31, 0x21, 0x30, 0x1e, 0xf4, 0x37, 0x1f, 0xd8, 0xe1, 0x0e, 0x3a, 0x03, 0xd5, + 0x5d, 0xb2, 0xa5, 0x44, 0x4f, 0xd8, 0xd8, 0x81, 0x53, 0x85, 0xc0, 0xee, 0x13, 0x90, 0xf1, 0x2f, + 0x8a, 0xdc, 0xa2, 0xe3, 0xaa, 0x81, 0xf0, 0xfa, 0x73, 0x92, 0xb8, 0xa8, 0x9b, 0xe9, 0x2a, 0xe2, + 0xee, 0x05, 0x82, 0x82, 0x30, 0x3c, 0xf9, 0x8f, 0xd6, 0x61, 0xd2, 0xe9, 0xb6, 0xfc, 0x7d, 0xba, + 0x99, 0x83, 0xa5, 0x16, 0xdd, 0x8f, 0x32, 0x3e, 0x7e, 0xd2, 0x98, 0x88, 0x4b, 0x94, 0xbb, 0x2b, + 0x42, 0xf9, 0x5b, 0xce, 0xbe, 0xf2, 0xec, 0xac, 0xa0, 0x3e, 0x3b, 0x8b, 0x97, 0xfa, 0x98, 0xa4, + 0x5e, 0x24, 0xcc, 0x47, 0x3a, 0x42, 0x2b, 0xaa, 0xac, 0x9c, 0x6b, 0x70, 0x92, 0xf0, 0x16, 0x5e, + 0xe3, 0x29, 0x94, 0xa8, 0xc3, 0xb9, 0xc0, 0x2b, 0x24, 0x76, 0x03, 0x8e, 0x78, 0x60, 0x66, 0xc2, + 0x8c, 0xe0, 0x00, 0x37, 0x9d, 0xae, 0xbd, 0xd9, 0x71, 0xda, 0xc4, 0xac, 0x2b, 0x59, 0xd3, 0x5e, + 0xe4, 0x05, 0xdf, 0xa4, 0x05, 0xe8, 0x02, 0x94, 0x83, 0x97, 0xe4, 0xfd, 0xa4, 0x72, 0xb4, 0xb5, + 0x79, 0xfb, 0x84, 0x55, 0x0a, 0x5e, 0x8a, 0x37, 0x79, 0xba, 0x5b, 0x81, 0xbc, 0x97, 0x04, 0x66, + 0xc4, 0x80, 0xb7, 0x4f, 0x58, 0xe5, 0xee, 0x16, 0xdb, 0x7a, 0xd2, 0x7f, 0x22, 0x1f, 0xda, 0x7c, + 0x2e, 0x71, 0xc2, 0x71, 0x76, 0x30, 0xb9, 0x47, 0x3d, 0xdd, 0x68, 0xa9, 0xc5, 0x4e, 0x19, 0xc6, + 0xde, 0x21, 0x7f, 0xb5, 0xb4, 0x38, 0xc8, 0xa1, 0x3a, 0xcc, 0xbe, 0x43, 0x49, 0x4f, 0x06, 0x8e, + 0x24, 0x52, 0x1e, 0xcd, 0x42, 0x2d, 0x2e, 0xe1, 0xe2, 0xc8, 0x78, 0x4d, 0xa5, 0xd8, 0x8a, 0x90, + 0x23, 0xdb, 0xb9, 0xd9, 0xbb, 0x4e, 0xf7, 0x6e, 0x6d, 0xd4, 0x0a, 0xc2, 0x46, 0xd3, 0x8f, 0x23, + 0x59, 0xc2, 0x5f, 0xfa, 0xa8, 0xb2, 0xe4, 0x66, 0x24, 0x4b, 0x22, 0x9b, 0x4e, 0x21, 0x4b, 0x44, + 0x12, 0x73, 0x29, 0x22, 0xc2, 0x8c, 0xef, 0x6a, 0x50, 0x15, 0x8d, 0x5f, 0xbc, 0x4a, 0x05, 0xc5, + 0x45, 0xfe, 0xa3, 0xd3, 0x50, 0x8e, 0xad, 0x23, 0x3a, 0x09, 0x31, 0x00, 0x1b, 0x17, 0xe4, 0x48, + 0x93, 0x09, 0x0e, 0xfa, 0x80, 0xfb, 0x79, 0xe4, 0x76, 0xd9, 0xde, 0xb0, 0x45, 0xfe, 0x63, 0xdf, + 0x87, 0x1b, 0xd0, 0x54, 0x85, 0xf0, 0x47, 0xe3, 0xc7, 0xf3, 0xdc, 0x0e, 0xe1, 0xae, 0x62, 0xd2, + 0x9b, 0xd2, 0x86, 0x79, 0x53, 0xb9, 0x41, 0xde, 0x54, 0x3e, 0xe5, 0x4d, 0xdd, 0x4e, 0x7b, 0x53, + 0xd4, 0xfd, 0xe3, 0x5e, 0xc5, 0xc8, 0x5e, 0x94, 0x99, 0x90, 0x26, 0xf3, 0x62, 0x07, 0x0a, 0x29, + 0x72, 0x19, 0xca, 0xb1, 0x03, 0x52, 0x54, 0x39, 0x20, 0x71, 0x39, 0x7a, 0x0e, 0xc6, 0xf7, 0xbc, + 0x4e, 0x7f, 0x97, 0x79, 0x84, 0x95, 0x15, 0x24, 0xf6, 0xfe, 0x0e, 0x29, 0xb2, 0x78, 0x15, 0xc1, + 0xf8, 0x20, 0x92, 0xb6, 0x24, 0x1a, 0x1f, 0x44, 0xd6, 0x9f, 0x87, 0xb1, 0x20, 0xb4, 0xb7, 0xa9, + 0xa7, 0x37, 0xb9, 0x32, 0x9d, 0x40, 0x75, 0xdb, 0xb1, 0x68, 0x79, 0xda, 0x35, 0x84, 0x51, 0x5c, + 0xc3, 0x8a, 0xc2, 0x35, 0xbc, 0x9e, 0xde, 0xc1, 0xab, 0x32, 0xb3, 0x45, 0x18, 0x5c, 0x56, 0x7d, + 0xa9, 0xdd, 0xbd, 0x05, 0x18, 0x6f, 0xf9, 0xd4, 0xa2, 0x9a, 0xa0, 0x42, 0xa0, 0xe5, 0x13, 0x6b, + 0x6a, 0x11, 0x20, 0xf4, 0x42, 0xbb, 0xd3, 0x0c, 0xdc, 0x0f, 0x1c, 0x72, 0xbc, 0x5d, 0xb0, 0xca, + 0x04, 0xb2, 0xe1, 0x7e, 0xe0, 0x28, 0x95, 0xc2, 0x94, 0x5a, 0x29, 0x28, 0xfd, 0xc3, 0xda, 0x68, + 0xfe, 0xa1, 0xe8, 0xc3, 0xd1, 0x0d, 0x9e, 0x69, 0x82, 0x49, 0xe4, 0xc3, 0xd1, 0x6d, 0xc4, 0x94, + 0x1b, 0x89, 0x0e, 0xe6, 0x46, 0xce, 0x1c, 0xc8, 0x8d, 0x9c, 0xcd, 0x70, 0x23, 0x55, 0xae, 0xe0, + 0xdc, 0xa1, 0x5d, 0xc1, 0xf9, 0x43, 0xba, 0x82, 0x0b, 0xc3, 0x5d, 0xc1, 0x2c, 0x5d, 0x58, 0x1f, + 0x49, 0x17, 0xbe, 0x22, 0x3b, 0x92, 0x27, 0xd3, 0x6b, 0x33, 0xc3, 0x81, 0x9c, 0x83, 0x62, 0xcb, + 0x6f, 0xf6, 0xdd, 0x76, 0x5d, 0xa7, 0x02, 0xad, 0xe5, 0x3f, 0x74, 0xdb, 0x98, 0x95, 0x7c, 0x27, + 0xc4, 0xfd, 0x7b, 0xdd, 0x66, 0xcf, 0xf1, 0x5d, 0xaf, 0x5d, 0x3f, 0x45, 0x76, 0xfa, 0xa6, 0x22, + 0xf8, 0x03, 0x02, 0x46, 0x57, 0xa0, 0x2a, 0xc5, 0x9e, 0x9c, 0x56, 0xc4, 0x9e, 0x54, 0x84, 0x28, + 0x11, 0x74, 0x1f, 0x16, 0xfa, 0x81, 0xe3, 0x73, 0xb3, 0x82, 0x04, 0x9f, 0xd0, 0x43, 0xe2, 0xfa, + 0x22, 0x59, 0xa8, 0x0b, 0x62, 0x5b, 0x73, 0x95, 0x1e, 0x3e, 0x63, 0xc4, 0xe7, 0x70, 0xbb, 0xb5, + 0xb8, 0x19, 0x2d, 0x4a, 0xfa, 0xaa, 0x4b, 0x83, 0x7c, 0xd5, 0x0c, 0x8f, 0xb9, 0x91, 0xe1, 0x31, + 0xbf, 0x05, 0x35, 0x7e, 0x82, 0xc3, 0x4e, 0xc6, 0x82, 0xfa, 0x32, 0x59, 0x26, 0xcb, 0x22, 0x71, + 0xd9, 0x71, 0xcb, 0x03, 0x56, 0x85, 0x8a, 0xce, 0x29, 0x5f, 0x86, 0x2a, 0xdd, 0xef, 0x33, 0x6a, + 0xf7, 0xfb, 0x65, 0x98, 0xef, 0x60, 0x50, 0xb4, 0x3a, 0x23, 0xf3, 0xc6, 0x20, 0xe6, 0xcd, 0x2c, + 0x29, 0xe5, 0x6b, 0x92, 0x59, 0x38, 0xc7, 0xe1, 0x22, 0xaf, 0xc1, 0xac, 0xea, 0x65, 0x0e, 0xd4, + 0xc7, 0x23, 0xc9, 0xcd, 0xbe, 0x22, 0xd9, 0xcd, 0xa7, 0xd4, 0x3c, 0x79, 0x78, 0xf7, 0xfa, 0x33, + 0x30, 0x29, 0x8b, 0x53, 0x8c, 0x6a, 0x3f, 0x3a, 0xd0, 0xc4, 0x7f, 0x23, 0x35, 0x9f, 0x8b, 0xd5, + 0xbc, 0xfe, 0xeb, 0x05, 0x28, 0x52, 0x8d, 0x72, 0x08, 0x2b, 0xa0, 0x06, 0xf9, 0xde, 0x5e, 0x8b, + 0xd9, 0x00, 0xf8, 0x2f, 0x3a, 0x05, 0x65, 0xb6, 0x0a, 0xf8, 0x11, 0xb1, 0x55, 0xa2, 0x80, 0xf5, + 0xf6, 0x81, 0x95, 0x66, 0x03, 0x2a, 0x6d, 0xdf, 0xc5, 0x0e, 0x0e, 0xc1, 0x8b, 0x6e, 0x9d, 0x02, + 0x05, 0x11, 0xf9, 0x37, 0x0b, 0x63, 0x1f, 0x78, 0xdd, 0x68, 0xe3, 0x94, 0x3e, 0xa0, 0xcf, 0xc2, + 0x38, 0x8b, 0x1b, 0x64, 0x7b, 0xa5, 0x8d, 0xb4, 0xfa, 0x34, 0xa9, 0x93, 0xc3, 0x58, 0x94, 0xd7, + 0x4f, 0x68, 0x96, 0x72, 0x52, 0xb3, 0x34, 0xa0, 0x62, 0xb7, 0xc2, 0x3e, 0x2f, 0x07, 0x52, 0x0e, + 0x14, 0x44, 0x2a, 0xa4, 0x42, 0x0b, 0x2a, 0x8a, 0xd0, 0x82, 0x39, 0x28, 0xf6, 0xf6, 0x5a, 0x98, + 0x40, 0x55, 0xca, 0x32, 0xbd, 0xbd, 0xd6, 0x7a, 0x1b, 0x2d, 0x43, 0x85, 0x44, 0x40, 0x61, 0x85, + 0xe0, 0xf8, 0x4c, 0xe5, 0x89, 0x20, 0x74, 0x0e, 0x26, 0x99, 0xd2, 0x67, 0x9a, 0x80, 0x85, 0x76, + 0x25, 0xa0, 0xfa, 0x35, 0xa8, 0x8a, 0xaf, 0x77, 0x20, 0xa6, 0xfd, 0x1b, 0x39, 0xc9, 0x8c, 0xbf, + 0x9a, 0x30, 0xe3, 0x17, 0xd5, 0x53, 0x36, 0xaa, 0xf9, 0xfe, 0x07, 0xbf, 0xc8, 0xdb, 0x06, 0x68, + 0x1e, 0x10, 0x71, 0xcd, 0xe8, 0x2b, 0xde, 0x75, 0x83, 0x00, 0xc3, 0xc1, 0xe8, 0xc2, 0x18, 0xb1, + 0x93, 0x52, 0x38, 0xaf, 0x77, 0x5d, 0xdc, 0x69, 0x4d, 0x43, 0x53, 0x50, 0x79, 0x10, 0x6b, 0xc0, + 0x5a, 0x0e, 0xd5, 0xa0, 0xfa, 0x40, 0x50, 0x6d, 0x34, 0x66, 0x8c, 0xf2, 0x5e, 0x50, 0x2b, 0xe0, + 0xe2, 0xd5, 0x5e, 0xaf, 0xe3, 0x52, 0x45, 0x1b, 0xd4, 0xc6, 0xb0, 0x5f, 0x71, 0xcb, 0xed, 0xda, + 0x9d, 0x5a, 0xd1, 0xf0, 0xa0, 0x4a, 0x51, 0x38, 0x4c, 0x74, 0xd4, 0x4a, 0xa4, 0x02, 0x05, 0xd7, + 0xa0, 0x22, 0x4c, 0x1b, 0x6b, 0xc1, 0xb4, 0x1f, 0x71, 0x08, 0xfe, 0x3c, 0x0f, 0x65, 0x8c, 0x25, + 0x9d, 0xf3, 0xd7, 0x60, 0x0c, 0x6b, 0x6c, 0xbe, 0x27, 0x36, 0x63, 0x46, 0x45, 0xe4, 0xdf, 0x7a, + 0xe8, 0xec, 0xae, 0xd5, 0x3e, 0x79, 0xd2, 0xa8, 0xee, 0xdb, 0xbb, 0x9d, 0x6b, 0x06, 0xa9, 0x6b, + 0x58, 0xb4, 0x8d, 0xfe, 0xbd, 0x1c, 0x94, 0x78, 0x2d, 0xd4, 0x84, 0x6a, 0xcf, 0x6b, 0x47, 0xfa, + 0x85, 0x75, 0xf8, 0xac, 0xa2, 0x43, 0xf3, 0x81, 0xd7, 0xe6, 0xe2, 0x9a, 0x30, 0xed, 0xda, 0xfc, + 0x27, 0x4f, 0x1a, 0x88, 0x8e, 0xd0, 0x8b, 0xcb, 0x0c, 0xab, 0x22, 0x3c, 0xa1, 0xcf, 0xc3, 0xb8, + 0xdd, 0xa2, 0x4b, 0x3d, 0x47, 0xfa, 0x9e, 0x16, 0xfa, 0x5e, 0x25, 0x25, 0x6b, 0xe8, 0x93, 0x27, + 0x8d, 0x49, 0xda, 0x11, 0xab, 0x6b, 0x58, 0xbc, 0x15, 0x96, 0x6f, 0x2d, 0xaf, 0x1b, 0xda, 0x2e, + 0x5e, 0x72, 0x54, 0x8e, 0xc5, 0x00, 0xfd, 0x0d, 0xa8, 0x25, 0xf1, 0x3a, 0xd0, 0x62, 0xfa, 0x6d, + 0x0d, 0x8a, 0x14, 0x0b, 0x74, 0x15, 0x08, 0xc1, 0xb1, 0x9f, 0xd4, 0xa5, 0x42, 0xb9, 0xb4, 0x36, + 0xf7, 0xc9, 0x93, 0xc6, 0x34, 0xc5, 0x2c, 0x2e, 0x33, 0x2c, 0xa1, 0x22, 0xba, 0x01, 0xd3, 0x7e, + 0x1f, 0x7b, 0x79, 0x4d, 0xcc, 0x8b, 0xe4, 0x18, 0x80, 0x1d, 0x90, 0xad, 0x9d, 0xfc, 0xe4, 0x49, + 0x63, 0x8e, 0x4f, 0x41, 0x77, 0xbd, 0xbb, 0x41, 0x2a, 0x3c, 0xf0, 0xda, 0x86, 0x35, 0x29, 0x03, + 0x62, 0x0c, 0xf3, 0x02, 0x86, 0xc6, 0xd7, 0x01, 0xac, 0x78, 0x83, 0xeb, 0x40, 0x4c, 0x76, 0x05, + 0x80, 0x4c, 0xb7, 0xc8, 0x63, 0x10, 0x93, 0x9e, 0xd5, 0x2f, 0xfb, 0x1c, 0x60, 0xbc, 0x0e, 0x13, + 0x96, 0xd3, 0xeb, 0xd8, 0x2d, 0x76, 0x42, 0x61, 0x5c, 0x56, 0x69, 0xb7, 0x78, 0x27, 0x4e, 0x13, + 0x76, 0xe8, 0x72, 0xc6, 0xdf, 0x9e, 0x83, 0x0a, 0x8b, 0x41, 0x26, 0x1c, 0x3a, 0x0f, 0x45, 0xca, + 0xbd, 0x6c, 0x1a, 0xd8, 0x93, 0xca, 0x85, 0xcc, 0x29, 0x5d, 0xc8, 0xf5, 0xb4, 0x23, 0x98, 0x67, + 0xe6, 0x8c, 0x30, 0xce, 0x48, 0x9e, 0xe0, 0x7d, 0x98, 0x8e, 0x14, 0x62, 0x73, 0xd7, 0xee, 0xf5, + 0xdc, 0xee, 0x36, 0xf3, 0x2a, 0x0d, 0xa9, 0xb3, 0xc8, 0xaa, 0xb9, 0x4b, 0x2b, 0xd1, 0xee, 0x6a, + 0xdd, 0x04, 0x18, 0x5d, 0xc3, 0x46, 0x3d, 0x21, 0x15, 0x3f, 0xef, 0x1c, 0x23, 0xa2, 0x77, 0xc6, + 0x94, 0x28, 0x68, 0xf2, 0xd3, 0x4d, 0x01, 0x26, 0x04, 0x88, 0x17, 0x59, 0x80, 0xb8, 0x88, 0x81, + 0x42, 0xc5, 0xbe, 0x26, 0xfa, 0xa5, 0xd4, 0xd9, 0x5c, 0x94, 0xda, 0xb0, 0xff, 0x6d, 0x6e, 0x63, + 0x89, 0x7e, 0xea, 0xf3, 0xb1, 0x9f, 0x5a, 0xe2, 0xa2, 0x42, 0x68, 0x9a, 0x74, 0x54, 0x05, 0xbf, + 0xbd, 0x2c, 0xfb, 0xed, 0x37, 0xa1, 0xc1, 0xdd, 0x30, 0xaa, 0x89, 0x89, 0xd1, 0x2f, 0x39, 0x36, + 0x40, 0x34, 0xfc, 0x69, 0x56, 0xed, 0x3e, 0xab, 0x65, 0x49, 0x7e, 0x8e, 0xac, 0xbd, 0x2b, 0x49, + 0xed, 0xad, 0x74, 0xf6, 0xaa, 0x87, 0x75, 0xf6, 0x26, 0x46, 0x72, 0xf6, 0x26, 0x15, 0xce, 0x5e, + 0x86, 0x3b, 0x36, 0x35, 0x8a, 0x3b, 0xf6, 0x15, 0x98, 0x93, 0x0c, 0x8c, 0x88, 0xe3, 0x6a, 0xec, + 0x18, 0x5b, 0x9e, 0xef, 0xd8, 0xea, 0x90, 0x98, 0x6e, 0x26, 0x48, 0x97, 0xa0, 0x8b, 0xc0, 0x54, + 0x02, 0xc1, 0x66, 0x3a, 0x85, 0x0d, 0x33, 0xec, 0x30, 0x16, 0x4d, 0x58, 0x48, 0xb8, 0x03, 0x11, + 0x1e, 0x88, 0x9d, 0x4e, 0x4b, 0x3c, 0x24, 0x59, 0xd2, 0x12, 0x26, 0x73, 0xbe, 0xaa, 0x0c, 0x75, + 0xe0, 0x74, 0x72, 0x00, 0xbc, 0x4e, 0xa2, 0x51, 0x66, 0xc8, 0x28, 0x97, 0x07, 0x8c, 0x82, 0x57, + 0x9b, 0x34, 0xd2, 0x49, 0x3f, 0xab, 0x7c, 0x80, 0x97, 0x31, 0x9b, 0xed, 0x65, 0xa0, 0xcf, 0xc0, + 0x02, 0xbb, 0x2d, 0xd1, 0x6e, 0x26, 0x78, 0x63, 0x8e, 0xf0, 0xc6, 0x9c, 0x9f, 0x58, 0x3b, 0x94, + 0x47, 0x6e, 0x13, 0x56, 0xc2, 0x05, 0x3c, 0x04, 0x61, 0x9e, 0x45, 0x48, 0x29, 0xd6, 0x1d, 0x6f, + 0x8a, 0x97, 0x2e, 0x59, 0xed, 0x04, 0xba, 0xc1, 0x37, 0x95, 0x24, 0x87, 0x6f, 0x61, 0xe0, 0xe1, + 0xe4, 0x31, 0x38, 0x45, 0xd7, 0x61, 0x4e, 0x29, 0xc4, 0x0e, 0xd4, 0xc9, 0x2d, 0xa8, 0x67, 0xf1, + 0xe5, 0x81, 0xfa, 0xb9, 0x0d, 0x7a, 0x36, 0x5f, 0x1d, 0xa8, 0xa7, 0x3b, 0xb0, 0x34, 0x98, 0x77, + 0x0e, 0xd4, 0xdb, 0x1f, 0x6a, 0x30, 0xab, 0x9a, 0x3c, 0xf4, 0x6e, 0x6a, 0xde, 0xa9, 0x49, 0xfd, + 0xc2, 0xd0, 0x79, 0x37, 0xc5, 0xa7, 0x7e, 0x90, 0x60, 0x03, 0xe3, 0x8b, 0x30, 0x29, 0x57, 0x40, + 0x13, 0x50, 0x7e, 0xe0, 0x3b, 0x3d, 0xdb, 0xc7, 0xf6, 0xeb, 0x09, 0xc9, 0x4e, 0xd6, 0x70, 0xe1, + 0x3b, 0x8e, 0xef, 0x6e, 0xed, 0xd3, 0xcd, 0xf1, 0x2a, 0x94, 0xb0, 0x25, 0x4a, 0x9e, 0xf2, 0xfa, + 0x3f, 0xd3, 0xa0, 0x96, 0x14, 0xf9, 0x9f, 0xce, 0xf6, 0xf0, 0x81, 0x75, 0x99, 0xfe, 0x83, 0x7c, + 0xe4, 0xca, 0x32, 0xc7, 0x54, 0x8b, 0x1d, 0xd3, 0x8b, 0x50, 0x63, 0x4b, 0x34, 0x89, 0xf6, 0x14, + 0x85, 0xc7, 0x9b, 0x0e, 0x58, 0x88, 0xd3, 0xaa, 0x54, 0x73, 0xb1, 0x97, 0xa8, 0x52, 0x20, 0x1b, + 0xe1, 0x6c, 0x3c, 0x9b, 0xac, 0x16, 0x7d, 0x2b, 0x3e, 0x37, 0xac, 0xda, 0x95, 0x84, 0xcb, 0x3b, + 0x54, 0x21, 0x1f, 0xd2, 0xe7, 0xbd, 0x96, 0xf4, 0x79, 0x97, 0x15, 0xaa, 0xf8, 0x50, 0x4e, 0xef, + 0x91, 0xbc, 0xc9, 0x3f, 0x1d, 0x76, 0x93, 0x47, 0x4d, 0x8d, 0x51, 0xdd, 0xc9, 0xbf, 0xf2, 0x14, + 0xdd, 0x49, 0x6a, 0x98, 0x66, 0xb9, 0x93, 0x46, 0x80, 0x0d, 0x5c, 0xf2, 0x2e, 0x87, 0xb1, 0xa7, + 0xaf, 0x42, 0x95, 0x73, 0x93, 0x2b, 0xde, 0x69, 0x11, 0xc8, 0xc3, 0xda, 0x54, 0xfc, 0x18, 0x64, + 0xcc, 0xc1, 0xcc, 0x6d, 0xc7, 0xee, 0x84, 0x3b, 0x8c, 0x5e, 0xce, 0x37, 0xfa, 0x4e, 0x10, 0x1a, + 0xf3, 0x30, 0x2b, 0x83, 0x83, 0x9e, 0xd7, 0x0d, 0x1c, 0xe3, 0x43, 0x28, 0xbf, 0xed, 0xee, 0x3a, + 0x96, 0xdd, 0xdd, 0x76, 0xd0, 0x67, 0x01, 0x82, 0xd0, 0xf6, 0xc3, 0x66, 0x14, 0x1b, 0x3a, 0x38, + 0xa8, 0xa0, 0x4c, 0x6a, 0x93, 0x98, 0x82, 0xab, 0xe4, 0x0e, 0xc7, 0xa8, 0xa1, 0x0c, 0xe3, 0x4e, + 0xb7, 0x8d, 0x9f, 0x8c, 0x9f, 0xe4, 0xa1, 0x76, 0xb3, 0xdb, 0xdf, 0x75, 0x7c, 0x3b, 0x64, 0x16, + 0x5c, 0x80, 0xae, 0x42, 0x91, 0x18, 0xd4, 0xdc, 0xdb, 0x5c, 0x34, 0x93, 0x55, 0xa8, 0x15, 0xce, + 0x98, 0x96, 0x55, 0xc6, 0xcb, 0x64, 0xd7, 0x7e, 0xcc, 0x22, 0x7f, 0x03, 0x82, 0x45, 0xc1, 0x82, + 0x5d, 0xfb, 0x31, 0xa5, 0x7e, 0x80, 0xad, 0x19, 0x8c, 0x5f, 0xd3, 0xc7, 0x2f, 0xcb, 0x62, 0x26, + 0xc0, 0x8c, 0x5e, 0xdf, 0x2a, 0x87, 0x11, 0x25, 0x1a, 0x50, 0x21, 0xc6, 0xc5, 0x96, 0xdb, 0xc1, + 0xb6, 0x29, 0x5d, 0xc7, 0xe4, 0xd8, 0xe8, 0x16, 0x81, 0x20, 0x13, 0x66, 0xb8, 0x9e, 0x15, 0x2b, + 0x52, 0x79, 0x35, 0xcd, 0x8a, 0xee, 0xc5, 0xf5, 0xcf, 0x40, 0x95, 0x9d, 0xc8, 0xba, 0xdd, 0xb6, + 0xf3, 0x98, 0x2c, 0xe2, 0x82, 0x55, 0xa1, 0xb0, 0x75, 0x0c, 0x42, 0xaf, 0x83, 0xce, 0x6d, 0xd1, + 0x36, 0x66, 0xac, 0x8e, 0x60, 0x44, 0x04, 0xec, 0xbc, 0xb8, 0xce, 0x6a, 0xdc, 0x60, 0x15, 0x2c, + 0xe1, 0x80, 0x08, 0x71, 0x84, 0xfa, 0x6e, 0x9b, 0xe3, 0x43, 0x4f, 0x7e, 0x6a, 0xac, 0xe4, 0xa1, + 0xdb, 0x66, 0xe8, 0xcc, 0x43, 0x91, 0x5c, 0x36, 0x0c, 0xea, 0x65, 0x22, 0x32, 0xd8, 0x93, 0xfe, + 0x59, 0xa8, 0x08, 0xa4, 0x3d, 0xc8, 0xba, 0x36, 0xbe, 0xaf, 0xc1, 0x29, 0x39, 0x3c, 0xf4, 0x3a, + 0x89, 0x57, 0x61, 0x1c, 0x88, 0x5e, 0x4c, 0x31, 0xff, 0x94, 0x49, 0x6b, 0x64, 0x2e, 0x81, 0xd7, + 0xd3, 0x91, 0xa2, 0xd9, 0x81, 0xa8, 0xc9, 0xf0, 0x51, 0x63, 0x09, 0x4e, 0xab, 0xf1, 0x61, 0xac, + 0x9f, 0x46, 0xf8, 0x61, 0xaf, 0xfd, 0x0b, 0x85, 0x30, 0xc7, 0x87, 0x21, 0xfc, 0x4f, 0x34, 0x58, + 0x92, 0x2b, 0x44, 0xeb, 0x82, 0xe3, 0x3c, 0x07, 0x45, 0xcf, 0xdf, 0x8e, 0x2f, 0xad, 0x8c, 0x79, + 0xfe, 0xf6, 0x7a, 0x1b, 0x5d, 0x8f, 0x56, 0x54, 0x8e, 0x59, 0xc9, 0x83, 0xfb, 0x51, 0xad, 0xaf, + 0xa3, 0xf0, 0x86, 0x03, 0x8d, 0xcc, 0x01, 0xe9, 0xcb, 0xa1, 0x35, 0x98, 0x96, 0x49, 0xe7, 0x46, + 0xbb, 0x4d, 0x73, 0xa6, 0x2a, 0xc8, 0xd9, 0xaa, 0x49, 0xe4, 0x73, 0x9d, 0xc0, 0xf8, 0x6a, 0x92, + 0x80, 0xeb, 0xdd, 0xa0, 0x47, 0xec, 0xde, 0x81, 0xd4, 0x51, 0xec, 0x81, 0xf3, 0x9d, 0xf2, 0x7c, + 0xb4, 0x53, 0x6e, 0x34, 0x61, 0x31, 0xa3, 0x73, 0xf6, 0x06, 0x6f, 0xa8, 0xe3, 0x9a, 0x33, 0xf1, + 0x4f, 0x4e, 0xff, 0x7b, 0x49, 0x76, 0xbc, 0xc1, 0x2e, 0x5a, 0x1f, 0x03, 0xf2, 0x29, 0xd6, 0xe2, + 0x7d, 0x33, 0xd6, 0xfa, 0x75, 0x0d, 0x9e, 0x4d, 0x20, 0x49, 0x04, 0xc2, 0x8e, 0xdb, 0x93, 0x17, + 0xc5, 0x01, 0xb0, 0xb8, 0x00, 0x65, 0x8f, 0x77, 0x12, 0x49, 0xdb, 0xa8, 0x5b, 0x2b, 0x2e, 0xe4, + 0xf8, 0x16, 0x62, 0x7c, 0xcf, 0xc3, 0xd9, 0x21, 0xe8, 0x30, 0xc4, 0xff, 0xac, 0x04, 0xa7, 0xe4, + 0x43, 0x8e, 0x23, 0x4b, 0x9d, 0xf3, 0xea, 0x45, 0x9c, 0x8e, 0x4f, 0x3f, 0xde, 0x28, 0x74, 0xc5, + 0x46, 0x55, 0x61, 0x58, 0xac, 0xc3, 0xd8, 0xa0, 0x58, 0x87, 0x62, 0x2a, 0xd6, 0xe1, 0x2b, 0xe9, + 0x2d, 0x2e, 0xba, 0xbf, 0xf3, 0x82, 0x39, 0x80, 0x86, 0x87, 0x0b, 0x21, 0x2f, 0x8d, 0x12, 0x27, + 0x50, 0x56, 0xc4, 0x09, 0x28, 0xb7, 0x64, 0x60, 0xb4, 0x2d, 0x99, 0x01, 0x67, 0xe6, 0x95, 0x03, + 0x9d, 0x99, 0x57, 0x0f, 0x10, 0x7a, 0x3d, 0x71, 0x84, 0xd0, 0xeb, 0xc9, 0x43, 0x9f, 0xb7, 0x4f, + 0x1d, 0xf2, 0xbc, 0xbd, 0x36, 0xfc, 0xbc, 0xfd, 0xb6, 0x7c, 0x62, 0x4e, 0x6f, 0xe8, 0x9f, 0x1f, + 0xc8, 0x22, 0x07, 0x8a, 0xc1, 0x46, 0x19, 0x27, 0xca, 0x89, 0xbd, 0x8b, 0x99, 0x9f, 0xf3, 0xde, + 0x85, 0xb1, 0x22, 0x1d, 0xc6, 0x8e, 0x74, 0xa6, 0x8a, 0x05, 0xa9, 0x9a, 0x0e, 0x4c, 0x1e, 0xfd, + 0xda, 0x78, 0x52, 0x1e, 0x1d, 0xd9, 0xa8, 0xf8, 0xa5, 0x3c, 0x92, 0x69, 0xf8, 0x94, 0xe5, 0x91, + 0x70, 0x0b, 0x09, 0xe4, 0x5b, 0x48, 0x4a, 0x49, 0x55, 0x39, 0xb2, 0xa4, 0xaa, 0x0e, 0x90, 0x54, + 0xff, 0x9f, 0x88, 0xa0, 0xe3, 0x58, 0xdd, 0xa9, 0x95, 0x9a, 0xb0, 0x1c, 0xfe, 0x53, 0x0e, 0x96, + 0xe4, 0x0a, 0x87, 0xb7, 0xa6, 0x07, 0xf7, 0xa3, 0xf4, 0x56, 0x15, 0xcb, 0x2b, 0xaf, 0x5c, 0x5e, + 0x19, 0xd3, 0x56, 0x18, 0x65, 0xda, 0xde, 0x80, 0x69, 0x87, 0x23, 0xd3, 0xe4, 0x9b, 0x41, 0x74, + 0xd7, 0x69, 0x3a, 0xe5, 0x54, 0x5b, 0x35, 0x27, 0x01, 0x39, 0x8a, 0xc9, 0xff, 0x5d, 0x0d, 0x1a, + 0x99, 0x64, 0x61, 0x16, 0xf3, 0x17, 0xa0, 0x96, 0x08, 0x09, 0x8c, 0x4d, 0x7e, 0x55, 0xc4, 0xbd, + 0x35, 0x25, 0x87, 0x03, 0x12, 0x9f, 0x9f, 0xee, 0x53, 0xd1, 0x4d, 0x76, 0xe6, 0xf3, 0x13, 0x10, + 0xbd, 0x22, 0xf9, 0xd5, 0x24, 0x17, 0x1c, 0xb3, 0x4b, 0x90, 0xd1, 0x79, 0xec, 0x12, 0x24, 0x63, + 0x1e, 0xb9, 0x4b, 0xa0, 0x7c, 0xbf, 0x44, 0xb8, 0xa3, 0xf1, 0x2d, 0x2d, 0xa9, 0x4d, 0x0e, 0xed, + 0x13, 0xa4, 0x63, 0xd6, 0xf3, 0xaa, 0x98, 0xf5, 0xb4, 0x29, 0x9e, 0x5a, 0x47, 0x09, 0xd7, 0xe1, + 0x8f, 0x35, 0x68, 0xb0, 0x3c, 0x2b, 0x42, 0x6c, 0xda, 0xa1, 0xbd, 0x06, 0x55, 0xae, 0xa7, 0xfc, + 0x21, 0x73, 0x3d, 0x15, 0x46, 0xc8, 0xf5, 0xc4, 0x5e, 0x78, 0x2c, 0x7e, 0x61, 0x03, 0x96, 0xb3, + 0xdf, 0x87, 0xfb, 0x4b, 0x63, 0x30, 0xcb, 0x2a, 0x1d, 0xd9, 0xdf, 0x90, 0x72, 0x8c, 0xe5, 0x0e, + 0x97, 0x63, 0x2c, 0x7f, 0x3c, 0x39, 0xc6, 0x32, 0xee, 0x49, 0x64, 0x05, 0x60, 0x8e, 0x8d, 0x14, + 0x80, 0x39, 0x20, 0x8d, 0x55, 0xf1, 0x88, 0x69, 0xac, 0xc6, 0x47, 0x4a, 0x63, 0x55, 0x1a, 0x96, + 0xc6, 0xaa, 0x7c, 0xb8, 0x34, 0x56, 0xd7, 0x84, 0x34, 0x56, 0x20, 0xa7, 0xa1, 0x92, 0xad, 0xe3, + 0x74, 0x3e, 0xab, 0xe3, 0x4e, 0x9f, 0xb4, 0x00, 0x73, 0x89, 0x91, 0xb9, 0x7f, 0x9c, 0x8b, 0x18, + 0xf5, 0xc8, 0x86, 0xe8, 0x2f, 0x19, 0x75, 0x28, 0xa3, 0x0a, 0x13, 0x91, 0x90, 0x18, 0x7f, 0x9a, + 0x83, 0x05, 0x56, 0x32, 0xaa, 0x9d, 0xf1, 0x7a, 0xc2, 0xce, 0x78, 0xd6, 0xcc, 0xe8, 0x20, 0xcb, + 0xc0, 0xe0, 0xd6, 0x29, 0x4d, 0xe5, 0xc3, 0x25, 0xfe, 0x24, 0x03, 0xd3, 0x0c, 0x3e, 0xc1, 0xd3, + 0xa3, 0xef, 0x25, 0x98, 0xf6, 0xba, 0x9d, 0x7d, 0x59, 0x46, 0xd3, 0x9b, 0x53, 0x53, 0xb8, 0x40, + 0x10, 0xb7, 0x47, 0xb1, 0x3c, 0x6e, 0x41, 0x3d, 0x4d, 0x27, 0xa6, 0x90, 0x2f, 0x41, 0x89, 0x89, + 0x0f, 0x6e, 0x69, 0x4c, 0x9a, 0x52, 0xda, 0x31, 0x2b, 0x2a, 0x37, 0x3e, 0x8c, 0xa6, 0xf2, 0xf0, + 0x36, 0xc3, 0xc8, 0x93, 0x90, 0xd6, 0xbb, 0x6b, 0x30, 0x9f, 0x1c, 0x9e, 0xbd, 0xc4, 0x85, 0xd8, + 0xe1, 0xd2, 0x58, 0xd2, 0x1c, 0xf9, 0x1d, 0x78, 0xb1, 0xf1, 0xfb, 0x5a, 0xb4, 0xfa, 0x7f, 0xde, + 0x86, 0x83, 0x22, 0x5f, 0x64, 0x41, 0x99, 0x2f, 0x32, 0xad, 0x70, 0xe3, 0x35, 0x93, 0x30, 0x2d, + 0x7e, 0xa8, 0xc1, 0xe9, 0xc4, 0xc5, 0xb8, 0x23, 0x6b, 0xdb, 0xcf, 0x2b, 0xb8, 0x7d, 0x50, 0x4a, + 0x9e, 0xe4, 0x1a, 0x30, 0x36, 0x61, 0x31, 0x03, 0x27, 0x36, 0x3d, 0xab, 0x8a, 0x11, 0x34, 0x16, + 0xdc, 0xac, 0x4c, 0x32, 0x94, 0x1e, 0x43, 0xf1, 0xe2, 0x47, 0x96, 0xde, 0x47, 0x7e, 0xf1, 0x46, + 0xea, 0xc5, 0x13, 0x22, 0xce, 0xc6, 0x86, 0xa0, 0x54, 0x61, 0x54, 0x49, 0xa7, 0x58, 0x26, 0x39, + 0xd5, 0x32, 0x31, 0xb6, 0xb1, 0x6d, 0x96, 0x35, 0x04, 0xa3, 0xff, 0x75, 0x98, 0x4e, 0xbe, 0x28, + 0x5f, 0xec, 0x59, 0x13, 0x50, 0x4b, 0xbc, 0x6b, 0x60, 0xfc, 0x25, 0x2d, 0xf5, 0xb6, 0x9f, 0x8a, + 0x14, 0x68, 0xc1, 0x52, 0x16, 0x1a, 0xc7, 0xc7, 0x6e, 0x5f, 0x4d, 0x71, 0xdb, 0x31, 0x1e, 0x3d, + 0xa4, 0xd9, 0x26, 0xb1, 0xca, 0xbf, 0xaf, 0xc1, 0xd9, 0x24, 0xa2, 0x9f, 0xea, 0xe1, 0xc3, 0x05, + 0x38, 0x37, 0x0c, 0x1f, 0x86, 0xfa, 0x3f, 0xce, 0x41, 0xe5, 0xe6, 0xae, 0xed, 0x76, 0x98, 0xad, + 0x83, 0xa0, 0xb0, 0xe5, 0x7b, 0xbb, 0x3c, 0x2a, 0x06, 0xff, 0xc7, 0xb0, 0x1d, 0x2f, 0x60, 0x09, + 0xf6, 0x2c, 0xf2, 0x9f, 0x5c, 0x81, 0xf6, 0xfc, 0x90, 0x47, 0xbd, 0xe0, 0xff, 0xe8, 0x19, 0xa0, + 0x17, 0x99, 0x89, 0x87, 0x1f, 0x04, 0x1d, 0xa6, 0x19, 0xab, 0x11, 0x70, 0x23, 0xe8, 0xa0, 0x2b, + 0x30, 0x23, 0xdc, 0x93, 0x26, 0xc7, 0xef, 0x61, 0x87, 0x1f, 0x0e, 0xa3, 0xb8, 0x68, 0x83, 0x95, + 0xa0, 0x73, 0x30, 0x69, 0xf7, 0xc3, 0x1d, 0xfc, 0x1a, 0x6c, 0x97, 0xa1, 0x44, 0x39, 0x4f, 0x86, + 0xe2, 0xd1, 0x31, 0xa4, 0xd9, 0x0f, 0x1c, 0x9f, 0x10, 0x93, 0x6d, 0x85, 0x61, 0xe0, 0x43, 0x06, + 0x43, 0x6f, 0xb2, 0x4a, 0x3d, 0x3b, 0x08, 0xde, 0xf7, 0x7c, 0xba, 0x21, 0x36, 0xda, 0x25, 0x6d, + 0xd2, 0xd1, 0x03, 0xd6, 0xce, 0xf8, 0x7b, 0xe4, 0xb6, 0x69, 0xcb, 0x71, 0xf7, 0x58, 0x9e, 0xe5, + 0x73, 0xd2, 0x4d, 0x18, 0x64, 0x8a, 0x85, 0xe2, 0xdd, 0x71, 0xaa, 0xf5, 0x5d, 0x9e, 0x10, 0x88, + 0x3e, 0xa0, 0x17, 0xa1, 0xea, 0xe0, 0x59, 0x90, 0x6f, 0x30, 0x57, 0x4d, 0x61, 0x6a, 0x6e, 0x9f, + 0xb0, 0x2a, 0x4e, 0xfc, 0x68, 0x2c, 0x09, 0xb1, 0xc6, 0xf7, 0xde, 0x59, 0xbd, 0xb3, 0x7e, 0x83, + 0x5e, 0x19, 0xbe, 0x79, 0x77, 0x75, 0xfd, 0x4e, 0x4d, 0x13, 0xae, 0xec, 0x7e, 0x08, 0x93, 0x1c, + 0x9b, 0xa3, 0xde, 0xd5, 0x5d, 0x81, 0x09, 0x9f, 0x75, 0x25, 0xc6, 0x74, 0x4c, 0x48, 0xaf, 0x6b, + 0x55, 0x7d, 0xe1, 0xc9, 0xf8, 0x0b, 0x30, 0xc7, 0x4b, 0x8f, 0xac, 0xfb, 0x0e, 0x33, 0x7e, 0x1d, + 0xe6, 0x93, 0xe3, 0x33, 0xe6, 0x7f, 0x0f, 0xea, 0xbc, 0xe4, 0xd8, 0xe5, 0xfc, 0x17, 0xe1, 0xa4, + 0xa2, 0x6f, 0x26, 0xf1, 0x9e, 0x87, 0x32, 0x47, 0x91, 0x0b, 0xf6, 0x29, 0x53, 0x9e, 0x23, 0x2b, + 0xae, 0x81, 0x95, 0xe9, 0x7c, 0xfc, 0x82, 0x4f, 0x5f, 0x86, 0x93, 0x2c, 0x61, 0x98, 0xb9, 0xc7, + 0x58, 0x96, 0xb0, 0xfd, 0x9e, 0x63, 0xdc, 0x82, 0x85, 0x14, 0x4e, 0xec, 0xf5, 0x2e, 0x43, 0x89, + 0x23, 0x1f, 0x4d, 0x6c, 0xe2, 0xed, 0xa2, 0x0a, 0x22, 0x7b, 0x1c, 0xd9, 0x42, 0x38, 0x22, 0x7b, + 0x24, 0x64, 0xe3, 0xdb, 0x31, 0x66, 0xc7, 0xa8, 0x4d, 0x84, 0xf1, 0x12, 0x6a, 0xe4, 0x5b, 0x1a, + 0x4c, 0x59, 0x4e, 0xcb, 0xed, 0xb9, 0x4e, 0x37, 0x3c, 0xea, 0x4a, 0xbd, 0x4a, 0x8e, 0x52, 0x68, + 0x5f, 0x22, 0x2d, 0x26, 0xcd, 0x68, 0x08, 0x42, 0x8c, 0x09, 0x5f, 0x7c, 0x34, 0xfe, 0xaf, 0x06, + 0x13, 0x52, 0x05, 0x74, 0x5e, 0x12, 0x6c, 0x33, 0x72, 0x73, 0x51, 0xb2, 0x9d, 0x81, 0xaa, 0x30, + 0x62, 0x9b, 0xb8, 0x7c, 0x65, 0xab, 0x12, 0xf7, 0xdf, 0x46, 0xf3, 0x50, 0xb4, 0x5b, 0xa1, 0xbb, + 0xe7, 0x30, 0xce, 0x63, 0x4f, 0xe8, 0x25, 0x28, 0x05, 0xce, 0x9e, 0xe3, 0xbb, 0x21, 0xbf, 0x17, + 0xb0, 0x90, 0x18, 0x67, 0x83, 0x15, 0x5b, 0x51, 0xc5, 0x61, 0x02, 0xd0, 0x58, 0x81, 0x12, 0x6f, + 0x85, 0xeb, 0x3c, 0xbc, 0xf7, 0xd6, 0xbd, 0xfb, 0xef, 0xde, 0xa3, 0x91, 0xa3, 0xd7, 0xad, 0xf5, + 0xb7, 0xd7, 0xaf, 0xaf, 0xde, 0xa1, 0x99, 0x6c, 0xdf, 0x5d, 0xb5, 0xee, 0xad, 0xdf, 0x7b, 0xb3, + 0x96, 0x33, 0xbe, 0x4d, 0x57, 0x1a, 0x1d, 0xf8, 0xc8, 0xd2, 0xea, 0x90, 0x73, 0x70, 0x92, 0xac, + 0x2c, 0x19, 0x07, 0x7e, 0x38, 0xa7, 0x11, 0xb1, 0x42, 0xcb, 0x46, 0x95, 0x59, 0x2f, 0xb1, 0x19, + 0xcc, 0x11, 0xca, 0x36, 0xcc, 0xcc, 0x0e, 0xc4, 0x8b, 0x9a, 0xc3, 0xa8, 0xbb, 0x03, 0xba, 0xaa, + 0x1f, 0x26, 0x01, 0x5e, 0x00, 0x88, 0xde, 0x89, 0x4b, 0xb8, 0x9a, 0x99, 0x60, 0x6e, 0x4b, 0xa8, + 0x83, 0xea, 0x30, 0xce, 0xe3, 0xd3, 0x59, 0xaa, 0x3c, 0xf6, 0x68, 0xfc, 0x45, 0x81, 0x1c, 0xc7, + 0xb8, 0xf7, 0xad, 0x92, 0x87, 0x85, 0x0c, 0x51, 0x5e, 0x4f, 0x23, 0xc0, 0x5e, 0xd4, 0x24, 0x92, + 0x9c, 0x96, 0x31, 0xb6, 0x48, 0xbf, 0x67, 0x5c, 0x45, 0x66, 0xb0, 0x23, 0xcb, 0xbb, 0x63, 0x60, + 0xb0, 0x84, 0xcc, 0x7b, 0x28, 0xa0, 0x77, 0x8c, 0x42, 0x4f, 0x1c, 0x31, 0x6d, 0x3c, 0x9f, 0x92, + 0x53, 0x7c, 0x1c, 0x47, 0xd4, 0x9d, 0xea, 0xc6, 0x54, 0x46, 0x32, 0x91, 0xc4, 0x71, 0x55, 0x7c, + 0x5c, 0x90, 0xc4, 0x27, 0x13, 0xe1, 0xe3, 0x88, 0xba, 0x3b, 0x4e, 0x84, 0x13, 0x73, 0xfa, 0x9d, + 0x3c, 0x3f, 0x27, 0xe4, 0x15, 0x8e, 0x7a, 0x4e, 0x98, 0xd5, 0x8f, 0x72, 0x1b, 0xef, 0x00, 0x9f, + 0x02, 0xc9, 0xda, 0x9d, 0x2b, 0x8c, 0xb4, 0x3b, 0xa7, 0x58, 0xd0, 0x63, 0x4a, 0x03, 0xe7, 0x55, + 0xe0, 0x51, 0xa8, 0xcd, 0xbd, 0x28, 0x51, 0x0e, 0xb9, 0xbf, 0xc0, 0x77, 0xf3, 0xe6, 0x59, 0x79, + 0x9c, 0x47, 0x87, 0xdc, 0x59, 0x38, 0xca, 0xa6, 0x5e, 0x8b, 0x9f, 0x26, 0x2a, 0x88, 0x97, 0x3a, + 0x4d, 0xe4, 0x6c, 0x90, 0x3c, 0x4d, 0x94, 0x73, 0xee, 0xf0, 0xd3, 0x44, 0x0e, 0x0d, 0x8c, 0xef, + 0x6a, 0x49, 0x5e, 0xf8, 0x54, 0x24, 0x66, 0x74, 0xac, 0x98, 0xc2, 0x22, 0x75, 0xac, 0x28, 0xa5, + 0xc5, 0xc9, 0x7c, 0xd1, 0x24, 0xcb, 0x7f, 0x2b, 0xb5, 0x06, 0x3f, 0xc5, 0x63, 0xc5, 0x24, 0x0a, + 0x6c, 0xd9, 0x7d, 0x2d, 0x49, 0x04, 0xc6, 0x4c, 0xc7, 0x23, 0x51, 0x97, 0x93, 0x6b, 0x3a, 0xee, + 0x5d, 0x88, 0x88, 0x4c, 0x10, 0xf3, 0xd3, 0x8e, 0x88, 0x1c, 0x82, 0x0e, 0x43, 0xdc, 0x84, 0xb9, + 0xbb, 0x4e, 0xe8, 0xbb, 0xad, 0x60, 0x24, 0xe6, 0x35, 0x7e, 0x9c, 0x83, 0xf9, 0x64, 0x03, 0xc6, + 0x67, 0x2f, 0x91, 0x2c, 0x41, 0x61, 0x1c, 0x87, 0xaf, 0xae, 0x47, 0xae, 0x66, 0x04, 0x16, 0xad, + 0xab, 0xff, 0x91, 0x46, 0xae, 0xc6, 0x87, 0xd2, 0xe5, 0x4e, 0x4d, 0x0e, 0x0c, 0x3a, 0x0b, 0x93, + 0xdd, 0xfe, 0x6e, 0x53, 0x08, 0x0e, 0xa2, 0x27, 0xf7, 0x13, 0xdd, 0xfe, 0xee, 0xbd, 0x38, 0x3e, + 0xe8, 0x12, 0x4c, 0xd3, 0xd3, 0x7d, 0x7e, 0x62, 0xe0, 0x7e, 0x40, 0x6d, 0xdf, 0x82, 0x35, 0x45, + 0x0a, 0xd8, 0x89, 0x01, 0x4b, 0xb3, 0x80, 0xbb, 0x8c, 0x03, 0x09, 0x0a, 0xa4, 0x5e, 0xb5, 0xdb, + 0xdf, 0x8d, 0xc3, 0x05, 0x12, 0x11, 0x66, 0x63, 0x83, 0x22, 0xcc, 0x8c, 0xdf, 0x1b, 0x87, 0x19, + 0x3a, 0xc0, 0x71, 0x84, 0x94, 0x8e, 0x76, 0x09, 0x59, 0x20, 0x59, 0x7e, 0x50, 0x2c, 0x55, 0x21, + 0x15, 0x4b, 0xf5, 0xa5, 0x74, 0x2c, 0xd5, 0x18, 0x99, 0xb5, 0x0b, 0xa6, 0xe2, 0x25, 0x0e, 0x17, + 0x43, 0x55, 0x1c, 0x25, 0x86, 0x6a, 0x7c, 0xd4, 0x98, 0xce, 0xd2, 0x91, 0x23, 0xa5, 0xca, 0x07, + 0x8a, 0xe9, 0x84, 0x03, 0xe4, 0x41, 0xaa, 0x1c, 0x3a, 0x28, 0xaa, 0x7a, 0xc8, 0xa0, 0xa8, 0x89, + 0xe1, 0x71, 0x99, 0x5f, 0x90, 0xe3, 0x32, 0x27, 0x99, 0x43, 0xa2, 0x9a, 0xde, 0x8c, 0x78, 0xcc, + 0x04, 0xff, 0x4f, 0x1d, 0x22, 0x1d, 0x50, 0x4d, 0x1d, 0xbc, 0xf9, 0x69, 0xc5, 0x63, 0xce, 0xf3, + 0x7c, 0x7a, 0x09, 0x33, 0xf3, 0x1f, 0x69, 0x7c, 0xf1, 0x1e, 0xd9, 0xbc, 0xbc, 0x98, 0x71, 0x70, + 0x72, 0x00, 0x0b, 0x2c, 0x3f, 0x8a, 0x05, 0x16, 0xbf, 0x4b, 0x42, 0xa2, 0xf7, 0x61, 0x9e, 0xc2, + 0x47, 0x35, 0x3c, 0x6f, 0xa8, 0xc2, 0xbe, 0x72, 0x19, 0x61, 0x5f, 0xec, 0x7d, 0x53, 0xc1, 0x5f, + 0xd8, 0x73, 0x4c, 0x0d, 0xcb, 0x14, 0xc3, 0x79, 0x18, 0xe7, 0xea, 0x5e, 0x63, 0xab, 0x58, 0xcc, + 0x4e, 0x62, 0xf1, 0xd2, 0xa1, 0xf1, 0x59, 0x48, 0x87, 0x52, 0xcb, 0xdb, 0xed, 0x91, 0x6f, 0x30, + 0x50, 0xcb, 0x21, 0x7a, 0x36, 0x36, 0x38, 0x3d, 0x12, 0x8a, 0x4c, 0x75, 0xf7, 0x34, 0xa6, 0x44, + 0x4e, 0xa4, 0x44, 0x5a, 0x8f, 0xbe, 0xc1, 0xbf, 0xbf, 0x95, 0x54, 0x76, 0x67, 0xa5, 0x04, 0x12, + 0xa9, 0x57, 0x62, 0x85, 0xc6, 0x6f, 0x46, 0x8c, 0x25, 0xdb, 0x4c, 0x07, 0x40, 0x2a, 0x5b, 0xc8, + 0xa7, 0xf7, 0x0e, 0x0f, 0xa4, 0xb1, 0x22, 0x06, 0x4a, 0xd8, 0x52, 0xbf, 0xa6, 0x41, 0xfd, 0x38, + 0x62, 0xb3, 0x4c, 0x2e, 0x80, 0xb2, 0xc3, 0xb2, 0xc4, 0x0a, 0x0a, 0xea, 0x9f, 0x82, 0x93, 0xd9, + 0x41, 0x55, 0xff, 0xb1, 0x14, 0x5d, 0x93, 0x3e, 0xb2, 0xc6, 0x8d, 0xd3, 0x81, 0xe4, 0xa4, 0x74, + 0x20, 0xd9, 0xb4, 0xff, 0x72, 0x76, 0xd2, 0x8e, 0x28, 0xa9, 0x80, 0x2c, 0x64, 0x9f, 0x46, 0xf6, + 0x8e, 0x11, 0xd2, 0x60, 0x14, 0x47, 0x48, 0x83, 0xa1, 0x54, 0xc0, 0xe3, 0xa3, 0x29, 0xe0, 0xcd, + 0xac, 0xfc, 0x12, 0x54, 0x81, 0x9b, 0x6a, 0xe2, 0x1c, 0x25, 0xd1, 0x44, 0x79, 0x50, 0xa2, 0x89, + 0x9d, 0xec, 0x44, 0x13, 0xc0, 0x82, 0xc7, 0x95, 0x08, 0x1d, 0x3c, 0xe3, 0x44, 0x7f, 0x48, 0xc6, + 0x09, 0x1a, 0xea, 0xfd, 0xf2, 0x28, 0xc3, 0x1d, 0x24, 0xf5, 0x44, 0x62, 0xc9, 0x57, 0x07, 0x5e, + 0x83, 0xf8, 0x65, 0xfe, 0x85, 0x11, 0x0c, 0x8b, 0x05, 0x98, 0x4b, 0xcc, 0x11, 0x93, 0x38, 0xeb, + 0x91, 0xc0, 0x39, 0xaa, 0x95, 0x20, 0x8c, 0x91, 0x90, 0x6a, 0x7b, 0xb0, 0xc0, 0x0a, 0x9e, 0xae, + 0xfa, 0xfe, 0x8e, 0x06, 0xf5, 0xf4, 0xc0, 0x71, 0x1c, 0x54, 0x14, 0xa6, 0xc3, 0xe3, 0xa0, 0xa4, + 0xbb, 0xea, 0x56, 0x54, 0x7e, 0x34, 0x1d, 0xfe, 0x76, 0x44, 0x96, 0xe3, 0x0c, 0xbc, 0x5e, 0x83, + 0xf9, 0x64, 0xaf, 0x71, 0x6c, 0x14, 0x43, 0x3c, 0x8a, 0x8d, 0x92, 0xdf, 0x8b, 0x17, 0x63, 0xeb, + 0x82, 0x95, 0x1c, 0xe3, 0x4e, 0x6d, 0xcc, 0x05, 0x09, 0x15, 0x7c, 0x0f, 0x4e, 0x8a, 0xdf, 0x26, + 0x3e, 0xaa, 0x7e, 0x33, 0x4e, 0x83, 0xae, 0xea, 0x8f, 0x8d, 0xb6, 0x04, 0xa7, 0xc5, 0xd2, 0x24, + 0xe3, 0x19, 0xef, 0xc1, 0x62, 0x46, 0x39, 0x23, 0xe3, 0x67, 0x61, 0xc2, 0x13, 0x2a, 0xc4, 0x79, + 0xdf, 0xd2, 0x1f, 0x58, 0xb6, 0xe4, 0x9a, 0xc6, 0x0b, 0x32, 0x66, 0x19, 0xb6, 0x9b, 0x40, 0x46, + 0xe3, 0x1d, 0x38, 0xa5, 0x6c, 0xc1, 0x70, 0x79, 0x05, 0xaa, 0xe2, 0x08, 0x8c, 0x42, 0x4a, 0x54, + 0xa4, 0x8a, 0xc6, 0x15, 0x99, 0xe6, 0x43, 0xed, 0xb5, 0x24, 0x51, 0x13, 0x53, 0xf8, 0x0d, 0x98, + 0xb6, 0x8e, 0xe3, 0x7e, 0xe9, 0xc5, 0xc1, 0x89, 0xd2, 0xc4, 0x14, 0x69, 0xb3, 0x80, 0xac, 0xf4, + 0x1d, 0x33, 0x86, 0xc8, 0x31, 0x38, 0x36, 0x07, 0x45, 0x24, 0x21, 0xda, 0x9e, 0x87, 0x59, 0x6b, + 0xf4, 0x7b, 0x33, 0xc6, 0x35, 0x98, 0xb3, 0x94, 0xf7, 0x40, 0xce, 0xc8, 0xd9, 0x05, 0x2b, 0x66, + 0x9c, 0x83, 0x8e, 0xe5, 0x10, 0x34, 0xbe, 0x44, 0x11, 0x38, 0x4e, 0x21, 0xf2, 0x19, 0x98, 0xb1, + 0x14, 0x77, 0x36, 0x1a, 0x50, 0xf0, 0xe3, 0x8b, 0x1a, 0x12, 0x2e, 0xa4, 0xc0, 0x78, 0x40, 0xc9, + 0x7f, 0x8c, 0x52, 0x83, 0x51, 0x37, 0xc1, 0x6f, 0xdf, 0xd1, 0x40, 0x27, 0x83, 0x7f, 0xaa, 0xfb, + 0x8e, 0x8b, 0x70, 0x4a, 0x89, 0x04, 0x43, 0xf2, 0xef, 0x68, 0x50, 0x61, 0x49, 0xcc, 0xc8, 0x79, + 0xf7, 0x2c, 0x8c, 0xed, 0xda, 0x5f, 0xf7, 0xf8, 0x8e, 0x1f, 0x7d, 0x20, 0x50, 0xb7, 0xeb, 0xf1, + 0xe4, 0xec, 0xf4, 0x01, 0x43, 0x7b, 0x76, 0xd8, 0xda, 0xe1, 0x19, 0x81, 0xc8, 0x03, 0xb1, 0xd0, + 0x77, 0xec, 0xee, 0x36, 0xdb, 0xc2, 0xc3, 0x16, 0x3a, 0x7d, 0x44, 0x8b, 0x00, 0xdb, 0x6e, 0xd8, + 0x6c, 0x79, 0xbb, 0xbb, 0x6e, 0xc8, 0xa2, 0x29, 0xca, 0xdb, 0x6e, 0x78, 0x9d, 0x00, 0x70, 0xf1, + 0x66, 0xdf, 0xed, 0xb4, 0x9b, 0x6d, 0x7e, 0x12, 0x51, 0xb6, 0xca, 0x04, 0x72, 0xc3, 0x0e, 0x1d, + 0x63, 0x06, 0xa6, 0x19, 0xa2, 0x6f, 0x3a, 0x9c, 0x81, 0x8c, 0xd7, 0x01, 0x89, 0x40, 0xc6, 0x02, + 0xe7, 0xe2, 0x04, 0x44, 0x1a, 0xf3, 0x71, 0x84, 0x77, 0x8c, 0xb3, 0xd5, 0x7f, 0x2f, 0x07, 0xf3, + 0xec, 0x7b, 0x32, 0xab, 0xad, 0xd0, 0xdd, 0x3b, 0xda, 0x72, 0x3c, 0x0b, 0x13, 0x36, 0xed, 0x85, + 0x7d, 0xd0, 0x94, 0x10, 0xeb, 0xf6, 0x09, 0xab, 0x1a, 0x83, 0xd7, 0xdb, 0xe8, 0x19, 0xa8, 0x76, + 0xe8, 0x98, 0x4d, 0xd2, 0x3b, 0x26, 0x5e, 0xf5, 0xf6, 0x09, 0xab, 0xc2, 0xa0, 0x37, 0x70, 0x5f, + 0xe7, 0x60, 0xb2, 0x1f, 0x60, 0x8b, 0x7d, 0xd3, 0x0e, 0x9c, 0x76, 0x94, 0x78, 0x17, 0x77, 0x46, + 0xe0, 0x6b, 0x18, 0xbc, 0xde, 0x46, 0xaf, 0xc1, 0x49, 0xf2, 0xdc, 0x66, 0x15, 0x6d, 0xd7, 0xdf, + 0xb6, 0x7b, 0x3d, 0xda, 0x64, 0x8c, 0x35, 0x99, 0xa7, 0x55, 0x48, 0x9b, 0x55, 0x5e, 0x61, 0xbd, + 0xbd, 0x56, 0x05, 0x88, 0x31, 0x33, 0x4e, 0xc2, 0x42, 0x8a, 0x16, 0x8c, 0x49, 0x3c, 0x98, 0x65, + 0x45, 0x47, 0x96, 0x59, 0xcf, 0xa6, 0x5e, 0x8c, 0xb2, 0x94, 0xf4, 0x5a, 0x58, 0x0d, 0x27, 0x06, + 0x8c, 0x37, 0xc7, 0x59, 0xc1, 0x68, 0x9b, 0xe3, 0xef, 0x45, 0x13, 0x9c, 0x14, 0x13, 0x5f, 0x80, + 0x69, 0x3e, 0x0d, 0xbe, 0x13, 0xb0, 0xcc, 0xaa, 0x1a, 0x8b, 0xa7, 0x65, 0x6d, 0x78, 0x65, 0x1a, + 0x4f, 0xdb, 0x89, 0x81, 0x44, 0xa6, 0xfe, 0xa0, 0x00, 0x33, 0x8a, 0x8a, 0xe8, 0x3a, 0x54, 0xb7, + 0x1c, 0x3b, 0xec, 0xf3, 0xc4, 0x3f, 0x1a, 0x4b, 0xde, 0xa4, 0xa8, 0x6b, 0xde, 0xa2, 0x15, 0xc9, + 0x00, 0x95, 0xad, 0xf8, 0x01, 0xbd, 0x14, 0xa5, 0x55, 0xa2, 0x72, 0xfd, 0x94, 0xb2, 0xb9, 0x9c, + 0x53, 0x49, 0xff, 0xbe, 0x06, 0x15, 0xa1, 0x47, 0xe5, 0x9e, 0x06, 0x31, 0xf6, 0xba, 0x41, 0x7f, + 0x97, 0x85, 0x1a, 0xe4, 0xad, 0xe8, 0x19, 0xdd, 0x87, 0x9a, 0xd3, 0x0d, 0xdd, 0xb0, 0x43, 0xbe, + 0x52, 0x48, 0xb1, 0xcf, 0xb3, 0xab, 0x0b, 0xaa, 0xe1, 0x6f, 0xc6, 0x95, 0x29, 0x89, 0x1c, 0x19, + 0xa0, 0xff, 0x81, 0x06, 0x53, 0x89, 0x4a, 0x58, 0x6a, 0xc4, 0xdf, 0xe0, 0xcc, 0xb3, 0x0f, 0x6f, + 0xa2, 0x97, 0x61, 0xdc, 0x79, 0xdc, 0x73, 0x7d, 0x27, 0x18, 0xe1, 0x63, 0x48, 0xbc, 0x2a, 0x5a, + 0x21, 0x54, 0xf2, 0xd9, 0x49, 0xdc, 0xe0, 0x46, 0xac, 0x26, 0x5a, 0x16, 0xa2, 0xb9, 0x26, 0x57, + 0xaa, 0xfc, 0xc5, 0xe2, 0xe0, 0x0f, 0xfd, 0xd5, 0x28, 0x03, 0xd5, 0xbc, 0x94, 0xdc, 0xaa, 0x3c, + 0x34, 0x79, 0xd5, 0xf7, 0x34, 0x38, 0xc5, 0x19, 0x17, 0xf3, 0x73, 0xb4, 0xda, 0x0e, 0x93, 0x40, + 0x6a, 0x11, 0xa0, 0xeb, 0xb5, 0x1d, 0xc1, 0x6c, 0xcf, 0x5b, 0x65, 0x0c, 0xe1, 0xdf, 0x32, 0xad, + 0xf8, 0xf4, 0x42, 0x55, 0xf4, 0x09, 0xa9, 0xbc, 0x05, 0x14, 0x44, 0x72, 0x33, 0xed, 0xc3, 0x69, + 0x25, 0x2e, 0x43, 0x14, 0x50, 0x32, 0xd3, 0x51, 0x2e, 0x9d, 0xe9, 0x28, 0x91, 0xa9, 0x29, 0x9f, + 0xcc, 0xd4, 0x64, 0xfc, 0x43, 0x0d, 0x16, 0x33, 0xc6, 0x66, 0xcb, 0xcf, 0x82, 0xb9, 0x8e, 0xaa, + 0x02, 0x5b, 0x2d, 0xa7, 0xcd, 0x01, 0x64, 0xb4, 0xd4, 0x4d, 0x25, 0x3f, 0x26, 0x27, 0xfb, 0x31, + 0x49, 0x27, 0x28, 0x9f, 0xba, 0x68, 0xfa, 0x1b, 0x63, 0xb0, 0x74, 0xd7, 0xee, 0x62, 0x41, 0x79, + 0xc0, 0x6b, 0x3e, 0x57, 0x33, 0x03, 0xf3, 0xa5, 0xd3, 0x80, 0xe4, 0x5e, 0xf3, 0xc8, 0x01, 0x89, + 0x8c, 0xda, 0xbe, 0x13, 0xf4, 0x3b, 0x8c, 0xd3, 0xf3, 0x84, 0xda, 0x16, 0x85, 0xa0, 0x1b, 0xc2, + 0x3d, 0x36, 0xca, 0xd5, 0x17, 0xcc, 0xc1, 0xaf, 0xa2, 0xb8, 0xd1, 0x86, 0xbe, 0xa8, 0xf8, 0x28, + 0xf5, 0xc5, 0x61, 0xfd, 0x64, 0x7c, 0xb3, 0x7a, 0x23, 0xf9, 0x01, 0x6a, 0xfa, 0xa1, 0xa1, 0xe7, + 0x86, 0x75, 0x37, 0xf0, 0xfb, 0xd4, 0x0f, 0x12, 0x1f, 0xc2, 0xa6, 0x1f, 0xb5, 0xbe, 0x3c, 0x14, + 0xc5, 0xcc, 0xef, 0x64, 0xeb, 0x6b, 0xe2, 0x07, 0xff, 0xe3, 0x2f, 0xd5, 0x6b, 0xd2, 0x97, 0xea, + 0xf1, 0x32, 0x74, 0x1e, 0x87, 0x4d, 0xe1, 0x0b, 0xf9, 0x56, 0x19, 0x43, 0xc8, 0x25, 0x42, 0x7d, + 0x52, 0xfe, 0xf4, 0xb8, 0x3e, 0x21, 0x7d, 0x0c, 0xde, 0x78, 0xe5, 0x90, 0xf7, 0x04, 0xd7, 0x4a, + 0x50, 0x64, 0x5d, 0xfc, 0x61, 0x0e, 0x66, 0xe5, 0x77, 0x64, 0xd2, 0x44, 0x25, 0xde, 0x99, 0x01, + 0x98, 0x8b, 0x77, 0xa0, 0xaf, 0x66, 0x04, 0xa0, 0x0c, 0x61, 0x4f, 0xf9, 0xda, 0x5f, 0xe1, 0xe0, + 0xd7, 0xfe, 0x1a, 0x50, 0x79, 0xf4, 0x6a, 0xd0, 0x94, 0x33, 0x41, 0xc2, 0xa3, 0x57, 0x03, 0x9e, + 0x33, 0xf7, 0x65, 0x29, 0x19, 0xe4, 0xe4, 0xca, 0x69, 0x53, 0xf5, 0x96, 0x09, 0x1d, 0x67, 0x98, + 0xea, 0xf4, 0x80, 0x55, 0x28, 0xdd, 0xf3, 0xc2, 0xd5, 0x76, 0xdb, 0x69, 0x33, 0x9a, 0x92, 0xbf, + 0x39, 0xe3, 0x6f, 0x15, 0xa0, 0x91, 0xc9, 0x21, 0x4c, 0x18, 0x5d, 0x11, 0x0f, 0xba, 0x69, 0xc0, + 0x89, 0x0a, 0x15, 0x31, 0xb9, 0x71, 0xbc, 0xe2, 0x68, 0x5c, 0xe1, 0x80, 0x95, 0xc2, 0x0e, 0xd9, + 0x15, 0x4b, 0xee, 0x2d, 0xc5, 0x92, 0xbb, 0x34, 0xb4, 0xa3, 0x8c, 0x35, 0xf7, 0xb6, 0x7a, 0xcd, + 0x3d, 0x3f, 0xb4, 0xbf, 0x81, 0x8b, 0xee, 0x4b, 0xca, 0x45, 0xf7, 0xdc, 0x70, 0x24, 0xb3, 0x57, + 0xdd, 0x25, 0x71, 0xd5, 0xc9, 0xab, 0x4b, 0x7b, 0xfa, 0xab, 0xeb, 0xcf, 0x0b, 0x70, 0x5a, 0x7e, + 0x99, 0xc3, 0xfb, 0xa8, 0x87, 0x5c, 0x6a, 0xa3, 0x06, 0x16, 0xa1, 0xb5, 0x94, 0xa0, 0x3f, 0x67, + 0x0e, 0xc2, 0x5d, 0xc5, 0x73, 0x4c, 0x40, 0x14, 0x63, 0x01, 0x71, 0x5b, 0xc1, 0x85, 0xe7, 0x07, + 0xf7, 0x9b, 0xc1, 0x82, 0x5f, 0x52, 0xb3, 0xe0, 0xa5, 0xc1, 0x9d, 0x0d, 0xe4, 0xbf, 0x7b, 0x4a, + 0xfe, 0xbb, 0x38, 0x04, 0xbd, 0x6c, 0xe6, 0x7b, 0x66, 0x04, 0x91, 0xff, 0x14, 0xb8, 0xee, 0x01, + 0x2c, 0x66, 0xbc, 0x81, 0x4a, 0x24, 0x69, 0xc3, 0x45, 0x92, 0xf1, 0x6f, 0x52, 0x7c, 0xbc, 0xd6, + 0xef, 0x3c, 0x5a, 0x6d, 0xb7, 0x7f, 0x3e, 0xd6, 0xcb, 0x19, 0xa8, 0x8a, 0xf9, 0x33, 0xd9, 0x87, + 0xd9, 0x2a, 0x42, 0xe2, 0x4c, 0x89, 0x5b, 0x0b, 0x4a, 0x6e, 0x95, 0x31, 0x54, 0x71, 0xeb, 0x28, + 0xbc, 0x99, 0xe8, 0xe5, 0x68, 0xbc, 0x99, 0xe8, 0xec, 0x18, 0x78, 0x33, 0x89, 0xde, 0x2f, 0x3c, + 0x6f, 0x36, 0x92, 0xbc, 0x19, 0xbd, 0x01, 0x73, 0xc2, 0xff, 0x7e, 0x0e, 0xea, 0x64, 0x8f, 0xc0, + 0x0d, 0x47, 0xce, 0x60, 0x49, 0xbe, 0xbe, 0xbf, 0x4f, 0xbd, 0xd9, 0x31, 0x8b, 0xfc, 0x47, 0x6f, + 0x40, 0xc9, 0xed, 0x86, 0x8e, 0xbf, 0xc7, 0xc4, 0xe4, 0xe4, 0x8a, 0x61, 0x66, 0xf5, 0x6b, 0xae, + 0xb3, 0x9a, 0x56, 0xd4, 0x86, 0x24, 0x89, 0x70, 0x77, 0x9d, 0xe6, 0x07, 0x5e, 0x97, 0xa7, 0x6a, + 0x2e, 0x61, 0xc0, 0x7b, 0x5e, 0xd7, 0x19, 0x90, 0xd5, 0x8a, 0xa7, 0xac, 0x2e, 0x0a, 0x29, 0xab, + 0x13, 0x67, 0x76, 0xe3, 0x03, 0x8f, 0xe9, 0x4d, 0x28, 0x71, 0x6c, 0x52, 0xdf, 0xba, 0xb8, 0xed, + 0xf5, 0xfd, 0xce, 0x3e, 0x25, 0xf3, 0x0d, 0xdb, 0xed, 0xec, 0xd7, 0x72, 0xc6, 0xff, 0xcc, 0xc1, + 0x49, 0xc5, 0x7b, 0xb1, 0x95, 0x7e, 0x83, 0x6d, 0x1b, 0xb9, 0xe1, 0x7e, 0x93, 0x39, 0x86, 0xf4, + 0x03, 0x47, 0x99, 0x4d, 0xcc, 0x1b, 0x76, 0x68, 0xb3, 0x5d, 0x25, 0x37, 0xdc, 0xc7, 0x4f, 0xfa, + 0x0f, 0x72, 0x50, 0x20, 0x3b, 0x47, 0x4f, 0x3d, 0x07, 0x30, 0x5a, 0x02, 0x08, 0x68, 0xce, 0xe4, + 0xad, 0x7e, 0x87, 0x7b, 0x56, 0x31, 0x04, 0x73, 0xf2, 0x16, 0x49, 0x76, 0xcb, 0x42, 0xfa, 0xd8, + 0x13, 0x36, 0x10, 0xdd, 0x6e, 0xb3, 0xc7, 0xb2, 0x38, 0x93, 0x59, 0x2a, 0x58, 0xe0, 0x46, 0x79, + 0x9d, 0xb1, 0x5e, 0x64, 0xfe, 0x9b, 0xeb, 0x75, 0x29, 0x5a, 0x78, 0xce, 0x34, 0x6b, 0x32, 0x06, + 0x13, 0x0c, 0x66, 0x61, 0x8c, 0x78, 0x72, 0x64, 0xde, 0x0a, 0x16, 0x7d, 0x30, 0xfa, 0x00, 0x96, + 0x77, 0xb8, 0x6f, 0xa1, 0x44, 0x1b, 0xda, 0x39, 0xbe, 0xa1, 0xed, 0xf1, 0x05, 0xc7, 0x36, 0xb4, + 0xd1, 0x02, 0x8c, 0xfb, 0x5e, 0xc7, 0x69, 0x46, 0x3b, 0xc1, 0x45, 0xfc, 0xb8, 0xde, 0x36, 0x5e, + 0xa7, 0xc3, 0xb2, 0x65, 0xac, 0x43, 0x89, 0xe5, 0x1c, 0xa1, 0xbb, 0xe3, 0x65, 0x2b, 0x7a, 0xc6, + 0x8c, 0x68, 0xf7, 0xdc, 0x80, 0x5d, 0x15, 0x22, 0xff, 0x8d, 0x6f, 0x6b, 0x30, 0x4d, 0x9a, 0x1f, + 0xf5, 0x94, 0xe2, 0x28, 0xaf, 0x30, 0x0b, 0x48, 0xc4, 0x81, 0x2d, 0x7b, 0x8e, 0xda, 0x91, 0xf7, + 0x00, 0x8f, 0x01, 0xb5, 0xc4, 0xb6, 0x60, 0x00, 0xb3, 0x18, 0xfa, 0x74, 0x0f, 0x68, 0xaf, 0xc1, + 0x5c, 0x62, 0x50, 0xe1, 0x38, 0xc4, 0x93, 0x8e, 0x43, 0x3c, 0xe1, 0x38, 0xc4, 0xe3, 0xc7, 0x21, + 0xde, 0xf1, 0x1f, 0x87, 0x78, 0xea, 0xe3, 0x10, 0x4f, 0x3c, 0x0e, 0xf1, 0x84, 0xe3, 0x10, 0x8f, + 0x1d, 0x87, 0x78, 0xc7, 0x7e, 0x1c, 0xe2, 0xa5, 0x8e, 0x43, 0x4c, 0x4a, 0xae, 0x07, 0x8e, 0xbf, + 0xeb, 0x06, 0x01, 0x09, 0xc1, 0x1c, 0xb8, 0x75, 0xfb, 0x9b, 0x1a, 0xcc, 0x27, 0x1b, 0xb0, 0x77, + 0x7a, 0x55, 0x3e, 0x6f, 0x32, 0x4c, 0x75, 0x3d, 0x7a, 0x14, 0x46, 0xe3, 0x35, 0xd8, 0xa7, 0xac, + 0x6e, 0xd2, 0xef, 0x23, 0x65, 0x06, 0x37, 0x9e, 0x91, 0xbf, 0xe3, 0x5f, 0x31, 0x85, 0x5e, 0x85, + 0x80, 0x84, 0xe7, 0x01, 0xe2, 0x02, 0x2c, 0xc8, 0xb6, 0xfa, 0x9d, 0x0e, 0xff, 0xd2, 0x23, 0xf9, + 0x10, 0x94, 0x05, 0x18, 0x44, 0xbf, 0xe2, 0x68, 0xfc, 0x71, 0x01, 0xd0, 0xaa, 0x20, 0xad, 0x0f, + 0x23, 0x92, 0xb8, 0xd6, 0xca, 0x09, 0x5a, 0x6b, 0x25, 0xf2, 0xa0, 0xa9, 0xfa, 0xd4, 0xcd, 0xf4, + 0x28, 0xc9, 0xbc, 0xfb, 0x0a, 0xa1, 0x5a, 0x50, 0x0a, 0xd5, 0xab, 0x30, 0xee, 0xf5, 0x5a, 0xfb, + 0xad, 0x8e, 0xc3, 0x02, 0x91, 0x4f, 0xa9, 0x7a, 0xbf, 0x4f, 0xab, 0x58, 0xbc, 0xae, 0xa8, 0x77, + 0x8b, 0xb2, 0xde, 0x3d, 0x88, 0x8e, 0xd5, 0xff, 0xa5, 0x06, 0xe3, 0xac, 0xef, 0xa3, 0xa8, 0xb4, + 0x5b, 0x30, 0xdd, 0xb1, 0x83, 0xb0, 0xd9, 0x27, 0xf2, 0x62, 0x64, 0xdd, 0x36, 0x85, 0x1b, 0x51, + 0x19, 0x43, 0x75, 0xdc, 0x21, 0x28, 0x6d, 0x7c, 0x45, 0xbd, 0x53, 0x41, 0xbe, 0x5d, 0xc0, 0xb5, + 0x1e, 0xbd, 0x81, 0xc9, 0x3f, 0x39, 0x90, 0x13, 0xbe, 0x5d, 0x90, 0x97, 0xbe, 0x5d, 0x40, 0xd2, + 0x45, 0xd1, 0x05, 0xd5, 0xae, 0x8d, 0xad, 0x6c, 0x40, 0x91, 0x7e, 0x0d, 0x00, 0xad, 0x47, 0x83, + 0xcc, 0x9a, 0x8a, 0xef, 0x06, 0xe8, 0x73, 0xa6, 0xf2, 0xb3, 0x01, 0xe8, 0xdb, 0xff, 0xfe, 0xbf, + 0xff, 0xcd, 0x5c, 0x15, 0xc1, 0x95, 0xbd, 0x17, 0xaf, 0xec, 0x90, 0x1a, 0x2b, 0x7f, 0x32, 0x06, + 0x93, 0x72, 0xd2, 0x66, 0xd4, 0x86, 0x22, 0x95, 0xe5, 0xe8, 0xb4, 0x39, 0x20, 0x37, 0xbc, 0xbe, + 0x68, 0x0e, 0xcc, 0xd4, 0xbe, 0x48, 0x46, 0x5b, 0x30, 0x10, 0x1e, 0x8d, 0x47, 0xf8, 0xd3, 0x50, + 0xba, 0x6b, 0xda, 0x25, 0x3c, 0x0a, 0xa5, 0x75, 0x6a, 0x14, 0x49, 0xd5, 0xa4, 0x46, 0x49, 0x28, + 0x01, 0x36, 0x8a, 0x9e, 0x31, 0x4a, 0x00, 0xe5, 0x48, 0x54, 0xa3, 0xc6, 0x90, 0x04, 0xea, 0xfa, + 0xb2, 0x39, 0x24, 0xe1, 0xb9, 0xf1, 0x0c, 0x19, 0x6e, 0x11, 0x9d, 0x4a, 0x0f, 0x77, 0xe5, 0x9b, + 0x54, 0xa0, 0x7d, 0x88, 0x3e, 0xc0, 0x33, 0x4f, 0x04, 0x32, 0x5a, 0x34, 0x07, 0xe5, 0x36, 0xd7, + 0x97, 0xcc, 0x81, 0xd9, 0xc9, 0x8d, 0x17, 0xc8, 0x70, 0x97, 0xd0, 0x85, 0x01, 0xc3, 0x5d, 0xf9, + 0x26, 0x96, 0xc8, 0x1f, 0x5e, 0xf9, 0x66, 0x1f, 0x8f, 0xfd, 0x3e, 0xff, 0xda, 0x5a, 0x8a, 0xac, + 0x92, 0xac, 0x4f, 0x91, 0x35, 0x21, 0xb7, 0xd9, 0xc0, 0x97, 0x46, 0x1f, 0xf8, 0xaf, 0x6b, 0x30, + 0x45, 0xe7, 0x26, 0x3a, 0x75, 0x46, 0x67, 0xcd, 0x51, 0xd2, 0x93, 0xeb, 0xe7, 0xcc, 0xd1, 0xd2, + 0x86, 0x3f, 0x4f, 0x90, 0x3a, 0xaf, 0x1b, 0x0a, 0xa4, 0xe8, 0x5a, 0x8f, 0xce, 0xc4, 0xaf, 0x69, + 0x97, 0x56, 0xfe, 0x79, 0x21, 0xf5, 0x29, 0x55, 0x91, 0xb5, 0x07, 0x64, 0x46, 0xd6, 0x17, 0xcd, + 0x81, 0xf9, 0x82, 0x25, 0xd6, 0x66, 0xb1, 0xb3, 0xac, 0x66, 0x92, 0xb5, 0x07, 0xa4, 0xc4, 0x4d, + 0x8d, 0x32, 0x88, 0xb5, 0xd3, 0xa3, 0x24, 0x58, 0x7b, 0x70, 0x36, 0x53, 0x7d, 0xd9, 0x1c, 0x92, + 0xd7, 0x53, 0x66, 0x6d, 0x79, 0xb8, 0x98, 0xb5, 0x43, 0x91, 0xb5, 0x07, 0xe5, 0xe8, 0xd4, 0x97, + 0xcc, 0x81, 0x59, 0x36, 0x8d, 0x4b, 0x64, 0xb8, 0x67, 0x91, 0x31, 0x60, 0x38, 0xc6, 0x61, 0xe8, + 0x1b, 0x02, 0x53, 0x0f, 0xc8, 0xac, 0x99, 0x22, 0x68, 0x82, 0xa9, 0xd9, 0x90, 0x97, 0x46, 0x18, + 0x72, 0xe5, 0x3f, 0x14, 0x60, 0x9c, 0x79, 0xc2, 0xe8, 0x7e, 0xc4, 0x35, 0x73, 0xca, 0x54, 0x81, + 0xfa, 0xbc, 0xa9, 0xce, 0xe3, 0x37, 0x4f, 0x06, 0xac, 0x19, 0x15, 0x3c, 0x20, 0xd3, 0x73, 0x78, + 0xea, 0xee, 0x47, 0x0c, 0x12, 0x75, 0x28, 0x73, 0xc6, 0xbc, 0xa9, 0xce, 0x47, 0xc7, 0x3a, 0xd4, + 0x93, 0x1d, 0xfe, 0x8a, 0xc8, 0x0b, 0xf5, 0xac, 0x8c, 0x73, 0xfa, 0x49, 0x33, 0x6b, 0xeb, 0xd6, + 0x38, 0x4d, 0x7a, 0x9e, 0x47, 0xb3, 0x42, 0xcf, 0xf1, 0xb4, 0x3b, 0xf1, 0xb4, 0x47, 0xa8, 0x25, + 0xe6, 0x7b, 0xc1, 0x54, 0x6f, 0x6a, 0x19, 0x17, 0x49, 0xcf, 0xcf, 0xa0, 0x33, 0xaa, 0x9e, 0x65, + 0x19, 0xf2, 0xb5, 0x68, 0x9e, 0x23, 0xba, 0xc8, 0x13, 0x3c, 0x6f, 0xaa, 0x73, 0x8e, 0x31, 0xde, + 0xbd, 0x74, 0x6a, 0xc0, 0x18, 0x08, 0xbb, 0x32, 0x94, 0x9e, 0x62, 0x2a, 0xd1, 0x65, 0x73, 0x48, + 0x1e, 0x54, 0xfd, 0x8c, 0x39, 0x34, 0xb3, 0xe8, 0x05, 0x32, 0xbe, 0xa1, 0x2f, 0x8a, 0xe3, 0x53, + 0x91, 0x24, 0x84, 0xd6, 0x63, 0xa1, 0xf4, 0x3f, 0xc6, 0x60, 0x2a, 0x91, 0xa7, 0x08, 0x6d, 0x47, + 0xfc, 0xb5, 0x68, 0x0e, 0xca, 0x9c, 0xa6, 0x2f, 0x99, 0x03, 0x93, 0x98, 0x19, 0x4b, 0x04, 0x8d, + 0xba, 0x31, 0x43, 0xd1, 0xf0, 0xfa, 0xed, 0x78, 0x7f, 0x0f, 0xb3, 0xc9, 0x76, 0xc4, 0x77, 0xa9, + 0x81, 0xe4, 0x57, 0x5e, 0x32, 0x07, 0x27, 0x0d, 0x63, 0x03, 0xe9, 0x59, 0x03, 0xed, 0x89, 0xfc, + 0xb8, 0x6c, 0x0e, 0x49, 0x30, 0x46, 0x28, 0x3c, 0x38, 0x3f, 0x98, 0xf1, 0x2c, 0x19, 0x71, 0x09, + 0x9d, 0x56, 0x8c, 0x18, 0xf3, 0xe9, 0x87, 0x31, 0x9f, 0x2e, 0x99, 0x03, 0x33, 0x81, 0xe9, 0x0d, + 0x73, 0x70, 0x8a, 0x2e, 0xe3, 0x45, 0x32, 0xe2, 0x65, 0x74, 0x71, 0xd0, 0x88, 0x32, 0xff, 0x7e, + 0x10, 0xf1, 0x6f, 0x8a, 0xbe, 0x32, 0x1f, 0x2f, 0x99, 0x83, 0xb3, 0x6b, 0xb1, 0xb1, 0x2f, 0x1d, + 0x60, 0xec, 0x1f, 0x2a, 0xf4, 0xef, 0x39, 0x73, 0xa4, 0x14, 0x5d, 0xfa, 0x79, 0x73, 0xc4, 0xd4, + 0x59, 0x26, 0xc1, 0xeb, 0x82, 0xfe, 0x8c, 0x0a, 0x2f, 0x85, 0x0a, 0xfe, 0xcf, 0x79, 0x28, 0xf1, + 0xcc, 0x2f, 0xc8, 0x8a, 0xd8, 0x7c, 0xde, 0x54, 0x66, 0x47, 0xd2, 0x17, 0xcc, 0x8c, 0xac, 0x45, + 0x0b, 0x64, 0xdc, 0x69, 0xa3, 0x8a, 0xc7, 0xe5, 0xa9, 0x6c, 0x30, 0xa3, 0xd9, 0x22, 0xa3, 0x9d, + 0x34, 0xb3, 0x52, 0x1b, 0xe9, 0xba, 0x99, 0x99, 0x99, 0x88, 0xeb, 0x59, 0x34, 0x27, 0x76, 0x1e, + 0xf3, 0x54, 0x33, 0xe6, 0xa9, 0x05, 0x53, 0x9d, 0x92, 0x48, 0xaf, 0x9b, 0x19, 0x79, 0x81, 0x8c, + 0x33, 0xa4, 0xf3, 0x53, 0xe8, 0xa4, 0xdc, 0xb9, 0x38, 0x73, 0x56, 0xb4, 0x2a, 0x63, 0xba, 0xc8, + 0xf3, 0xb3, 0x60, 0x66, 0xa4, 0xeb, 0x61, 0x74, 0xd1, 0x53, 0x74, 0x71, 0x22, 0x4e, 0x8c, 0xfb, + 0x94, 0x59, 0x70, 0xc1, 0xcc, 0x48, 0xc9, 0x23, 0x69, 0xc9, 0x14, 0x39, 0x24, 0xd4, 0x57, 0xfe, + 0x2c, 0x0f, 0xe5, 0x28, 0xc9, 0x05, 0x7a, 0x18, 0x4d, 0xb0, 0x90, 0xca, 0x46, 0x9e, 0xe1, 0xba, + 0x99, 0x95, 0xe6, 0xa5, 0x4e, 0x86, 0x45, 0xc6, 0x04, 0x1b, 0x96, 0x56, 0xa2, 0xe6, 0x94, 0x30, + 0xc7, 0x7a, 0x76, 0x2a, 0x17, 0xfd, 0x94, 0x99, 0x9d, 0x9e, 0x85, 0x8b, 0x2c, 0x34, 0x2f, 0xf5, + 0x1f, 0x4f, 0xf3, 0x66, 0x3c, 0xcd, 0x75, 0x33, 0x23, 0xf9, 0x8a, 0x7e, 0xd2, 0xcc, 0xca, 0x8a, + 0x62, 0x18, 0xa4, 0xff, 0xd3, 0x48, 0x4f, 0xf4, 0x2f, 0xce, 0xf4, 0xc3, 0x68, 0xa6, 0x05, 0x02, + 0xc9, 0x53, 0x5d, 0x37, 0xb3, 0xd2, 0x94, 0x30, 0x02, 0xe9, 0x69, 0x02, 0xed, 0x44, 0x93, 0x2d, + 0x74, 0x2b, 0xcf, 0x76, 0xdd, 0xcc, 0xca, 0x45, 0x72, 0x99, 0x74, 0x7b, 0xf6, 0xd2, 0x33, 0x6a, + 0xba, 0xc8, 0xf3, 0xfd, 0xef, 0x8a, 0xdc, 0xa4, 0x8e, 0x2e, 0x3f, 0xa7, 0x4d, 0x6a, 0x65, 0x4e, + 0x93, 0xc8, 0x36, 0xcb, 0xc8, 0x30, 0xa2, 0x30, 0xa9, 0xf9, 0xdd, 0x5e, 0xb5, 0x49, 0xad, 0x4c, + 0x44, 0x92, 0x1a, 0x65, 0xb8, 0x49, 0x2d, 0x8e, 0xa2, 0x34, 0xa9, 0xb3, 0x12, 0x7f, 0x44, 0x26, + 0x75, 0x66, 0x72, 0x0b, 0x95, 0x49, 0xcd, 0x87, 0xcb, 0xf0, 0x16, 0x07, 0x25, 0xb2, 0x88, 0x4c, + 0xea, 0x8c, 0x0c, 0x13, 0xb2, 0xb7, 0x98, 0x31, 0x5c, 0xb6, 0xb7, 0x38, 0x20, 0xb7, 0x44, 0x8a, + 0xac, 0x83, 0xbc, 0xc5, 0x91, 0x06, 0x0e, 0xa0, 0xc4, 0x93, 0x37, 0xa0, 0xe4, 0x6b, 0x25, 0x72, + 0x46, 0xe8, 0x0d, 0x73, 0x48, 0xd6, 0x87, 0x73, 0x64, 0xf8, 0x65, 0x43, 0x45, 0x66, 0x96, 0xec, + 0x84, 0x78, 0x4c, 0x6a, 0x17, 0x75, 0x94, 0x7c, 0x11, 0xfa, 0x39, 0x73, 0xb4, 0x3c, 0x0e, 0x92, + 0x8b, 0x9a, 0x40, 0x45, 0xa1, 0x1f, 0x5b, 0x30, 0xce, 0xb2, 0x33, 0xa0, 0x2f, 0x8b, 0x26, 0xb6, + 0x32, 0x17, 0x84, 0xbe, 0x90, 0x91, 0xca, 0x41, 0x36, 0xde, 0x77, 0x69, 0x9d, 0x88, 0xf0, 0x2b, + 0xff, 0xa0, 0x00, 0x45, 0x8a, 0x3d, 0xba, 0x13, 0x2d, 0xd6, 0x59, 0xd5, 0x0d, 0x74, 0x7d, 0xce, + 0x54, 0xde, 0xcb, 0x9e, 0x23, 0xfd, 0x4f, 0x19, 0x10, 0xbf, 0x15, 0xa6, 0xe7, 0x9d, 0x68, 0x51, + 0xf2, 0xde, 0x64, 0xa2, 0xcd, 0x99, 0xca, 0x9b, 0xd1, 0xac, 0x37, 0x3d, 0xd1, 0xdb, 0x57, 0xc5, + 0xc5, 0xb7, 0x60, 0xaa, 0x2f, 0x4f, 0xeb, 0x75, 0x33, 0xe3, 0x7a, 0xb3, 0x71, 0x8a, 0x74, 0x3b, + 0x87, 0x66, 0xe2, 0x6e, 0xe3, 0x45, 0xf6, 0xb5, 0x98, 0xba, 0x1c, 0xab, 0x04, 0x71, 0xe7, 0x4d, + 0xe5, 0x0d, 0x63, 0x59, 0xae, 0x27, 0xba, 0xe5, 0x9e, 0xc5, 0x57, 0xa2, 0x65, 0xc4, 0x09, 0x21, + 0x2f, 0x9f, 0x39, 0x53, 0x79, 0xc3, 0x97, 0x75, 0x7d, 0x69, 0x50, 0xd7, 0x81, 0xca, 0x67, 0x39, + 0x69, 0x66, 0x3a, 0x2b, 0xba, 0x99, 0xed, 0xa5, 0x9c, 0x27, 0xe3, 0x9d, 0xd1, 0x4f, 0x0b, 0xe3, + 0x29, 0x9d, 0x94, 0x7f, 0x9b, 0x87, 0x71, 0x76, 0x23, 0x4a, 0x72, 0x7e, 0x55, 0x77, 0x26, 0xf5, + 0x79, 0x53, 0x7d, 0x4d, 0x4f, 0x72, 0x7e, 0xd9, 0xfd, 0xad, 0xa4, 0xf3, 0xab, 0xba, 0xc7, 0x17, + 0x77, 0x38, 0xc8, 0xf9, 0x15, 0x3a, 0x4c, 0x38, 0xbf, 0x19, 0xf7, 0xf6, 0x88, 0xee, 0x56, 0x5f, + 0xac, 0x93, 0xd7, 0x0f, 0xeb, 0x59, 0x69, 0x00, 0xce, 0x9b, 0xca, 0x7b, 0x71, 0xfa, 0x82, 0xa9, + 0xbe, 0xd9, 0x26, 0x6b, 0x80, 0x64, 0xcf, 0x7c, 0x8e, 0x45, 0xb7, 0x57, 0x75, 0xbb, 0x2d, 0xa6, + 0xc8, 0x20, 0xb7, 0x37, 0xa3, 0xf7, 0x95, 0xdf, 0xcd, 0x43, 0x55, 0xbc, 0x20, 0x85, 0x7e, 0x25, + 0x9a, 0x51, 0xdd, 0xcc, 0xbc, 0xde, 0xa6, 0x9f, 0x32, 0x07, 0x5c, 0x55, 0x63, 0x6b, 0xcd, 0xa8, + 0xe1, 0x81, 0xc5, 0xeb, 0x5b, 0x29, 0x7b, 0x6d, 0xd1, 0x1c, 0x74, 0xa7, 0x4d, 0x5f, 0x32, 0x07, + 0x5e, 0x69, 0xe3, 0x46, 0x0f, 0x4a, 0x0d, 0x24, 0x6e, 0x49, 0xc8, 0xa8, 0x26, 0xa6, 0xe6, 0xb4, + 0x39, 0xe0, 0x9a, 0x9a, 0xd1, 0x20, 0xfd, 0x9f, 0x44, 0x0b, 0xc9, 0xfe, 0xf9, 0xdc, 0x6c, 0x46, + 0x73, 0x23, 0x13, 0x4b, 0x9e, 0xa0, 0x53, 0xe6, 0x80, 0x2b, 0x68, 0x6c, 0x8c, 0x4b, 0x59, 0x63, + 0xac, 0xfc, 0x56, 0x01, 0xc6, 0xc8, 0x01, 0x15, 0xba, 0x15, 0x4d, 0x0d, 0x32, 0x53, 0xd7, 0xd6, + 0xf4, 0x19, 0x53, 0x71, 0xaf, 0x6c, 0x86, 0xf4, 0x3e, 0x61, 0x94, 0x08, 0x0f, 0xb0, 0xbd, 0xc1, + 0x5b, 0xd1, 0x1a, 0xa3, 0xfd, 0xc8, 0x0b, 0x6c, 0xc6, 0x54, 0x5c, 0x0b, 0x63, 0xfd, 0xe8, 0x52, + 0x3f, 0x0f, 0xc5, 0xa9, 0x9c, 0x33, 0x55, 0xf7, 0xc6, 0x30, 0x73, 0x2a, 0xf7, 0x13, 0x4f, 0x92, + 0x0e, 0x67, 0xd0, 0x34, 0xef, 0x50, 0x29, 0x8d, 0x29, 0x2e, 0x89, 0x39, 0x9b, 0x35, 0x15, 0x77, + 0xbc, 0xb8, 0x9a, 0x47, 0x4b, 0xa9, 0x0e, 0x65, 0xdb, 0x22, 0x96, 0xc6, 0xf4, 0xe5, 0xe5, 0xa9, + 0x9a, 0x31, 0x15, 0xb7, 0xb6, 0x58, 0xd7, 0x97, 0x86, 0x75, 0xfd, 0x8d, 0xb4, 0x01, 0x71, 0xca, + 0xcc, 0xbe, 0xee, 0xa5, 0x9f, 0x36, 0x07, 0x5d, 0xc3, 0x62, 0xcb, 0x57, 0xaf, 0x47, 0xa3, 0x2a, + 0x4c, 0x84, 0x7b, 0x30, 0xce, 0x63, 0x67, 0xaf, 0x43, 0xfe, 0x4d, 0x27, 0x44, 0xc8, 0x4c, 0x5d, + 0x89, 0xd2, 0x67, 0xcc, 0xf4, 0x8d, 0x28, 0x3e, 0xa5, 0x88, 0x08, 0x4c, 0x16, 0x92, 0xbb, 0xf2, + 0xfb, 0x79, 0x18, 0x67, 0x61, 0xf6, 0xe8, 0x21, 0x94, 0xf8, 0xb5, 0x1f, 0xb4, 0x60, 0xaa, 0x2f, + 0x45, 0xe9, 0x75, 0x33, 0xeb, 0x86, 0x90, 0x24, 0xe1, 0x59, 0x74, 0x3e, 0xe6, 0x1a, 0xc9, 0x94, + 0x51, 0xde, 0xdc, 0xd1, 0x17, 0x4c, 0xf5, 0x0d, 0x1d, 0x59, 0x14, 0xb3, 0x3e, 0x63, 0xc6, 0x11, + 0x75, 0x87, 0xea, 0x72, 0x92, 0x3e, 0x6f, 0xaa, 0xaf, 0x10, 0x49, 0xba, 0x43, 0x40, 0xf5, 0x47, + 0x1a, 0x2c, 0x45, 0xac, 0x9b, 0xb8, 0x7d, 0xf0, 0x26, 0xbd, 0x60, 0xb0, 0x68, 0x0e, 0xba, 0x50, + 0xa1, 0x2f, 0x99, 0x03, 0xef, 0x3c, 0x18, 0x2f, 0x93, 0x91, 0x4d, 0xf4, 0x9c, 0xea, 0x85, 0x38, + 0xa0, 0x49, 0xaf, 0x47, 0x45, 0x17, 0xb9, 0x56, 0xfe, 0x4b, 0x0e, 0xa6, 0xe4, 0x78, 0xac, 0x20, + 0xe9, 0x9d, 0x0c, 0x8e, 0x80, 0xd7, 0x97, 0x87, 0x45, 0xeb, 0xca, 0xba, 0x69, 0x97, 0x56, 0x4e, + 0xed, 0xfc, 0xee, 0x8a, 0xde, 0xc9, 0xa0, 0xf8, 0x4b, 0x7d, 0xc9, 0x1c, 0x18, 0xdc, 0x38, 0xda, + 0x70, 0x3b, 0x30, 0xce, 0x02, 0xcf, 0x52, 0xc3, 0xc9, 0x21, 0x75, 0xa9, 0xe1, 0x92, 0xf1, 0x6a, + 0xd2, 0x5e, 0xa8, 0x3c, 0x5c, 0x80, 0xd7, 0xd5, 0x5f, 0xd6, 0xa0, 0xc6, 0x8f, 0x73, 0xdf, 0x76, + 0x77, 0x9d, 0x3b, 0x6e, 0xd7, 0x41, 0xbe, 0xbc, 0x9d, 0x94, 0x15, 0x97, 0xa6, 0xeb, 0xd9, 0x71, + 0x5a, 0x7c, 0x8f, 0x0c, 0x9d, 0x53, 0x2b, 0xe5, 0xb6, 0xbd, 0x1f, 0x7c, 0x78, 0xe5, 0x9b, 0x3c, + 0x9e, 0xed, 0xc3, 0x95, 0xff, 0x9d, 0x87, 0x82, 0xe5, 0x75, 0x1c, 0x59, 0xf8, 0x7b, 0x0a, 0xe1, + 0xef, 0x0d, 0x11, 0xfe, 0x9e, 0x5a, 0x68, 0x7b, 0x6a, 0xa1, 0xed, 0x0d, 0x17, 0xda, 0x5e, 0xb6, + 0xd0, 0xf6, 0x54, 0x42, 0xdb, 0x1b, 0x26, 0xb4, 0xbd, 0x4c, 0xc9, 0x2a, 0x69, 0x2c, 0x4f, 0xa1, + 0xb1, 0xbc, 0x21, 0x1a, 0x8b, 0xbd, 0xbc, 0x24, 0xfc, 0x3d, 0x85, 0xf0, 0xf7, 0x86, 0x08, 0xff, + 0x6c, 0x14, 0xef, 0x4b, 0xf1, 0x1f, 0xf3, 0xa6, 0x32, 0xb0, 0x05, 0x9b, 0x82, 0xca, 0xb8, 0x14, + 0xa3, 0x46, 0x86, 0x01, 0x14, 0xa1, 0xbb, 0xf6, 0x23, 0xed, 0x87, 0xab, 0xee, 0x7b, 0x5f, 0x81, + 0x77, 0xa1, 0xb8, 0xe9, 0xd8, 0xbe, 0xe3, 0xa3, 0xbb, 0xa5, 0x1c, 0x7a, 0x75, 0x55, 0x4a, 0xf2, + 0xbf, 0x4c, 0x82, 0xe4, 0x9f, 0x5b, 0xee, 0xf9, 0xce, 0x96, 0xfb, 0xd8, 0x69, 0x2f, 0x6f, 0xee, + 0x2f, 0xaf, 0x91, 0xda, 0xd7, 0xd8, 0xef, 0xf2, 0xeb, 0xa4, 0xca, 0x1b, 0xfa, 0x04, 0x6e, 0xe9, + 0xf9, 0xcc, 0xba, 0x58, 0xce, 0x6d, 0x56, 0x01, 0xa2, 0xae, 0x4f, 0xfc, 0x9f, 0xff, 0xb6, 0xa4, + 0xfd, 0xdd, 0x8f, 0x96, 0xb4, 0x7f, 0xfa, 0xd1, 0x92, 0xf6, 0x93, 0x8f, 0x96, 0xb4, 0x9f, 0x7e, + 0xb4, 0xa4, 0xfd, 0xd7, 0x8f, 0x96, 0xb4, 0x1f, 0xfc, 0x6c, 0xe9, 0xc4, 0x4f, 0x7f, 0xb6, 0x74, + 0xe2, 0x4f, 0x7e, 0xb6, 0x74, 0xe2, 0xbd, 0xbc, 0xdd, 0x73, 0x37, 0x8b, 0x24, 0x38, 0xe2, 0xa5, + 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0x21, 0x23, 0x95, 0x5b, 0x6a, 0xba, 0x00, 0x00, } func (this *OrganizationObject) Equal(that interface{}) bool { @@ -19326,23 +20037,12 @@ func (this *EmailConfig) Equal(that interface{}) bool { if this.From != that1.From { return false } - if len(this.Receiver) != len(that1.Receiver) { - return false - } - for i := range this.Receiver { - if this.Receiver[i] != that1.Receiver[i] { - return false - } - } if this.Host != that1.Host { return false } if this.Port != that1.Port { return false } - if this.SendResolved != that1.SendResolved { - return false - } if this.EncrytionSsl != that1.EncrytionSsl { return false } @@ -19382,6 +20082,9 @@ func (this *ReceiverInfo) Equal(that interface{}) bool { if this.Type != that1.Type { return false } + if this.Valid != that1.Valid { + return false + } if that1.Config == nil { if this.Config != nil { return false @@ -19579,6 +20282,9 @@ func (this *ReceiverInspectRequest) Equal(that interface{}) bool { if this.Uid != that1.Uid { return false } + if this.Type != that1.Type { + return false + } return true } func (this *ReceiverInspectResponse) Equal(that interface{}) bool { @@ -19704,14 +20410,14 @@ func (this *ReceiverDeleteResponse) Equal(that interface{}) bool { } return true } -func (this *BackupLocationCreateRequest) Equal(that interface{}) bool { +func (this *RecipientObject) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationCreateRequest) + that1, ok := that.(*RecipientObject) if !ok { - that2, ok := that.(BackupLocationCreateRequest) + that2, ok := that.(RecipientObject) if ok { that1 = &that2 } else { @@ -19723,22 +20429,22 @@ func (this *BackupLocationCreateRequest) Equal(that interface{}) bool { } else if this == nil { return false } - if !this.CreateMetadata.Equal(that1.CreateMetadata) { + if !this.Metadata.Equal(that1.Metadata) { return false } - if !this.BackupLocation.Equal(that1.BackupLocation) { + if !this.RecipientInfo.Equal(that1.RecipientInfo) { return false } return true } -func (this *BackupLocationCreateResponse) Equal(that interface{}) bool { +func (this *RecipientInfo) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationCreateResponse) + that1, ok := that.(*RecipientInfo) if !ok { - that2, ok := that.(BackupLocationCreateResponse) + that2, ok := that.(RecipientInfo) if ok { that1 = &that2 } else { @@ -19750,16 +20456,33 @@ func (this *BackupLocationCreateResponse) Equal(that interface{}) bool { } else if this == nil { return false } + if this.Type != that1.Type { + return false + } + if len(this.RecipientId) != len(that1.RecipientId) { + return false + } + for i := range this.RecipientId { + if this.RecipientId[i] != that1.RecipientId[i] { + return false + } + } + if this.Active != that1.Active { + return false + } + if this.Severity != that1.Severity { + return false + } return true } -func (this *BackupLocationUpdateRequest) Equal(that interface{}) bool { +func (this *RecipientCreateRequest) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationUpdateRequest) + that1, ok := that.(*RecipientCreateRequest) if !ok { - that2, ok := that.(BackupLocationUpdateRequest) + that2, ok := that.(RecipientCreateRequest) if ok { that1 = &that2 } else { @@ -19774,19 +20497,19 @@ func (this *BackupLocationUpdateRequest) Equal(that interface{}) bool { if !this.CreateMetadata.Equal(that1.CreateMetadata) { return false } - if !this.BackupLocation.Equal(that1.BackupLocation) { + if !this.RecipientInfo.Equal(that1.RecipientInfo) { return false } return true } -func (this *BackupLocationUpdateResponse) Equal(that interface{}) bool { +func (this *RecipientCreateResponse) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationUpdateResponse) + that1, ok := that.(*RecipientCreateResponse) if !ok { - that2, ok := that.(BackupLocationUpdateResponse) + that2, ok := that.(RecipientCreateResponse) if ok { that1 = &that2 } else { @@ -19800,14 +20523,14 @@ func (this *BackupLocationUpdateResponse) Equal(that interface{}) bool { } return true } -func (this *BackupLocationEnumerateRequest) Equal(that interface{}) bool { +func (this *RecipientEnumerateRequest) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationEnumerateRequest) + that1, ok := that.(*RecipientEnumerateRequest) if !ok { - that2, ok := that.(BackupLocationEnumerateRequest) + that2, ok := that.(RecipientEnumerateRequest) if ok { that1 = &that2 } else { @@ -19822,36 +20545,19 @@ func (this *BackupLocationEnumerateRequest) Equal(that interface{}) bool { if this.OrgId != that1.OrgId { return false } - if len(this.Labels) != len(that1.Labels) { - return false - } - for i := range this.Labels { - if this.Labels[i] != that1.Labels[i] { - return false - } - } - if this.CloudCredential != that1.CloudCredential { - return false - } - if !this.CloudCredentialRef.Equal(that1.CloudCredentialRef) { - return false - } - if this.IncludeSecrets != that1.IncludeSecrets { - return false - } - if this.IncludeValidationState != that1.IncludeValidationState { + if this.Type != that1.Type { return false } return true } -func (this *BackupLocationEnumerateResponse) Equal(that interface{}) bool { +func (this *RecipientEnumerateResponse) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationEnumerateResponse) + that1, ok := that.(*RecipientEnumerateResponse) if !ok { - that2, ok := that.(BackupLocationEnumerateResponse) + that2, ok := that.(RecipientEnumerateResponse) if ok { that1 = &that2 } else { @@ -19863,24 +20569,27 @@ func (this *BackupLocationEnumerateResponse) Equal(that interface{}) bool { } else if this == nil { return false } - if len(this.BackupLocations) != len(that1.BackupLocations) { + if len(this.Recipients) != len(that1.Recipients) { return false } - for i := range this.BackupLocations { - if !this.BackupLocations[i].Equal(that1.BackupLocations[i]) { + for i := range this.Recipients { + if !this.Recipients[i].Equal(that1.Recipients[i]) { return false } } + if this.Enabled != that1.Enabled { + return false + } return true } -func (this *BackupLocationInspectRequest) Equal(that interface{}) bool { +func (this *RecipientInspectRequest) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationInspectRequest) + that1, ok := that.(*RecipientInspectRequest) if !ok { - that2, ok := that.(BackupLocationInspectRequest) + that2, ok := that.(RecipientInspectRequest) if ok { that1 = &that2 } else { @@ -19906,14 +20615,14 @@ func (this *BackupLocationInspectRequest) Equal(that interface{}) bool { } return true } -func (this *BackupLocationInspectResponse) Equal(that interface{}) bool { +func (this *RecipientInspectResponse) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationInspectResponse) + that1, ok := that.(*RecipientInspectResponse) if !ok { - that2, ok := that.(BackupLocationInspectResponse) + that2, ok := that.(RecipientInspectResponse) if ok { that1 = &that2 } else { @@ -19925,19 +20634,19 @@ func (this *BackupLocationInspectResponse) Equal(that interface{}) bool { } else if this == nil { return false } - if !this.BackupLocation.Equal(that1.BackupLocation) { + if !this.Recipient.Equal(that1.Recipient) { return false } return true } -func (this *BackupLocationDeleteRequest) Equal(that interface{}) bool { +func (this *RecipientUpdateRequest) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationDeleteRequest) + that1, ok := that.(*RecipientUpdateRequest) if !ok { - that2, ok := that.(BackupLocationDeleteRequest) + that2, ok := that.(RecipientUpdateRequest) if ok { that1 = &that2 } else { @@ -19949,28 +20658,22 @@ func (this *BackupLocationDeleteRequest) Equal(that interface{}) bool { } else if this == nil { return false } - if this.OrgId != that1.OrgId { - return false - } - if this.Name != that1.Name { - return false - } - if this.DeleteBackups != that1.DeleteBackups { + if !this.CreateMetadata.Equal(that1.CreateMetadata) { return false } - if this.Uid != that1.Uid { + if !this.RecipientInfo.Equal(that1.RecipientInfo) { return false } return true } -func (this *BackupLocationDeleteResponse) Equal(that interface{}) bool { +func (this *RecipientUpdateResponse) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationDeleteResponse) + that1, ok := that.(*RecipientUpdateResponse) if !ok { - that2, ok := that.(BackupLocationDeleteResponse) + that2, ok := that.(RecipientUpdateResponse) if ok { that1 = &that2 } else { @@ -19984,14 +20687,345 @@ func (this *BackupLocationDeleteResponse) Equal(that interface{}) bool { } return true } -func (this *BackupLocationValidateRequest) Equal(that interface{}) bool { +func (this *RecipientDeleteRequest) Equal(that interface{}) bool { if that == nil { return this == nil } - that1, ok := that.(*BackupLocationValidateRequest) + that1, ok := that.(*RecipientDeleteRequest) if !ok { - that2, ok := that.(BackupLocationValidateRequest) + that2, ok := that.(RecipientDeleteRequest) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.OrgId != that1.OrgId { + return false + } + if this.Name != that1.Name { + return false + } + if this.Uid != that1.Uid { + return false + } + return true +} +func (this *RecipientDeleteResponse) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*RecipientDeleteResponse) + if !ok { + that2, ok := that.(RecipientDeleteResponse) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + return true +} +func (this *BackupLocationCreateRequest) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationCreateRequest) + if !ok { + that2, ok := that.(BackupLocationCreateRequest) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !this.CreateMetadata.Equal(that1.CreateMetadata) { + return false + } + if !this.BackupLocation.Equal(that1.BackupLocation) { + return false + } + return true +} +func (this *BackupLocationCreateResponse) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationCreateResponse) + if !ok { + that2, ok := that.(BackupLocationCreateResponse) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + return true +} +func (this *BackupLocationUpdateRequest) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationUpdateRequest) + if !ok { + that2, ok := that.(BackupLocationUpdateRequest) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !this.CreateMetadata.Equal(that1.CreateMetadata) { + return false + } + if !this.BackupLocation.Equal(that1.BackupLocation) { + return false + } + return true +} +func (this *BackupLocationUpdateResponse) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationUpdateResponse) + if !ok { + that2, ok := that.(BackupLocationUpdateResponse) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + return true +} +func (this *BackupLocationEnumerateRequest) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationEnumerateRequest) + if !ok { + that2, ok := that.(BackupLocationEnumerateRequest) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.OrgId != that1.OrgId { + return false + } + if len(this.Labels) != len(that1.Labels) { + return false + } + for i := range this.Labels { + if this.Labels[i] != that1.Labels[i] { + return false + } + } + if this.CloudCredential != that1.CloudCredential { + return false + } + if !this.CloudCredentialRef.Equal(that1.CloudCredentialRef) { + return false + } + if this.IncludeSecrets != that1.IncludeSecrets { + return false + } + if this.IncludeValidationState != that1.IncludeValidationState { + return false + } + return true +} +func (this *BackupLocationEnumerateResponse) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationEnumerateResponse) + if !ok { + that2, ok := that.(BackupLocationEnumerateResponse) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if len(this.BackupLocations) != len(that1.BackupLocations) { + return false + } + for i := range this.BackupLocations { + if !this.BackupLocations[i].Equal(that1.BackupLocations[i]) { + return false + } + } + return true +} +func (this *BackupLocationInspectRequest) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationInspectRequest) + if !ok { + that2, ok := that.(BackupLocationInspectRequest) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.OrgId != that1.OrgId { + return false + } + if this.Name != that1.Name { + return false + } + if this.Uid != that1.Uid { + return false + } + if this.IncludeSecrets != that1.IncludeSecrets { + return false + } + return true +} +func (this *BackupLocationInspectResponse) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationInspectResponse) + if !ok { + that2, ok := that.(BackupLocationInspectResponse) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !this.BackupLocation.Equal(that1.BackupLocation) { + return false + } + return true +} +func (this *BackupLocationDeleteRequest) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationDeleteRequest) + if !ok { + that2, ok := that.(BackupLocationDeleteRequest) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.OrgId != that1.OrgId { + return false + } + if this.Name != that1.Name { + return false + } + if this.DeleteBackups != that1.DeleteBackups { + return false + } + if this.Uid != that1.Uid { + return false + } + return true +} +func (this *BackupLocationDeleteResponse) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationDeleteResponse) + if !ok { + that2, ok := that.(BackupLocationDeleteResponse) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + return true +} +func (this *BackupLocationValidateRequest) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*BackupLocationValidateRequest) + if !ok { + that2, ok := that.(BackupLocationValidateRequest) if ok { that1 = &that2 } else { @@ -24473,10 +25507,15 @@ var _CloudCredential_serviceDesc = grpc.ServiceDesc{ // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type ReceiverClient interface { + // * Create new alert manager receiver Create(ctx context.Context, in *ReceiverCreateRequest, opts ...grpc.CallOption) (*ReceiverCreateResponse, error) + // * Returns a list of alert manager receivers Enumerate(ctx context.Context, in *ReceiverEnumerateRequest, opts ...grpc.CallOption) (*ReceiverEnumerateResponse, error) + // * Returns the details of a specific alert manager receiver Inspect(ctx context.Context, in *ReceiverInspectRequest, opts ...grpc.CallOption) (*ReceiverInspectResponse, error) + // * Update the details of a alert manager receiver Update(ctx context.Context, in *ReceiverUpdateRequest, opts ...grpc.CallOption) (*ReceiverUpdateResponse, error) + // * Delete a specific alert manager receiver Delete(ctx context.Context, in *ReceiverDeleteRequest, opts ...grpc.CallOption) (*ReceiverDeleteResponse, error) } @@ -24535,10 +25574,15 @@ func (c *receiverClient) Delete(ctx context.Context, in *ReceiverDeleteRequest, // ReceiverServer is the server API for Receiver service. type ReceiverServer interface { + // * Create new alert manager receiver Create(context.Context, *ReceiverCreateRequest) (*ReceiverCreateResponse, error) + // * Returns a list of alert manager receivers Enumerate(context.Context, *ReceiverEnumerateRequest) (*ReceiverEnumerateResponse, error) + // * Returns the details of a specific alert manager receiver Inspect(context.Context, *ReceiverInspectRequest) (*ReceiverInspectResponse, error) + // * Update the details of a alert manager receiver Update(context.Context, *ReceiverUpdateRequest) (*ReceiverUpdateResponse, error) + // * Delete a specific alert manager receiver Delete(context.Context, *ReceiverDeleteRequest) (*ReceiverDeleteResponse, error) } @@ -24685,6 +25729,230 @@ var _Receiver_serviceDesc = grpc.ServiceDesc{ Metadata: "pkg/apis/v1/api.proto", } +// RecipientClient is the client API for Recipient service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type RecipientClient interface { + Create(ctx context.Context, in *RecipientCreateRequest, opts ...grpc.CallOption) (*RecipientCreateResponse, error) + // * Returns a list of recipients for alerting + Enumerate(ctx context.Context, in *RecipientEnumerateRequest, opts ...grpc.CallOption) (*RecipientEnumerateResponse, error) + // * Returns the details of a specific recipient + Inspect(ctx context.Context, in *RecipientInspectRequest, opts ...grpc.CallOption) (*RecipientInspectResponse, error) + // * Update the details of a recipient + Update(ctx context.Context, in *RecipientUpdateRequest, opts ...grpc.CallOption) (*RecipientUpdateResponse, error) + // * Delete a specific recipient + Delete(ctx context.Context, in *RecipientDeleteRequest, opts ...grpc.CallOption) (*RecipientDeleteResponse, error) +} + +type recipientClient struct { + cc *grpc.ClientConn +} + +func NewRecipientClient(cc *grpc.ClientConn) RecipientClient { + return &recipientClient{cc} +} + +func (c *recipientClient) Create(ctx context.Context, in *RecipientCreateRequest, opts ...grpc.CallOption) (*RecipientCreateResponse, error) { + out := new(RecipientCreateResponse) + err := c.cc.Invoke(ctx, "/Recipient/Create", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *recipientClient) Enumerate(ctx context.Context, in *RecipientEnumerateRequest, opts ...grpc.CallOption) (*RecipientEnumerateResponse, error) { + out := new(RecipientEnumerateResponse) + err := c.cc.Invoke(ctx, "/Recipient/Enumerate", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *recipientClient) Inspect(ctx context.Context, in *RecipientInspectRequest, opts ...grpc.CallOption) (*RecipientInspectResponse, error) { + out := new(RecipientInspectResponse) + err := c.cc.Invoke(ctx, "/Recipient/Inspect", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *recipientClient) Update(ctx context.Context, in *RecipientUpdateRequest, opts ...grpc.CallOption) (*RecipientUpdateResponse, error) { + out := new(RecipientUpdateResponse) + err := c.cc.Invoke(ctx, "/Recipient/Update", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *recipientClient) Delete(ctx context.Context, in *RecipientDeleteRequest, opts ...grpc.CallOption) (*RecipientDeleteResponse, error) { + out := new(RecipientDeleteResponse) + err := c.cc.Invoke(ctx, "/Recipient/Delete", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// RecipientServer is the server API for Recipient service. +type RecipientServer interface { + Create(context.Context, *RecipientCreateRequest) (*RecipientCreateResponse, error) + // * Returns a list of recipients for alerting + Enumerate(context.Context, *RecipientEnumerateRequest) (*RecipientEnumerateResponse, error) + // * Returns the details of a specific recipient + Inspect(context.Context, *RecipientInspectRequest) (*RecipientInspectResponse, error) + // * Update the details of a recipient + Update(context.Context, *RecipientUpdateRequest) (*RecipientUpdateResponse, error) + // * Delete a specific recipient + Delete(context.Context, *RecipientDeleteRequest) (*RecipientDeleteResponse, error) +} + +// UnimplementedRecipientServer can be embedded to have forward compatible implementations. +type UnimplementedRecipientServer struct { +} + +func (*UnimplementedRecipientServer) Create(ctx context.Context, req *RecipientCreateRequest) (*RecipientCreateResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Create not implemented") +} +func (*UnimplementedRecipientServer) Enumerate(ctx context.Context, req *RecipientEnumerateRequest) (*RecipientEnumerateResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Enumerate not implemented") +} +func (*UnimplementedRecipientServer) Inspect(ctx context.Context, req *RecipientInspectRequest) (*RecipientInspectResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Inspect not implemented") +} +func (*UnimplementedRecipientServer) Update(ctx context.Context, req *RecipientUpdateRequest) (*RecipientUpdateResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Update not implemented") +} +func (*UnimplementedRecipientServer) Delete(ctx context.Context, req *RecipientDeleteRequest) (*RecipientDeleteResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented") +} + +func RegisterRecipientServer(s *grpc.Server, srv RecipientServer) { + s.RegisterService(&_Recipient_serviceDesc, srv) +} + +func _Recipient_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RecipientCreateRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RecipientServer).Create(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/Recipient/Create", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RecipientServer).Create(ctx, req.(*RecipientCreateRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Recipient_Enumerate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RecipientEnumerateRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RecipientServer).Enumerate(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/Recipient/Enumerate", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RecipientServer).Enumerate(ctx, req.(*RecipientEnumerateRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Recipient_Inspect_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RecipientInspectRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RecipientServer).Inspect(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/Recipient/Inspect", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RecipientServer).Inspect(ctx, req.(*RecipientInspectRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Recipient_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RecipientUpdateRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RecipientServer).Update(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/Recipient/Update", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RecipientServer).Update(ctx, req.(*RecipientUpdateRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Recipient_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RecipientDeleteRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RecipientServer).Delete(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/Recipient/Delete", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RecipientServer).Delete(ctx, req.(*RecipientDeleteRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _Recipient_serviceDesc = grpc.ServiceDesc{ + ServiceName: "Recipient", + HandlerType: (*RecipientServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Create", + Handler: _Recipient_Create_Handler, + }, + { + MethodName: "Enumerate", + Handler: _Recipient_Enumerate_Handler, + }, + { + MethodName: "Inspect", + Handler: _Recipient_Inspect_Handler, + }, + { + MethodName: "Update", + Handler: _Recipient_Update_Handler, + }, + { + MethodName: "Delete", + Handler: _Recipient_Delete_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "pkg/apis/v1/api.proto", +} + // BackupLocationClient is the client API for BackupLocation service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. @@ -32796,14 +34064,14 @@ func (m *EmailConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { copy(dAtA[i:], m.AuthPassword) i = encodeVarintApi(dAtA, i, uint64(len(m.AuthPassword))) i-- - dAtA[i] = 0x62 + dAtA[i] = 0x52 } if len(m.AuthUsername) > 0 { i -= len(m.AuthUsername) copy(dAtA[i:], m.AuthUsername) i = encodeVarintApi(dAtA, i, uint64(len(m.AuthUsername))) i-- - dAtA[i] = 0x5a + dAtA[i] = 0x4a } if m.Authentication { i-- @@ -32813,7 +34081,7 @@ func (m *EmailConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0 } i-- - dAtA[i] = 0x50 + dAtA[i] = 0x40 } if m.EncryptionStarttls { i-- @@ -32823,7 +34091,7 @@ func (m *EmailConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0 } i-- - dAtA[i] = 0x48 + dAtA[i] = 0x38 } if m.EncrytionSsl { i-- @@ -32833,47 +34101,28 @@ func (m *EmailConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0 } i-- - dAtA[i] = 0x40 - } - if m.SendResolved { - i-- - if m.SendResolved { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i-- - dAtA[i] = 0x38 + dAtA[i] = 0x30 } if len(m.Port) > 0 { i -= len(m.Port) copy(dAtA[i:], m.Port) i = encodeVarintApi(dAtA, i, uint64(len(m.Port))) i-- - dAtA[i] = 0x32 + dAtA[i] = 0x22 } if len(m.Host) > 0 { i -= len(m.Host) copy(dAtA[i:], m.Host) i = encodeVarintApi(dAtA, i, uint64(len(m.Host))) i-- - dAtA[i] = 0x2a - } - if len(m.Receiver) > 0 { - for iNdEx := len(m.Receiver) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.Receiver[iNdEx]) - copy(dAtA[i:], m.Receiver[iNdEx]) - i = encodeVarintApi(dAtA, i, uint64(len(m.Receiver[iNdEx]))) - i-- - dAtA[i] = 0x22 - } + dAtA[i] = 0x1a } if len(m.From) > 0 { i -= len(m.From) copy(dAtA[i:], m.From) i = encodeVarintApi(dAtA, i, uint64(len(m.From))) i-- - dAtA[i] = 0x12 + dAtA[i] = 0xa } return len(dAtA) - i, nil } @@ -32907,6 +34156,16 @@ func (m *ReceiverInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { } } } + if m.Valid { + i-- + if m.Valid { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x10 + } if m.Type != 0 { i = encodeVarintApi(dAtA, i, uint64(m.Type)) i-- @@ -33152,6 +34411,13 @@ func (m *ReceiverInspectRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) _ = i var l int _ = l + if len(m.Type) > 0 { + i -= len(m.Type) + copy(dAtA[i:], m.Type) + i = encodeVarintApi(dAtA, i, uint64(len(m.Type))) + i-- + dAtA[i] = 0x2a + } if len(m.Uid) > 0 { i -= len(m.Uid) copy(dAtA[i:], m.Uid) @@ -33358,7 +34624,7 @@ func (m *ReceiverDeleteResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) return len(dAtA) - i, nil } -func (m *BackupLocationCreateRequest) Marshal() (dAtA []byte, err error) { +func (m *RecipientObject) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -33368,19 +34634,19 @@ func (m *BackupLocationCreateRequest) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BackupLocationCreateRequest) MarshalTo(dAtA []byte) (int, error) { +func (m *RecipientObject) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BackupLocationCreateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *RecipientObject) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - if m.BackupLocation != nil { + if m.RecipientInfo != nil { { - size, err := m.BackupLocation.MarshalToSizedBuffer(dAtA[:i]) + size, err := m.RecipientInfo.MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } @@ -33390,9 +34656,9 @@ func (m *BackupLocationCreateRequest) MarshalToSizedBuffer(dAtA []byte) (int, er i-- dAtA[i] = 0x12 } - if m.CreateMetadata != nil { + if m.Metadata != nil { { - size, err := m.CreateMetadata.MarshalToSizedBuffer(dAtA[:i]) + size, err := m.Metadata.MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } @@ -33405,7 +34671,7 @@ func (m *BackupLocationCreateRequest) MarshalToSizedBuffer(dAtA []byte) (int, er return len(dAtA) - i, nil } -func (m *BackupLocationCreateResponse) Marshal() (dAtA []byte, err error) { +func (m *RecipientInfo) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -33415,20 +34681,49 @@ func (m *BackupLocationCreateResponse) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BackupLocationCreateResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *RecipientInfo) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BackupLocationCreateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *RecipientInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l + if m.Severity != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.Severity)) + i-- + dAtA[i] = 0x28 + } + if m.Active { + i-- + if m.Active { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } + if len(m.RecipientId) > 0 { + for iNdEx := len(m.RecipientId) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.RecipientId[iNdEx]) + copy(dAtA[i:], m.RecipientId[iNdEx]) + i = encodeVarintApi(dAtA, i, uint64(len(m.RecipientId[iNdEx]))) + i-- + dAtA[i] = 0x12 + } + } + if m.Type != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.Type)) + i-- + dAtA[i] = 0x8 + } return len(dAtA) - i, nil } -func (m *BackupLocationUpdateRequest) Marshal() (dAtA []byte, err error) { +func (m *RecipientCreateRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -33438,19 +34733,19 @@ func (m *BackupLocationUpdateRequest) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BackupLocationUpdateRequest) MarshalTo(dAtA []byte) (int, error) { +func (m *RecipientCreateRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BackupLocationUpdateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *RecipientCreateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - if m.BackupLocation != nil { + if m.RecipientInfo != nil { { - size, err := m.BackupLocation.MarshalToSizedBuffer(dAtA[:i]) + size, err := m.RecipientInfo.MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } @@ -33475,7 +34770,7 @@ func (m *BackupLocationUpdateRequest) MarshalToSizedBuffer(dAtA []byte) (int, er return len(dAtA) - i, nil } -func (m *BackupLocationUpdateResponse) Marshal() (dAtA []byte, err error) { +func (m *RecipientCreateResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -33485,12 +34780,12 @@ func (m *BackupLocationUpdateResponse) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BackupLocationUpdateResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *RecipientCreateResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BackupLocationUpdateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *RecipientCreateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -33498,7 +34793,7 @@ func (m *BackupLocationUpdateResponse) MarshalToSizedBuffer(dAtA []byte) (int, e return len(dAtA) - i, nil } -func (m *BackupLocationEnumerateRequest) Marshal() (dAtA []byte, err error) { +func (m *RecipientEnumerateRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -33508,73 +34803,20 @@ func (m *BackupLocationEnumerateRequest) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BackupLocationEnumerateRequest) MarshalTo(dAtA []byte) (int, error) { +func (m *RecipientEnumerateRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BackupLocationEnumerateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *RecipientEnumerateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - if m.IncludeValidationState { - i-- - if m.IncludeValidationState { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i-- - dAtA[i] = 0x30 - } - if m.IncludeSecrets { - i-- - if m.IncludeSecrets { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i-- - dAtA[i] = 0x28 - } - if m.CloudCredentialRef != nil { - { - size, err := m.CloudCredentialRef.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintApi(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - } - if len(m.CloudCredential) > 0 { - i -= len(m.CloudCredential) - copy(dAtA[i:], m.CloudCredential) - i = encodeVarintApi(dAtA, i, uint64(len(m.CloudCredential))) + if m.Type != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.Type)) i-- - dAtA[i] = 0x1a - } - if len(m.Labels) > 0 { - for k := range m.Labels { - v := m.Labels[k] - baseI := i - i -= len(v) - copy(dAtA[i:], v) - i = encodeVarintApi(dAtA, i, uint64(len(v))) - i-- - dAtA[i] = 0x12 - i -= len(k) - copy(dAtA[i:], k) - i = encodeVarintApi(dAtA, i, uint64(len(k))) - i-- - dAtA[i] = 0xa - i = encodeVarintApi(dAtA, i, uint64(baseI-i)) - i-- - dAtA[i] = 0x12 - } + dAtA[i] = 0x10 } if len(m.OrgId) > 0 { i -= len(m.OrgId) @@ -33586,7 +34828,7 @@ func (m *BackupLocationEnumerateRequest) MarshalToSizedBuffer(dAtA []byte) (int, return len(dAtA) - i, nil } -func (m *BackupLocationEnumerateResponse) Marshal() (dAtA []byte, err error) { +func (m *RecipientEnumerateResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -33596,20 +34838,30 @@ func (m *BackupLocationEnumerateResponse) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BackupLocationEnumerateResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *RecipientEnumerateResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BackupLocationEnumerateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *RecipientEnumerateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - if len(m.BackupLocations) > 0 { - for iNdEx := len(m.BackupLocations) - 1; iNdEx >= 0; iNdEx-- { + if m.Enabled { + i-- + if m.Enabled { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x10 + } + if len(m.Recipients) > 0 { + for iNdEx := len(m.Recipients) - 1; iNdEx >= 0; iNdEx-- { { - size, err := m.BackupLocations[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + size, err := m.Recipients[iNdEx].MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } @@ -33623,7 +34875,7 @@ func (m *BackupLocationEnumerateResponse) MarshalToSizedBuffer(dAtA []byte) (int return len(dAtA) - i, nil } -func (m *BackupLocationInspectRequest) Marshal() (dAtA []byte, err error) { +func (m *RecipientInspectRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -33633,12 +34885,503 @@ func (m *BackupLocationInspectRequest) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BackupLocationInspectRequest) MarshalTo(dAtA []byte) (int, error) { +func (m *RecipientInspectRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BackupLocationInspectRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *RecipientInspectRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.IncludeSecrets { + i-- + if m.IncludeSecrets { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x20 + } + if len(m.Uid) > 0 { + i -= len(m.Uid) + copy(dAtA[i:], m.Uid) + i = encodeVarintApi(dAtA, i, uint64(len(m.Uid))) + i-- + dAtA[i] = 0x1a + } + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintApi(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0x12 + } + if len(m.OrgId) > 0 { + i -= len(m.OrgId) + copy(dAtA[i:], m.OrgId) + i = encodeVarintApi(dAtA, i, uint64(len(m.OrgId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *RecipientInspectResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RecipientInspectResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RecipientInspectResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Recipient != nil { + { + size, err := m.Recipient.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *RecipientUpdateRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RecipientUpdateRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RecipientUpdateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.RecipientInfo != nil { + { + size, err := m.RecipientInfo.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.CreateMetadata != nil { + { + size, err := m.CreateMetadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *RecipientUpdateResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RecipientUpdateResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RecipientUpdateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *RecipientDeleteRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RecipientDeleteRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RecipientDeleteRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Uid) > 0 { + i -= len(m.Uid) + copy(dAtA[i:], m.Uid) + i = encodeVarintApi(dAtA, i, uint64(len(m.Uid))) + i-- + dAtA[i] = 0x1a + } + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintApi(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0x12 + } + if len(m.OrgId) > 0 { + i -= len(m.OrgId) + copy(dAtA[i:], m.OrgId) + i = encodeVarintApi(dAtA, i, uint64(len(m.OrgId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *RecipientDeleteResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RecipientDeleteResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RecipientDeleteResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *BackupLocationCreateRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *BackupLocationCreateRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BackupLocationCreateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.BackupLocation != nil { + { + size, err := m.BackupLocation.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.CreateMetadata != nil { + { + size, err := m.CreateMetadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *BackupLocationCreateResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *BackupLocationCreateResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BackupLocationCreateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *BackupLocationUpdateRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *BackupLocationUpdateRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BackupLocationUpdateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.BackupLocation != nil { + { + size, err := m.BackupLocation.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.CreateMetadata != nil { + { + size, err := m.CreateMetadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *BackupLocationUpdateResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *BackupLocationUpdateResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BackupLocationUpdateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *BackupLocationEnumerateRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *BackupLocationEnumerateRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BackupLocationEnumerateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.IncludeValidationState { + i-- + if m.IncludeValidationState { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x30 + } + if m.IncludeSecrets { + i-- + if m.IncludeSecrets { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x28 + } + if m.CloudCredentialRef != nil { + { + size, err := m.CloudCredentialRef.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if len(m.CloudCredential) > 0 { + i -= len(m.CloudCredential) + copy(dAtA[i:], m.CloudCredential) + i = encodeVarintApi(dAtA, i, uint64(len(m.CloudCredential))) + i-- + dAtA[i] = 0x1a + } + if len(m.Labels) > 0 { + for k := range m.Labels { + v := m.Labels[k] + baseI := i + i -= len(v) + copy(dAtA[i:], v) + i = encodeVarintApi(dAtA, i, uint64(len(v))) + i-- + dAtA[i] = 0x12 + i -= len(k) + copy(dAtA[i:], k) + i = encodeVarintApi(dAtA, i, uint64(len(k))) + i-- + dAtA[i] = 0xa + i = encodeVarintApi(dAtA, i, uint64(baseI-i)) + i-- + dAtA[i] = 0x12 + } + } + if len(m.OrgId) > 0 { + i -= len(m.OrgId) + copy(dAtA[i:], m.OrgId) + i = encodeVarintApi(dAtA, i, uint64(len(m.OrgId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *BackupLocationEnumerateResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *BackupLocationEnumerateResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BackupLocationEnumerateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.BackupLocations) > 0 { + for iNdEx := len(m.BackupLocations) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.BackupLocations[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *BackupLocationInspectRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *BackupLocationInspectRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BackupLocationInspectRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -40062,14 +41805,8 @@ func NewPopulatedCloudCredentialOwnershipUpdateResponse(r randyApi, easy bool) * func NewPopulatedEmailConfig(r randyApi, easy bool) *EmailConfig { this := &EmailConfig{} this.From = string(randStringApi(r)) - v48 := r.Intn(10) - this.Receiver = make([]string, v48) - for i := 0; i < v48; i++ { - this.Receiver[i] = string(randStringApi(r)) - } this.Host = string(randStringApi(r)) this.Port = string(randStringApi(r)) - this.SendResolved = bool(bool(r.Intn(2) == 0)) this.EncrytionSsl = bool(bool(r.Intn(2) == 0)) this.EncryptionStarttls = bool(bool(r.Intn(2) == 0)) this.Authentication = bool(bool(r.Intn(2) == 0)) @@ -40083,6 +41820,7 @@ func NewPopulatedEmailConfig(r randyApi, easy bool) *EmailConfig { func NewPopulatedReceiverInfo(r randyApi, easy bool) *ReceiverInfo { this := &ReceiverInfo{} this.Type = ReceiverInfo_Type([]int32{0, 1}[r.Intn(2)]) + this.Valid = bool(bool(r.Intn(2) == 0)) oneofNumber_Config := []int32{100}[r.Intn(1)] switch oneofNumber_Config { case 100: @@ -40143,9 +41881,9 @@ func NewPopulatedReceiverEnumerateRequest(r randyApi, easy bool) *ReceiverEnumer func NewPopulatedReceiverEnumerateResponse(r randyApi, easy bool) *ReceiverEnumerateResponse { this := &ReceiverEnumerateResponse{} if r.Intn(5) != 0 { - v49 := r.Intn(5) - this.Receivers = make([]*ReceiverObject, v49) - for i := 0; i < v49; i++ { + v48 := r.Intn(5) + this.Receivers = make([]*ReceiverObject, v48) + for i := 0; i < v48; i++ { this.Receivers[i] = NewPopulatedReceiverObject(r, easy) } } @@ -40160,6 +41898,7 @@ func NewPopulatedReceiverInspectRequest(r randyApi, easy bool) *ReceiverInspectR this.Name = string(randStringApi(r)) this.IncludeSecrets = bool(bool(r.Intn(2) == 0)) this.Uid = string(randStringApi(r)) + this.Type = string(randStringApi(r)) if !easy && r.Intn(10) != 0 { } return this @@ -40212,6 +41951,136 @@ func NewPopulatedReceiverDeleteResponse(r randyApi, easy bool) *ReceiverDeleteRe return this } +func NewPopulatedRecipientObject(r randyApi, easy bool) *RecipientObject { + this := &RecipientObject{} + if r.Intn(5) != 0 { + this.Metadata = NewPopulatedMetadata(r, easy) + } + if r.Intn(5) != 0 { + this.RecipientInfo = NewPopulatedRecipientInfo(r, easy) + } + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientInfo(r randyApi, easy bool) *RecipientInfo { + this := &RecipientInfo{} + this.Type = RecipientInfo_Type([]int32{0, 1}[r.Intn(2)]) + v49 := r.Intn(10) + this.RecipientId = make([]string, v49) + for i := 0; i < v49; i++ { + this.RecipientId[i] = string(randStringApi(r)) + } + this.Active = bool(bool(r.Intn(2) == 0)) + this.Severity = RecipientInfo_Severity([]int32{0, 1, 2}[r.Intn(3)]) + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientCreateRequest(r randyApi, easy bool) *RecipientCreateRequest { + this := &RecipientCreateRequest{} + if r.Intn(5) != 0 { + this.CreateMetadata = NewPopulatedCreateMetadata(r, easy) + } + if r.Intn(5) != 0 { + this.RecipientInfo = NewPopulatedRecipientInfo(r, easy) + } + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientCreateResponse(r randyApi, easy bool) *RecipientCreateResponse { + this := &RecipientCreateResponse{} + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientEnumerateRequest(r randyApi, easy bool) *RecipientEnumerateRequest { + this := &RecipientEnumerateRequest{} + this.OrgId = string(randStringApi(r)) + this.Type = RecipientEnumerateRequest_Type([]int32{0, 1}[r.Intn(2)]) + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientEnumerateResponse(r randyApi, easy bool) *RecipientEnumerateResponse { + this := &RecipientEnumerateResponse{} + if r.Intn(5) != 0 { + v50 := r.Intn(5) + this.Recipients = make([]*RecipientObject, v50) + for i := 0; i < v50; i++ { + this.Recipients[i] = NewPopulatedRecipientObject(r, easy) + } + } + this.Enabled = bool(bool(r.Intn(2) == 0)) + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientInspectRequest(r randyApi, easy bool) *RecipientInspectRequest { + this := &RecipientInspectRequest{} + this.OrgId = string(randStringApi(r)) + this.Name = string(randStringApi(r)) + this.Uid = string(randStringApi(r)) + this.IncludeSecrets = bool(bool(r.Intn(2) == 0)) + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientInspectResponse(r randyApi, easy bool) *RecipientInspectResponse { + this := &RecipientInspectResponse{} + if r.Intn(5) != 0 { + this.Recipient = NewPopulatedRecipientObject(r, easy) + } + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientUpdateRequest(r randyApi, easy bool) *RecipientUpdateRequest { + this := &RecipientUpdateRequest{} + if r.Intn(5) != 0 { + this.CreateMetadata = NewPopulatedCreateMetadata(r, easy) + } + if r.Intn(5) != 0 { + this.RecipientInfo = NewPopulatedRecipientInfo(r, easy) + } + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientUpdateResponse(r randyApi, easy bool) *RecipientUpdateResponse { + this := &RecipientUpdateResponse{} + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientDeleteRequest(r randyApi, easy bool) *RecipientDeleteRequest { + this := &RecipientDeleteRequest{} + this.OrgId = string(randStringApi(r)) + this.Name = string(randStringApi(r)) + this.Uid = string(randStringApi(r)) + if !easy && r.Intn(10) != 0 { + } + return this +} + +func NewPopulatedRecipientDeleteResponse(r randyApi, easy bool) *RecipientDeleteResponse { + this := &RecipientDeleteResponse{} + if !easy && r.Intn(10) != 0 { + } + return this +} + func NewPopulatedBackupLocationCreateRequest(r randyApi, easy bool) *BackupLocationCreateRequest { this := &BackupLocationCreateRequest{} if r.Intn(5) != 0 { @@ -40256,9 +42125,9 @@ func NewPopulatedBackupLocationEnumerateRequest(r randyApi, easy bool) *BackupLo this := &BackupLocationEnumerateRequest{} this.OrgId = string(randStringApi(r)) if r.Intn(5) != 0 { - v50 := r.Intn(10) + v51 := r.Intn(10) this.Labels = make(map[string]string) - for i := 0; i < v50; i++ { + for i := 0; i < v51; i++ { this.Labels[randStringApi(r)] = randStringApi(r) } } @@ -40276,9 +42145,9 @@ func NewPopulatedBackupLocationEnumerateRequest(r randyApi, easy bool) *BackupLo func NewPopulatedBackupLocationEnumerateResponse(r randyApi, easy bool) *BackupLocationEnumerateResponse { this := &BackupLocationEnumerateResponse{} if r.Intn(5) != 0 { - v51 := r.Intn(5) - this.BackupLocations = make([]*BackupLocationObject, v51) - for i := 0; i < v51; i++ { + v52 := r.Intn(5) + this.BackupLocations = make([]*BackupLocationObject, v52) + for i := 0; i < v52; i++ { this.BackupLocations[i] = NewPopulatedBackupLocationObject(r, easy) } } @@ -40374,9 +42243,9 @@ func NewPopulatedMetricsInspectRequest(r randyApi, easy bool) *MetricsInspectReq func NewPopulatedMetricsInspectResponse(r randyApi, easy bool) *MetricsInspectResponse { this := &MetricsInspectResponse{} if r.Intn(5) != 0 { - v52 := r.Intn(5) - this.Stats = make([]*MetricsInspectResponse_Stats, v52) - for i := 0; i < v52; i++ { + v53 := r.Intn(5) + this.Stats = make([]*MetricsInspectResponse_Stats, v53) + for i := 0; i < v53; i++ { this.Stats[i] = NewPopulatedMetricsInspectResponse_Stats(r, easy) } } @@ -40406,31 +42275,31 @@ func NewPopulatedBackupCreateRequest(r randyApi, easy bool) *BackupCreateRequest } this.BackupLocation = string(randStringApi(r)) this.Cluster = string(randStringApi(r)) - v53 := r.Intn(10) - this.Namespaces = make([]string, v53) - for i := 0; i < v53; i++ { + v54 := r.Intn(10) + this.Namespaces = make([]string, v54) + for i := 0; i < v54; i++ { this.Namespaces[i] = string(randStringApi(r)) } if r.Intn(5) != 0 { - v54 := r.Intn(10) + v55 := r.Intn(10) this.LabelSelectors = make(map[string]string) - for i := 0; i < v54; i++ { + for i := 0; i < v55; i++ { this.LabelSelectors[randStringApi(r)] = randStringApi(r) } } this.PreExecRule = string(randStringApi(r)) this.PostExecRule = string(randStringApi(r)) if r.Intn(5) != 0 { - v55 := r.Intn(5) - this.IncludeResources = make([]*ResourceInfo, v55) - for i := 0; i < v55; i++ { + v56 := r.Intn(5) + this.IncludeResources = make([]*ResourceInfo, v56) + for i := 0; i < v56; i++ { this.IncludeResources[i] = NewPopulatedResourceInfo(r, easy) } } this.CsiSnapshotClassName = string(randStringApi(r)) - v56 := r.Intn(10) - this.ResourceTypes = make([]string, v56) - for i := 0; i < v56; i++ { + v57 := r.Intn(10) + this.ResourceTypes = make([]string, v57) + for i := 0; i < v57; i++ { this.ResourceTypes[i] = string(randStringApi(r)) } if r.Intn(5) != 0 { @@ -40494,9 +42363,9 @@ func NewPopulatedBackupEnumerateRequest(r randyApi, easy bool) *BackupEnumerateR func NewPopulatedBackupEnumerateResponse(r randyApi, easy bool) *BackupEnumerateResponse { this := &BackupEnumerateResponse{} if r.Intn(5) != 0 { - v57 := r.Intn(5) - this.Backups = make([]*BackupObject, v57) - for i := 0; i < v57; i++ { + v58 := r.Intn(5) + this.Backups = make([]*BackupObject, v58) + for i := 0; i < v58; i++ { this.Backups[i] = NewPopulatedBackupObject(r, easy) } } @@ -40576,29 +42445,29 @@ func NewPopulatedRestoreCreateRequest(r randyApi, easy bool) *RestoreCreateReque this.Backup = string(randStringApi(r)) this.Cluster = string(randStringApi(r)) if r.Intn(5) != 0 { - v58 := r.Intn(10) + v59 := r.Intn(10) this.NamespaceMapping = make(map[string]string) - for i := 0; i < v58; i++ { + for i := 0; i < v59; i++ { this.NamespaceMapping[randStringApi(r)] = randStringApi(r) } } this.ReplacePolicy = ReplacePolicy_Type([]int32{0, 1, 2}[r.Intn(3)]) - v59 := r.Intn(10) - this.IncludeOptionalResourceTypes = make([]string, v59) - for i := 0; i < v59; i++ { + v60 := r.Intn(10) + this.IncludeOptionalResourceTypes = make([]string, v60) + for i := 0; i < v60; i++ { this.IncludeOptionalResourceTypes[i] = string(randStringApi(r)) } if r.Intn(5) != 0 { - v60 := r.Intn(5) - this.IncludeResources = make([]*ResourceInfo, v60) - for i := 0; i < v60; i++ { + v61 := r.Intn(5) + this.IncludeResources = make([]*ResourceInfo, v61) + for i := 0; i < v61; i++ { this.IncludeResources[i] = NewPopulatedResourceInfo(r, easy) } } if r.Intn(5) != 0 { - v61 := r.Intn(10) + v62 := r.Intn(10) this.StorageClassMapping = make(map[string]string) - for i := 0; i < v61; i++ { + for i := 0; i < v62; i++ { this.StorageClassMapping[randStringApi(r)] = randStringApi(r) } } @@ -40606,16 +42475,16 @@ func NewPopulatedRestoreCreateRequest(r randyApi, easy bool) *RestoreCreateReque this.BackupRef = NewPopulatedObjectRef(r, easy) } if r.Intn(5) != 0 { - v62 := r.Intn(10) + v63 := r.Intn(10) this.RancherProjectMapping = make(map[string]string) - for i := 0; i < v62; i++ { + for i := 0; i < v63; i++ { this.RancherProjectMapping[randStringApi(r)] = randStringApi(r) } } if r.Intn(5) != 0 { - v63 := r.Intn(10) + v64 := r.Intn(10) this.RancherProjectNameMapping = make(map[string]string) - for i := 0; i < v63; i++ { + for i := 0; i < v64; i++ { this.RancherProjectNameMapping[randStringApi(r)] = randStringApi(r) } } @@ -40665,9 +42534,9 @@ func NewPopulatedRestoreEnumerateRequest(r randyApi, easy bool) *RestoreEnumerat func NewPopulatedRestoreEnumerateResponse(r randyApi, easy bool) *RestoreEnumerateResponse { this := &RestoreEnumerateResponse{} if r.Intn(5) != 0 { - v64 := r.Intn(5) - this.Restores = make([]*RestoreObject, v64) - for i := 0; i < v64; i++ { + v65 := r.Intn(5) + this.Restores = make([]*RestoreObject, v65) + for i := 0; i < v65; i++ { this.Restores[i] = NewPopulatedRestoreObject(r, easy) } } @@ -40742,9 +42611,9 @@ func NewPopulatedOrganizationEnumerateRequest(r randyApi, easy bool) *Organizati func NewPopulatedOrganizationEnumerateResponse(r randyApi, easy bool) *OrganizationEnumerateResponse { this := &OrganizationEnumerateResponse{} if r.Intn(5) != 0 { - v65 := r.Intn(5) - this.Organizations = make([]*OrganizationObject, v65) - for i := 0; i < v65; i++ { + v66 := r.Intn(5) + this.Organizations = make([]*OrganizationObject, v66) + for i := 0; i < v66; i++ { this.Organizations[i] = NewPopulatedOrganizationObject(r, easy) } } @@ -40837,9 +42706,9 @@ func NewPopulatedRuleEnumerateRequest(r randyApi, easy bool) *RuleEnumerateReque func NewPopulatedRuleEnumerateResponse(r randyApi, easy bool) *RuleEnumerateResponse { this := &RuleEnumerateResponse{} if r.Intn(5) != 0 { - v66 := r.Intn(5) - this.Rules = make([]*RuleObject, v66) - for i := 0; i < v66; i++ { + v67 := r.Intn(5) + this.Rules = make([]*RuleObject, v67) + for i := 0; i < v67; i++ { this.Rules[i] = NewPopulatedRuleObject(r, easy) } } @@ -40963,9 +42832,9 @@ func NewPopulatedLicenseActivateRequest_ActivationId(r randyApi, easy bool) *Lic } func NewPopulatedLicenseActivateRequest_LicenseData(r randyApi, easy bool) *LicenseActivateRequest_LicenseData { this := &LicenseActivateRequest_LicenseData{} - v67 := r.Intn(100) - this.LicenseData = make([]byte, v67) - for i := 0; i < v67; i++ { + v68 := r.Intn(100) + this.LicenseData = make([]byte, v68) + for i := 0; i < v68; i++ { this.LicenseData[i] = byte(r.Intn(256)) } return this @@ -41026,9 +42895,9 @@ func NewPopulatedLicenseInspectResponse(r randyApi, easy bool) *LicenseInspectRe func NewPopulatedLicenseResponseInfo(r randyApi, easy bool) *LicenseResponseInfo { this := &LicenseResponseInfo{} if r.Intn(5) != 0 { - v68 := r.Intn(5) - this.FeatureInfo = make([]*LicenseResponseInfo_FeatureInfo, v68) - for i := 0; i < v68; i++ { + v69 := r.Intn(5) + this.FeatureInfo = make([]*LicenseResponseInfo_FeatureInfo, v69) + for i := 0; i < v69; i++ { this.FeatureInfo[i] = NewPopulatedLicenseResponseInfo_FeatureInfo(r, easy) } } @@ -41048,9 +42917,9 @@ func NewPopulatedLicenseResponseInfo_FeatureInfo(r randyApi, easy bool) *License this.Consumed *= -1 } if r.Intn(5) != 0 { - v69 := r.Intn(5) - this.EntitlementInfo = make([]*LicenseResponseInfo_EntitlementInfo, v69) - for i := 0; i < v69; i++ { + v70 := r.Intn(5) + this.EntitlementInfo = make([]*LicenseResponseInfo_EntitlementInfo, v70) + for i := 0; i < v70; i++ { this.EntitlementInfo[i] = NewPopulatedLicenseResponseInfo_EntitlementInfo(r, easy) } } @@ -41117,9 +42986,9 @@ func NewPopulatedLicenseUsageAirgappedRequest(r randyApi, easy bool) *LicenseUsa func NewPopulatedLicenseUsageAirgappedResponse(r randyApi, easy bool) *LicenseUsageAirgappedResponse { this := &LicenseUsageAirgappedResponse{} if r.Intn(5) != 0 { - v70 := r.Intn(5) - this.LicenseUsageAirgapped = make([]*LicenseUsageAirgappedObject, v70) - for i := 0; i < v70; i++ { + v71 := r.Intn(5) + this.LicenseUsageAirgapped = make([]*LicenseUsageAirgappedObject, v71) + for i := 0; i < v71; i++ { this.LicenseUsageAirgapped[i] = NewPopulatedLicenseUsageAirgappedObject(r, easy) } } @@ -41212,9 +43081,9 @@ func NewPopulatedManagedClusterObject(r randyApi, easy bool) *ManagedClusterObje func NewPopulatedManagedClusterEnumerateResponse(r randyApi, easy bool) *ManagedClusterEnumerateResponse { this := &ManagedClusterEnumerateResponse{} if r.Intn(5) != 0 { - v71 := r.Intn(5) - this.Cluster = make([]*ManagedClusterObject, v71) - for i := 0; i < v71; i++ { + v72 := r.Intn(5) + this.Cluster = make([]*ManagedClusterObject, v72) + for i := 0; i < v72; i++ { this.Cluster[i] = NewPopulatedManagedClusterObject(r, easy) } } @@ -41347,9 +43216,9 @@ func NewPopulatedManagedClusterBulkAddRequest(r randyApi, easy bool) *ManagedClu if r.Intn(5) != 0 { this.CloudCredential = NewPopulatedObjectRef(r, easy) } - v72 := r.Intn(10) - this.ClusterName = make([]string, v72) - for i := 0; i < v72; i++ { + v73 := r.Intn(10) + this.ClusterName = make([]string, v73) + for i := 0; i < v73; i++ { this.ClusterName[i] = string(randStringApi(r)) } this.Provider = ManagedClusterBulkAddRequest_Provider([]int32{0, 1, 2, 3}[r.Intn(4)]) @@ -41433,9 +43302,9 @@ func NewPopulatedActivityEnumerateRequest(r randyApi, easy bool) *ActivityEnumer func NewPopulatedActivityEnumerateResponse(r randyApi, easy bool) *ActivityEnumerateResponse { this := &ActivityEnumerateResponse{} if r.Intn(5) != 0 { - v73 := r.Intn(5) - this.ActivityData = make([]*ActivityEnumerateResponse_Data, v73) - for i := 0; i < v73; i++ { + v74 := r.Intn(5) + this.ActivityData = make([]*ActivityEnumerateResponse_Data, v74) + for i := 0; i < v74; i++ { this.ActivityData[i] = NewPopulatedActivityEnumerateResponse_Data(r, easy) } } @@ -41471,9 +43340,9 @@ func NewPopulatedRoleObject(r randyApi, easy bool) *RoleObject { this.Metadata = NewPopulatedMetadata(r, easy) } if r.Intn(5) != 0 { - v74 := r.Intn(5) - this.Rules = make([]*RoleConfig, v74) - for i := 0; i < v74; i++ { + v75 := r.Intn(5) + this.Rules = make([]*RoleConfig, v75) + for i := 0; i < v75; i++ { this.Rules[i] = NewPopulatedRoleConfig(r, easy) } } @@ -41485,14 +43354,14 @@ func NewPopulatedRoleObject(r randyApi, easy bool) *RoleObject { func NewPopulatedRoleConfig(r randyApi, easy bool) *RoleConfig { this := &RoleConfig{} - v75 := r.Intn(10) - this.Services = make([]string, v75) - for i := 0; i < v75; i++ { - this.Services[i] = string(randStringApi(r)) - } v76 := r.Intn(10) - this.Apis = make([]string, v76) + this.Services = make([]string, v76) for i := 0; i < v76; i++ { + this.Services[i] = string(randStringApi(r)) + } + v77 := r.Intn(10) + this.Apis = make([]string, v77) + for i := 0; i < v77; i++ { this.Apis[i] = string(randStringApi(r)) } if !easy && r.Intn(10) != 0 { @@ -41506,9 +43375,9 @@ func NewPopulatedRoleCreateRequest(r randyApi, easy bool) *RoleCreateRequest { this.CreateMetadata = NewPopulatedCreateMetadata(r, easy) } if r.Intn(5) != 0 { - v77 := r.Intn(5) - this.Rules = make([]*RoleConfig, v77) - for i := 0; i < v77; i++ { + v78 := r.Intn(5) + this.Rules = make([]*RoleConfig, v78) + for i := 0; i < v78; i++ { this.Rules[i] = NewPopulatedRoleConfig(r, easy) } } @@ -41531,9 +43400,9 @@ func NewPopulatedRoleUpdateRequest(r randyApi, easy bool) *RoleUpdateRequest { this.CreateMetadata = NewPopulatedCreateMetadata(r, easy) } if r.Intn(5) != 0 { - v78 := r.Intn(5) - this.Rules = make([]*RoleConfig, v78) - for i := 0; i < v78; i++ { + v79 := r.Intn(5) + this.Rules = make([]*RoleConfig, v79) + for i := 0; i < v79; i++ { this.Rules[i] = NewPopulatedRoleConfig(r, easy) } } @@ -41564,9 +43433,9 @@ func NewPopulatedRoleEnumerateRequest(r randyApi, easy bool) *RoleEnumerateReque func NewPopulatedRoleEnumerateResponse(r randyApi, easy bool) *RoleEnumerateResponse { this := &RoleEnumerateResponse{} if r.Intn(5) != 0 { - v79 := r.Intn(5) - this.Roles = make([]*RoleObject, v79) - for i := 0; i < v79; i++ { + v80 := r.Intn(5) + this.Roles = make([]*RoleObject, v80) + for i := 0; i < v80; i++ { this.Roles[i] = NewPopulatedRoleObject(r, easy) } } @@ -41623,9 +43492,9 @@ func NewPopulatedRolePermissionRequest(r randyApi, easy bool) *RolePermissionReq func NewPopulatedRolePermissionResponse(r randyApi, easy bool) *RolePermissionResponse { this := &RolePermissionResponse{} if r.Intn(5) != 0 { - v80 := r.Intn(10) + v81 := r.Intn(10) this.Rules = make(map[string]*Permission) - for i := 0; i < v80; i++ { + for i := 0; i < v81; i++ { this.Rules[randStringApi(r)] = NewPopulatedPermission(r, easy) } } @@ -41654,9 +43523,9 @@ func NewPopulatedActivityDataObject(r randyApi, easy bool) *ActivityDataObject { this.CompletionTime *= -1 } if r.Intn(5) != 0 { - v81 := r.Intn(5) - this.Opcycle = make([]*ActivityDataObject_Opcycle, v81) - for i := 0; i < v81; i++ { + v82 := r.Intn(5) + this.Opcycle = make([]*ActivityDataObject_Opcycle, v82) + for i := 0; i < v82; i++ { this.Opcycle[i] = NewPopulatedActivityDataObject_Opcycle(r, easy) } } @@ -41702,9 +43571,9 @@ func randUTF8RuneApi(r randyApi) rune { return rune(ru + 61) } func randStringApi(r randyApi) string { - v82 := r.Intn(100) - tmps := make([]rune, v82) - for i := 0; i < v82; i++ { + v83 := r.Intn(100) + tmps := make([]rune, v83) + for i := 0; i < v83; i++ { tmps[i] = randUTF8RuneApi(r) } return string(tmps) @@ -41726,11 +43595,11 @@ func randFieldApi(dAtA []byte, r randyApi, fieldNumber int, wire int) []byte { switch wire { case 0: dAtA = encodeVarintPopulateApi(dAtA, uint64(key)) - v83 := r.Int63() + v84 := r.Int63() if r.Intn(2) == 0 { - v83 *= -1 + v84 *= -1 } - dAtA = encodeVarintPopulateApi(dAtA, uint64(v83)) + dAtA = encodeVarintPopulateApi(dAtA, uint64(v84)) case 1: dAtA = encodeVarintPopulateApi(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) @@ -44299,12 +46168,6 @@ func (m *EmailConfig) Size() (n int) { if l > 0 { n += 1 + l + sovApi(uint64(l)) } - if len(m.Receiver) > 0 { - for _, s := range m.Receiver { - l = len(s) - n += 1 + l + sovApi(uint64(l)) - } - } l = len(m.Host) if l > 0 { n += 1 + l + sovApi(uint64(l)) @@ -44313,9 +46176,6 @@ func (m *EmailConfig) Size() (n int) { if l > 0 { n += 1 + l + sovApi(uint64(l)) } - if m.SendResolved { - n += 2 - } if m.EncrytionSsl { n += 2 } @@ -44345,6 +46205,9 @@ func (m *ReceiverInfo) Size() (n int) { if m.Type != 0 { n += 1 + sovApi(uint64(m.Type)) } + if m.Valid { + n += 2 + } if m.Config != nil { n += m.Config.Size() } @@ -44458,6 +46321,10 @@ func (m *ReceiverInspectRequest) Size() (n int) { if l > 0 { n += 1 + l + sovApi(uint64(l)) } + l = len(m.Type) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } return n } @@ -44530,6 +46397,200 @@ func (m *ReceiverDeleteResponse) Size() (n int) { return n } +func (m *RecipientObject) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Metadata != nil { + l = m.Metadata.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.RecipientInfo != nil { + l = m.RecipientInfo.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *RecipientInfo) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Type != 0 { + n += 1 + sovApi(uint64(m.Type)) + } + if len(m.RecipientId) > 0 { + for _, s := range m.RecipientId { + l = len(s) + n += 1 + l + sovApi(uint64(l)) + } + } + if m.Active { + n += 2 + } + if m.Severity != 0 { + n += 1 + sovApi(uint64(m.Severity)) + } + return n +} + +func (m *RecipientCreateRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.CreateMetadata != nil { + l = m.CreateMetadata.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.RecipientInfo != nil { + l = m.RecipientInfo.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *RecipientCreateResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *RecipientEnumerateRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.OrgId) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + if m.Type != 0 { + n += 1 + sovApi(uint64(m.Type)) + } + return n +} + +func (m *RecipientEnumerateResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Recipients) > 0 { + for _, e := range m.Recipients { + l = e.Size() + n += 1 + l + sovApi(uint64(l)) + } + } + if m.Enabled { + n += 2 + } + return n +} + +func (m *RecipientInspectRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.OrgId) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + l = len(m.Name) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + l = len(m.Uid) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + if m.IncludeSecrets { + n += 2 + } + return n +} + +func (m *RecipientInspectResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Recipient != nil { + l = m.Recipient.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *RecipientUpdateRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.CreateMetadata != nil { + l = m.CreateMetadata.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.RecipientInfo != nil { + l = m.RecipientInfo.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *RecipientUpdateResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *RecipientDeleteRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.OrgId) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + l = len(m.Name) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + l = len(m.Uid) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *RecipientDeleteResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + func (m *BackupLocationCreateRequest) Size() (n int) { if m == nil { return 0 @@ -65134,7 +67195,7 @@ func (m *EmailConfig) Unmarshal(dAtA []byte) error { return fmt.Errorf("proto: EmailConfig: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { - case 2: + case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field From", wireType) } @@ -65166,39 +67227,7 @@ func (m *EmailConfig) Unmarshal(dAtA []byte) error { } m.From = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Receiver", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthApi - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthApi - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Receiver = append(m.Receiver, string(dAtA[iNdEx:postIndex])) - iNdEx = postIndex - case 5: + case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Host", wireType) } @@ -65230,7 +67259,7 @@ func (m *EmailConfig) Unmarshal(dAtA []byte) error { } m.Host = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 6: + case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Port", wireType) } @@ -65262,27 +67291,7 @@ func (m *EmailConfig) Unmarshal(dAtA []byte) error { } m.Port = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 7: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field SendResolved", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowApi - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.SendResolved = bool(v != 0) - case 8: + case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field EncrytionSsl", wireType) } @@ -65302,7 +67311,7 @@ func (m *EmailConfig) Unmarshal(dAtA []byte) error { } } m.EncrytionSsl = bool(v != 0) - case 9: + case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field EncryptionStarttls", wireType) } @@ -65322,7 +67331,7 @@ func (m *EmailConfig) Unmarshal(dAtA []byte) error { } } m.EncryptionStarttls = bool(v != 0) - case 10: + case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Authentication", wireType) } @@ -65342,7 +67351,7 @@ func (m *EmailConfig) Unmarshal(dAtA []byte) error { } } m.Authentication = bool(v != 0) - case 11: + case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field AuthUsername", wireType) } @@ -65374,7 +67383,7 @@ func (m *EmailConfig) Unmarshal(dAtA []byte) error { } m.AuthUsername = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 12: + case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field AuthPassword", wireType) } @@ -65475,6 +67484,26 @@ func (m *ReceiverInfo) Unmarshal(dAtA []byte) error { break } } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Valid", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Valid = bool(v != 0) case 100: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field EmailConfig", wireType) @@ -66102,11 +68131,1168 @@ func (m *ReceiverInspectRequest) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Name = string(dAtA[iNdEx:postIndex]) + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IncludeSecrets", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IncludeSecrets = bool(v != 0) + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Uid", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Uid = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Type = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReceiverInspectResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReceiverInspectResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReceiverInspectResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Receiver", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Receiver == nil { + m.Receiver = &ReceiverObject{} + } + if err := m.Receiver.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReceiverUpdateRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReceiverUpdateRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReceiverUpdateRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CreateMetadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.CreateMetadata == nil { + m.CreateMetadata = &CreateMetadata{} + } + if err := m.CreateMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ReceiverInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ReceiverInfo == nil { + m.ReceiverInfo = &ReceiverInfo{} + } + if err := m.ReceiverInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReceiverUpdateResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReceiverUpdateResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReceiverUpdateResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReceiverDeleteRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReceiverDeleteRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReceiverDeleteRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OrgId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.OrgId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Uid", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Uid = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReceiverDeleteResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReceiverDeleteResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReceiverDeleteResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RecipientObject) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RecipientObject: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RecipientObject: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Metadata == nil { + m.Metadata = &Metadata{} + } + if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RecipientInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.RecipientInfo == nil { + m.RecipientInfo = &RecipientInfo{} + } + if err := m.RecipientInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RecipientInfo) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RecipientInfo: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RecipientInfo: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + m.Type = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Type |= RecipientInfo_Type(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RecipientId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.RecipientId = append(m.RecipientId, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Active", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Active = bool(v != 0) + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Severity", wireType) + } + m.Severity = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Severity |= RecipientInfo_Severity(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RecipientCreateRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RecipientCreateRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RecipientCreateRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CreateMetadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.CreateMetadata == nil { + m.CreateMetadata = &CreateMetadata{} + } + if err := m.CreateMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RecipientInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.RecipientInfo == nil { + m.RecipientInfo = &RecipientInfo{} + } + if err := m.RecipientInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RecipientCreateResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RecipientCreateResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RecipientCreateResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RecipientEnumerateRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RecipientEnumerateRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RecipientEnumerateRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OrgId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.OrgId = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 3: + case 2: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field IncludeSecrets", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + m.Type = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Type |= RecipientEnumerateRequest_Type(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RecipientEnumerateResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RecipientEnumerateResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RecipientEnumerateResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Recipients", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Recipients = append(m.Recipients, &RecipientObject{}) + if err := m.Recipients[len(m.Recipients)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Enabled", wireType) } var v int for shift := uint(0); ; shift += 7 { @@ -66123,8 +69309,122 @@ func (m *ReceiverInspectRequest) Unmarshal(dAtA []byte) error { break } } - m.IncludeSecrets = bool(v != 0) - case 4: + m.Enabled = bool(v != 0) + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RecipientInspectRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RecipientInspectRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RecipientInspectRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OrgId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.OrgId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uid", wireType) } @@ -66156,6 +69456,26 @@ func (m *ReceiverInspectRequest) Unmarshal(dAtA []byte) error { } m.Uid = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IncludeSecrets", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IncludeSecrets = bool(v != 0) default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -66177,7 +69497,7 @@ func (m *ReceiverInspectRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *ReceiverInspectResponse) Unmarshal(dAtA []byte) error { +func (m *RecipientInspectResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -66200,15 +69520,15 @@ func (m *ReceiverInspectResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ReceiverInspectResponse: wiretype end group for non-group") + return fmt.Errorf("proto: RecipientInspectResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ReceiverInspectResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RecipientInspectResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Receiver", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Recipient", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -66235,10 +69555,10 @@ func (m *ReceiverInspectResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.Receiver == nil { - m.Receiver = &ReceiverObject{} + if m.Recipient == nil { + m.Recipient = &RecipientObject{} } - if err := m.Receiver.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.Recipient.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -66263,7 +69583,7 @@ func (m *ReceiverInspectResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *ReceiverUpdateRequest) Unmarshal(dAtA []byte) error { +func (m *RecipientUpdateRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -66286,10 +69606,10 @@ func (m *ReceiverUpdateRequest) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ReceiverUpdateRequest: wiretype end group for non-group") + return fmt.Errorf("proto: RecipientUpdateRequest: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ReceiverUpdateRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RecipientUpdateRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -66330,7 +69650,7 @@ func (m *ReceiverUpdateRequest) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ReceiverInfo", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RecipientInfo", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -66357,10 +69677,10 @@ func (m *ReceiverUpdateRequest) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.ReceiverInfo == nil { - m.ReceiverInfo = &ReceiverInfo{} + if m.RecipientInfo == nil { + m.RecipientInfo = &RecipientInfo{} } - if err := m.ReceiverInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.RecipientInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -66385,7 +69705,7 @@ func (m *ReceiverUpdateRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *ReceiverUpdateResponse) Unmarshal(dAtA []byte) error { +func (m *RecipientUpdateResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -66408,10 +69728,10 @@ func (m *ReceiverUpdateResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ReceiverUpdateResponse: wiretype end group for non-group") + return fmt.Errorf("proto: RecipientUpdateResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ReceiverUpdateResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RecipientUpdateResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: @@ -66435,7 +69755,7 @@ func (m *ReceiverUpdateResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *ReceiverDeleteRequest) Unmarshal(dAtA []byte) error { +func (m *RecipientDeleteRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -66458,10 +69778,10 @@ func (m *ReceiverDeleteRequest) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ReceiverDeleteRequest: wiretype end group for non-group") + return fmt.Errorf("proto: RecipientDeleteRequest: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ReceiverDeleteRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RecipientDeleteRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -66581,7 +69901,7 @@ func (m *ReceiverDeleteRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *ReceiverDeleteResponse) Unmarshal(dAtA []byte) error { +func (m *RecipientDeleteResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -66604,10 +69924,10 @@ func (m *ReceiverDeleteResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ReceiverDeleteResponse: wiretype end group for non-group") + return fmt.Errorf("proto: RecipientDeleteResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ReceiverDeleteResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RecipientDeleteResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: diff --git a/pkg/apis/v1/api.pb.gw.go b/pkg/apis/v1/api.pb.gw.go index 3e3c2032..6b6a9a6f 100644 --- a/pkg/apis/v1/api.pb.gw.go +++ b/pkg/apis/v1/api.pb.gw.go @@ -927,6 +927,170 @@ func request_Receiver_Delete_0(ctx context.Context, marshaler runtime.Marshaler, } +func request_Recipient_Create_0(ctx context.Context, marshaler runtime.Marshaler, client RecipientClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq RecipientCreateRequest + var metadata runtime.ServerMetadata + + newReader, berr := utilities.IOReaderFactory(req.Body) + if berr != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr) + } + if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.Create(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +var ( + filter_Recipient_Enumerate_0 = &utilities.DoubleArray{Encoding: map[string]int{"org_id": 0}, Base: []int{1, 1, 0}, Check: []int{0, 1, 2}} +) + +func request_Recipient_Enumerate_0(ctx context.Context, marshaler runtime.Marshaler, client RecipientClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq RecipientEnumerateRequest + var metadata runtime.ServerMetadata + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["org_id"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "org_id") + } + + protoReq.OrgId, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "org_id", err) + } + + if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Recipient_Enumerate_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.Enumerate(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +var ( + filter_Recipient_Inspect_0 = &utilities.DoubleArray{Encoding: map[string]int{"name": 0, "uid": 1}, Base: []int{1, 1, 2, 0, 0}, Check: []int{0, 1, 1, 2, 3}} +) + +func request_Recipient_Inspect_0(ctx context.Context, marshaler runtime.Marshaler, client RecipientClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq RecipientInspectRequest + var metadata runtime.ServerMetadata + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["name"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "name") + } + + protoReq.Name, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "name", err) + } + + val, ok = pathParams["uid"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "uid") + } + + protoReq.Uid, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "uid", err) + } + + if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Recipient_Inspect_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.Inspect(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func request_Recipient_Update_0(ctx context.Context, marshaler runtime.Marshaler, client RecipientClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq RecipientUpdateRequest + var metadata runtime.ServerMetadata + + newReader, berr := utilities.IOReaderFactory(req.Body) + if berr != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr) + } + if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.Update(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func request_Recipient_Delete_0(ctx context.Context, marshaler runtime.Marshaler, client RecipientClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq RecipientDeleteRequest + var metadata runtime.ServerMetadata + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["org_id"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "org_id") + } + + protoReq.OrgId, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "org_id", err) + } + + val, ok = pathParams["name"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "name") + } + + protoReq.Name, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "name", err) + } + + val, ok = pathParams["uid"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "uid") + } + + protoReq.Uid, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "uid", err) + } + + msg, err := client.Delete(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + func request_BackupLocation_Create_0(ctx context.Context, marshaler runtime.Marshaler, client BackupLocationClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { var protoReq BackupLocationCreateRequest var metadata runtime.ServerMetadata @@ -3168,6 +3332,171 @@ var ( forward_Receiver_Delete_0 = runtime.ForwardResponseMessage ) +// RegisterRecipientHandlerFromEndpoint is same as RegisterRecipientHandler but +// automatically dials to "endpoint" and closes the connection when "ctx" gets done. +func RegisterRecipientHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) { + conn, err := grpc.Dial(endpoint, opts...) + if err != nil { + return err + } + defer func() { + if err != nil { + if cerr := conn.Close(); cerr != nil { + grpclog.Infof("Failed to close conn to %s: %v", endpoint, cerr) + } + return + } + go func() { + <-ctx.Done() + if cerr := conn.Close(); cerr != nil { + grpclog.Infof("Failed to close conn to %s: %v", endpoint, cerr) + } + }() + }() + + return RegisterRecipientHandler(ctx, mux, conn) +} + +// RegisterRecipientHandler registers the http handlers for service Recipient to "mux". +// The handlers forward requests to the grpc endpoint over "conn". +func RegisterRecipientHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error { + return RegisterRecipientHandlerClient(ctx, mux, NewRecipientClient(conn)) +} + +// RegisterRecipientHandlerClient registers the http handlers for service Recipient +// to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "RecipientClient". +// Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "RecipientClient" +// doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in +// "RecipientClient" to call the correct interceptors. +func RegisterRecipientHandlerClient(ctx context.Context, mux *runtime.ServeMux, client RecipientClient) error { + + mux.Handle("POST", pattern_Recipient_Create_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Recipient_Create_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Recipient_Create_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + mux.Handle("GET", pattern_Recipient_Enumerate_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Recipient_Enumerate_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Recipient_Enumerate_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + mux.Handle("GET", pattern_Recipient_Inspect_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Recipient_Inspect_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Recipient_Inspect_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + mux.Handle("PUT", pattern_Recipient_Update_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Recipient_Update_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Recipient_Update_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + mux.Handle("DELETE", pattern_Recipient_Delete_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Recipient_Delete_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Recipient_Delete_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + + return nil +} + +var ( + pattern_Recipient_Create_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "recipient"}, "")) + + pattern_Recipient_Enumerate_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"v1", "recipient", "org_id"}, "")) + + pattern_Recipient_Inspect_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 1, 0, 4, 1, 5, 3}, []string{"v1", "recipient", "name", "uid"}, "")) + + pattern_Recipient_Update_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "recipient"}, "")) + + pattern_Recipient_Delete_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"v1", "recipient", "org_id", "name", "uid"}, "")) +) + +var ( + forward_Recipient_Create_0 = runtime.ForwardResponseMessage + + forward_Recipient_Enumerate_0 = runtime.ForwardResponseMessage + + forward_Recipient_Inspect_0 = runtime.ForwardResponseMessage + + forward_Recipient_Update_0 = runtime.ForwardResponseMessage + + forward_Recipient_Delete_0 = runtime.ForwardResponseMessage +) + // RegisterBackupLocationHandlerFromEndpoint is same as RegisterBackupLocationHandler but // automatically dials to "endpoint" and closes the connection when "ctx" gets done. func RegisterBackupLocationHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) { diff --git a/pkg/apis/v1/api.proto b/pkg/apis/v1/api.proto index c046eccd..83757a74 100644 --- a/pkg/apis/v1/api.proto +++ b/pkg/apis/v1/api.proto @@ -1319,6 +1319,7 @@ message CloudCredentialOwnershipUpdateRequest { message CloudCredentialOwnershipUpdateResponse {} service Receiver { + // * Create new alert manager receiver rpc Create(ReceiverCreateRequest) returns (ReceiverCreateResponse) { option (google.api.http) = { @@ -1327,6 +1328,7 @@ service Receiver { }; } + // * Returns a list of alert manager receivers rpc Enumerate(ReceiverEnumerateRequest) returns (ReceiverEnumerateResponse) { option (google.api.http) = { @@ -1334,6 +1336,7 @@ service Receiver { }; } + // * Returns the details of a specific alert manager receiver rpc Inspect(ReceiverInspectRequest) returns (ReceiverInspectResponse) { option (google.api.http) = { @@ -1341,6 +1344,7 @@ service Receiver { }; } + // * Update the details of a alert manager receiver rpc Update(ReceiverUpdateRequest) returns (ReceiverUpdateResponse) { option (google.api.http) = { @@ -1349,6 +1353,7 @@ service Receiver { }; } + // * Delete a specific alert manager receiver rpc Delete(ReceiverDeleteRequest) returns (ReceiverDeleteResponse) { option (google.api.http) = { @@ -1359,21 +1364,20 @@ service Receiver { message EmailConfig { // * Sender email address - string from = 2; - // * receiver email - repeated string receiver = 4; + string from = 1; + // * receiver email, User level set of receiver emails list + // repeated ObjectRef recipient_ref = 2; // * Host IP Address - string host = 5; + string host = 3; // * Host port default value is 25 - string port = 6; - bool send_resolved = 7; - // * Encrytion if any (optional) default value is false - bool encrytion_ssl = 8; - bool encryption_starttls = 9; + string port = 4; + // * Encryption if any (optional) default value is false + bool encrytion_ssl = 6; + bool encryption_starttls = 7; // * Authentication if any (optional) default values is false - bool authentication = 10; - string auth_username = 11; - string auth_password = 12 [ + bool authentication = 8; + string auth_username = 9; + string auth_password = 10 [ (gogoproto.jsontag) = "encryptionkey", (gogoproto.moretags) = "secure:\"true\"" ]; @@ -1386,12 +1390,14 @@ message ReceiverInfo { INVALID = 0; EMAIL = 1; } + // * True if px-backup validates the receiver setup + bool valid = 2; oneof config { EmailConfig email_config = 100; } - } + message ReceiverObject { Metadata metadata = 1 [ (gogoproto.jsontag) = "metadata", (gogoproto.embed) = true ]; @@ -1420,6 +1426,7 @@ message ReceiverInspectRequest { string name = 2; bool include_secrets = 3; string uid = 4; + string type = 5; } message ReceiverInspectResponse { @@ -1441,6 +1448,126 @@ message ReceiverDeleteRequest { message ReceiverDeleteResponse {} + +service Recipient { + rpc Create(RecipientCreateRequest) + returns (RecipientCreateResponse) { + option (google.api.http) = { + post : "/v1/recipient" + body : "*" + }; + } + + // * Returns a list of recipients for alerting + rpc Enumerate(RecipientEnumerateRequest) + returns (RecipientEnumerateResponse) { + option (google.api.http) = { + get : "/v1/recipient/{org_id}" + }; + } + + // * Returns the details of a specific recipient + rpc Inspect(RecipientInspectRequest) + returns (RecipientInspectResponse) { + option (google.api.http) = { + get : "/v1/recipient/{name}/{uid}" + }; + } + + // * Update the details of a recipient + rpc Update(RecipientUpdateRequest) + returns (RecipientUpdateResponse) { + option (google.api.http) = { + put : "/v1/recipient" + body : "*" + }; + } + + // * Delete a specific recipient + rpc Delete(RecipientDeleteRequest) + returns (RecipientDeleteResponse) { + option (google.api.http) = { + delete : "/v1/recipient/{org_id}/{name}/{uid}" + }; + } +} + +message RecipientObject { + Metadata metadata = 1 + [ (gogoproto.jsontag) = "metadata", (gogoproto.embed) = true ]; + RecipientInfo recipient_info = 2; +} + +message RecipientInfo { + // * Type of notification on user level + Type type = 1; + enum Type { + INVALID = 0; + EMAIL = 1; + } + // * Based on type recipient list is added + repeated string recipient_id = 2; + // * current status set by user + bool active = 3; + // * Filter level of alert by severity + Severity severity = 5; + enum Severity { + UNKNOWN = 0; + CRITICAL = 1; + WARNING = 2; + } + +} + +message RecipientCreateRequest { + CreateMetadata metadata = 1 [ (gogoproto.embed) = true ]; + RecipientInfo recipient_info = 2; +} + +message RecipientCreateResponse {} + +message RecipientEnumerateRequest { + string org_id = 1; + // * Type of notification on user level + Type type = 2; + enum Type { + INVALID = 0; + EMAIL = 1; + } +} + +message RecipientEnumerateResponse { + repeated RecipientObject recipients = 1; + // * Enabled will be an in memory value always fetched from Recevier Info + bool enabled = 2; +} + +message RecipientInspectRequest { + string org_id = 1; + string name = 2; + string uid = 3; + bool include_secrets = 4; +} + +message RecipientInspectResponse { + RecipientObject recipient = 1; +} + +message RecipientUpdateRequest { + CreateMetadata metadata = 1 [ (gogoproto.embed) = true ]; + RecipientInfo recipient_info = 2; +} + +message RecipientUpdateResponse {} + +message RecipientDeleteRequest { + string org_id = 1; + string name = 2; + string uid = 3; +} + +message RecipientDeleteResponse {} + service BackupLocation { // Creates new backup location rpc Create(BackupLocationCreateRequest) diff --git a/pkg/apis/v1/api.swagger.json b/pkg/apis/v1/api.swagger.json index d76aa76b..fb955eb2 100644 --- a/pkg/apis/v1/api.swagger.json +++ b/pkg/apis/v1/api.swagger.json @@ -1559,6 +1559,7 @@ }, "/v1/receiver": { "post": { + "summary": "* Create new alert manager receiver", "operationId": "Create", "responses": { "200": { @@ -1583,6 +1584,7 @@ ] }, "put": { + "summary": "* Update the details of a alert manager receiver", "operationId": "Update", "responses": { "200": { @@ -1609,6 +1611,7 @@ }, "/v1/receiver/{name}/{uid}": { "get": { + "summary": "* Returns the details of a specific alert manager receiver", "operationId": "Inspect", "responses": { "200": { @@ -1643,6 +1646,12 @@ "required": false, "type": "boolean", "format": "boolean" + }, + { + "name": "type", + "in": "query", + "required": false, + "type": "string" } ], "tags": [ @@ -1652,6 +1661,7 @@ }, "/v1/receiver/{org_id}": { "get": { + "summary": "* Returns a list of alert manager receivers", "operationId": "Enumerate", "responses": { "200": { @@ -1683,6 +1693,7 @@ }, "/v1/receiver/{org_id}/{name}/{uid}": { "delete": { + "summary": "* Delete a specific alert manager receiver", "operationId": "Delete", "responses": { "200": { @@ -1717,6 +1728,175 @@ ] } }, + "/v1/recipient": { + "post": { + "operationId": "Create", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/RecipientCreateResponse" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/RecipientCreateRequest" + } + } + ], + "tags": [ + "Recipient" + ] + }, + "put": { + "summary": "* Update the details of a recipient", + "operationId": "Update", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/RecipientUpdateResponse" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/RecipientUpdateRequest" + } + } + ], + "tags": [ + "Recipient" + ] + } + }, + "/v1/recipient/{name}/{uid}": { + "get": { + "summary": "* Returns the details of a specific recipient", + "operationId": "Inspect", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/RecipientInspectResponse" + } + } + }, + "parameters": [ + { + "name": "name", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "uid", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "org_id", + "in": "query", + "required": false, + "type": "string" + }, + { + "name": "include_secrets", + "in": "query", + "required": false, + "type": "boolean", + "format": "boolean" + } + ], + "tags": [ + "Recipient" + ] + } + }, + "/v1/recipient/{org_id}": { + "get": { + "summary": "* Returns a list of recipients for alerting", + "operationId": "Enumerate", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/RecipientEnumerateResponse" + } + } + }, + "parameters": [ + { + "name": "org_id", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "type", + "description": "* Type of notification on user level.", + "in": "query", + "required": false, + "type": "string", + "enum": [ + "INVALID", + "EMAIL" + ], + "default": "INVALID" + } + ], + "tags": [ + "Recipient" + ] + } + }, + "/v1/recipient/{org_id}/{name}/{uid}": { + "delete": { + "summary": "* Delete a specific recipient", + "operationId": "Delete", + "responses": { + "200": { + "description": "A successful response.", + "schema": { + "$ref": "#/definitions/RecipientDeleteResponse" + } + } + }, + "parameters": [ + { + "name": "org_id", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "name", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "uid", + "in": "path", + "required": true, + "type": "string" + } + ], + "tags": [ + "Recipient" + ] + } + }, "/v1/restore": { "post": { "summary": "Creates new restore object in datastore\nIt will also trigger a restore operation on the target cluster", @@ -4234,29 +4414,18 @@ "type": "string", "title": "* Sender email address" }, - "receiver": { - "type": "array", - "items": { - "type": "string" - }, - "title": "* receiver email" - }, "host": { "type": "string", - "title": "* Host IP Address" + "title": "* receiver email, User level set of receiver emails list\nrepeated ObjectRef recipient_ref = 2;\n* Host IP Address" }, "port": { "type": "string", "title": "* Host port default value is 25" }, - "send_resolved": { - "type": "boolean", - "format": "boolean" - }, "encrytion_ssl": { "type": "boolean", "format": "boolean", - "title": "* Encrytion if any (optional) default value is false" + "title": "* Encryption if any (optional) default value is false" }, "encryption_starttls": { "type": "boolean", @@ -5004,6 +5173,11 @@ "type": { "$ref": "#/definitions/ReceiverInfoType" }, + "valid": { + "type": "boolean", + "format": "boolean", + "title": "* True if px-backup validates the receiver setup" + }, "email_config": { "$ref": "#/definitions/EmailConfig" } @@ -5050,6 +5224,122 @@ "ReceiverUpdateResponse": { "type": "object" }, + "RecipientCreateRequest": { + "type": "object", + "properties": { + "metadata": { + "$ref": "#/definitions/CreateMetadata" + }, + "recipient_info": { + "$ref": "#/definitions/RecipientInfo" + } + } + }, + "RecipientCreateResponse": { + "type": "object" + }, + "RecipientDeleteResponse": { + "type": "object" + }, + "RecipientEnumerateRequestType": { + "type": "string", + "enum": [ + "INVALID", + "EMAIL" + ], + "default": "INVALID" + }, + "RecipientEnumerateResponse": { + "type": "object", + "properties": { + "recipients": { + "type": "array", + "items": { + "$ref": "#/definitions/RecipientObject" + } + }, + "enabled": { + "type": "boolean", + "format": "boolean", + "title": "* Enabled will be an in memory value always fetched from Recevier Info" + } + } + }, + "RecipientInfo": { + "type": "object", + "properties": { + "type": { + "$ref": "#/definitions/RecipientInfoType", + "title": "* Type of notification on user level" + }, + "recipient_id": { + "type": "array", + "items": { + "type": "string" + }, + "title": "* Based on type recipient list is added" + }, + "active": { + "type": "boolean", + "format": "boolean", + "title": "* current status set by user" + }, + "severity": { + "$ref": "#/definitions/RecipientInfoSeverity", + "title": "* Filter level of alert by severity" + } + } + }, + "RecipientInfoSeverity": { + "type": "string", + "enum": [ + "UNKNOWN", + "CRITICAL", + "WARNING" + ], + "default": "UNKNOWN" + }, + "RecipientInfoType": { + "type": "string", + "enum": [ + "INVALID", + "EMAIL" + ], + "default": "INVALID" + }, + "RecipientInspectResponse": { + "type": "object", + "properties": { + "recipient": { + "$ref": "#/definitions/RecipientObject" + } + } + }, + "RecipientObject": { + "type": "object", + "properties": { + "metadata": { + "$ref": "#/definitions/Metadata" + }, + "recipient_info": { + "$ref": "#/definitions/RecipientInfo" + } + } + }, + "RecipientUpdateRequest": { + "type": "object", + "properties": { + "metadata": { + "$ref": "#/definitions/CreateMetadata" + }, + "recipient_info": { + "$ref": "#/definitions/RecipientInfo" + } + } + }, + "RecipientUpdateResponse": { + "type": "object" + }, "ReplacePolicyType": { "type": "string", "enum": [ diff --git a/pkg/apis/v1/apipb_test.go b/pkg/apis/v1/apipb_test.go index 2232fff1..67e91ecb 100644 --- a/pkg/apis/v1/apipb_test.go +++ b/pkg/apis/v1/apipb_test.go @@ -6295,15 +6295,15 @@ func TestReceiverDeleteResponseMarshalTo(t *testing.T) { } } -func TestBackupLocationCreateRequestProto(t *testing.T) { +func TestRecipientObjectProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationCreateRequest(popr, false) + p := NewPopulatedRecipientObject(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationCreateRequest{} + msg := &RecipientObject{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6326,10 +6326,10 @@ func TestBackupLocationCreateRequestProto(t *testing.T) { } } -func TestBackupLocationCreateRequestMarshalTo(t *testing.T) { +func TestRecipientObjectMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationCreateRequest(popr, false) + p := NewPopulatedRecipientObject(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6339,7 +6339,7 @@ func TestBackupLocationCreateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationCreateRequest{} + msg := &RecipientObject{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6351,15 +6351,15 @@ func TestBackupLocationCreateRequestMarshalTo(t *testing.T) { } } -func TestBackupLocationCreateResponseProto(t *testing.T) { +func TestRecipientInfoProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationCreateResponse(popr, false) + p := NewPopulatedRecipientInfo(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationCreateResponse{} + msg := &RecipientInfo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6382,10 +6382,10 @@ func TestBackupLocationCreateResponseProto(t *testing.T) { } } -func TestBackupLocationCreateResponseMarshalTo(t *testing.T) { +func TestRecipientInfoMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationCreateResponse(popr, false) + p := NewPopulatedRecipientInfo(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6395,7 +6395,7 @@ func TestBackupLocationCreateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationCreateResponse{} + msg := &RecipientInfo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6407,15 +6407,15 @@ func TestBackupLocationCreateResponseMarshalTo(t *testing.T) { } } -func TestBackupLocationUpdateRequestProto(t *testing.T) { +func TestRecipientCreateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationUpdateRequest(popr, false) + p := NewPopulatedRecipientCreateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationUpdateRequest{} + msg := &RecipientCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6438,10 +6438,10 @@ func TestBackupLocationUpdateRequestProto(t *testing.T) { } } -func TestBackupLocationUpdateRequestMarshalTo(t *testing.T) { +func TestRecipientCreateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationUpdateRequest(popr, false) + p := NewPopulatedRecipientCreateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6451,7 +6451,7 @@ func TestBackupLocationUpdateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationUpdateRequest{} + msg := &RecipientCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6463,15 +6463,15 @@ func TestBackupLocationUpdateRequestMarshalTo(t *testing.T) { } } -func TestBackupLocationUpdateResponseProto(t *testing.T) { +func TestRecipientCreateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationUpdateResponse(popr, false) + p := NewPopulatedRecipientCreateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationUpdateResponse{} + msg := &RecipientCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6494,10 +6494,10 @@ func TestBackupLocationUpdateResponseProto(t *testing.T) { } } -func TestBackupLocationUpdateResponseMarshalTo(t *testing.T) { +func TestRecipientCreateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationUpdateResponse(popr, false) + p := NewPopulatedRecipientCreateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6507,7 +6507,7 @@ func TestBackupLocationUpdateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationUpdateResponse{} + msg := &RecipientCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6519,15 +6519,15 @@ func TestBackupLocationUpdateResponseMarshalTo(t *testing.T) { } } -func TestBackupLocationEnumerateRequestProto(t *testing.T) { +func TestRecipientEnumerateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationEnumerateRequest(popr, false) + p := NewPopulatedRecipientEnumerateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationEnumerateRequest{} + msg := &RecipientEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6550,10 +6550,10 @@ func TestBackupLocationEnumerateRequestProto(t *testing.T) { } } -func TestBackupLocationEnumerateRequestMarshalTo(t *testing.T) { +func TestRecipientEnumerateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationEnumerateRequest(popr, false) + p := NewPopulatedRecipientEnumerateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6563,7 +6563,7 @@ func TestBackupLocationEnumerateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationEnumerateRequest{} + msg := &RecipientEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6575,15 +6575,15 @@ func TestBackupLocationEnumerateRequestMarshalTo(t *testing.T) { } } -func TestBackupLocationEnumerateResponseProto(t *testing.T) { +func TestRecipientEnumerateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationEnumerateResponse(popr, false) + p := NewPopulatedRecipientEnumerateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationEnumerateResponse{} + msg := &RecipientEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6606,10 +6606,10 @@ func TestBackupLocationEnumerateResponseProto(t *testing.T) { } } -func TestBackupLocationEnumerateResponseMarshalTo(t *testing.T) { +func TestRecipientEnumerateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationEnumerateResponse(popr, false) + p := NewPopulatedRecipientEnumerateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6619,7 +6619,7 @@ func TestBackupLocationEnumerateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationEnumerateResponse{} + msg := &RecipientEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6631,15 +6631,15 @@ func TestBackupLocationEnumerateResponseMarshalTo(t *testing.T) { } } -func TestBackupLocationInspectRequestProto(t *testing.T) { +func TestRecipientInspectRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInspectRequest(popr, false) + p := NewPopulatedRecipientInspectRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationInspectRequest{} + msg := &RecipientInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6662,10 +6662,10 @@ func TestBackupLocationInspectRequestProto(t *testing.T) { } } -func TestBackupLocationInspectRequestMarshalTo(t *testing.T) { +func TestRecipientInspectRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInspectRequest(popr, false) + p := NewPopulatedRecipientInspectRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6675,7 +6675,7 @@ func TestBackupLocationInspectRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationInspectRequest{} + msg := &RecipientInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6687,15 +6687,15 @@ func TestBackupLocationInspectRequestMarshalTo(t *testing.T) { } } -func TestBackupLocationInspectResponseProto(t *testing.T) { +func TestRecipientInspectResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInspectResponse(popr, false) + p := NewPopulatedRecipientInspectResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationInspectResponse{} + msg := &RecipientInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6718,10 +6718,10 @@ func TestBackupLocationInspectResponseProto(t *testing.T) { } } -func TestBackupLocationInspectResponseMarshalTo(t *testing.T) { +func TestRecipientInspectResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInspectResponse(popr, false) + p := NewPopulatedRecipientInspectResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6731,7 +6731,7 @@ func TestBackupLocationInspectResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationInspectResponse{} + msg := &RecipientInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6743,15 +6743,15 @@ func TestBackupLocationInspectResponseMarshalTo(t *testing.T) { } } -func TestBackupLocationDeleteRequestProto(t *testing.T) { +func TestRecipientUpdateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationDeleteRequest(popr, false) + p := NewPopulatedRecipientUpdateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationDeleteRequest{} + msg := &RecipientUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6774,10 +6774,10 @@ func TestBackupLocationDeleteRequestProto(t *testing.T) { } } -func TestBackupLocationDeleteRequestMarshalTo(t *testing.T) { +func TestRecipientUpdateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationDeleteRequest(popr, false) + p := NewPopulatedRecipientUpdateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6787,7 +6787,7 @@ func TestBackupLocationDeleteRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationDeleteRequest{} + msg := &RecipientUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6799,15 +6799,15 @@ func TestBackupLocationDeleteRequestMarshalTo(t *testing.T) { } } -func TestBackupLocationDeleteResponseProto(t *testing.T) { +func TestRecipientUpdateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationDeleteResponse(popr, false) + p := NewPopulatedRecipientUpdateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationDeleteResponse{} + msg := &RecipientUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6830,10 +6830,10 @@ func TestBackupLocationDeleteResponseProto(t *testing.T) { } } -func TestBackupLocationDeleteResponseMarshalTo(t *testing.T) { +func TestRecipientUpdateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationDeleteResponse(popr, false) + p := NewPopulatedRecipientUpdateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6843,7 +6843,7 @@ func TestBackupLocationDeleteResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationDeleteResponse{} + msg := &RecipientUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6855,15 +6855,15 @@ func TestBackupLocationDeleteResponseMarshalTo(t *testing.T) { } } -func TestBackupLocationValidateRequestProto(t *testing.T) { +func TestRecipientDeleteRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationValidateRequest(popr, false) + p := NewPopulatedRecipientDeleteRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationValidateRequest{} + msg := &RecipientDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6886,10 +6886,10 @@ func TestBackupLocationValidateRequestProto(t *testing.T) { } } -func TestBackupLocationValidateRequestMarshalTo(t *testing.T) { +func TestRecipientDeleteRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationValidateRequest(popr, false) + p := NewPopulatedRecipientDeleteRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6899,7 +6899,7 @@ func TestBackupLocationValidateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationValidateRequest{} + msg := &RecipientDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6911,15 +6911,15 @@ func TestBackupLocationValidateRequestMarshalTo(t *testing.T) { } } -func TestBackupLocationValidateResponseProto(t *testing.T) { +func TestRecipientDeleteResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationValidateResponse(popr, false) + p := NewPopulatedRecipientDeleteResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationValidateResponse{} + msg := &RecipientDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6942,10 +6942,10 @@ func TestBackupLocationValidateResponseProto(t *testing.T) { } } -func TestBackupLocationValidateResponseMarshalTo(t *testing.T) { +func TestRecipientDeleteResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationValidateResponse(popr, false) + p := NewPopulatedRecipientDeleteResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -6955,7 +6955,7 @@ func TestBackupLocationValidateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationValidateResponse{} + msg := &RecipientDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6967,15 +6967,15 @@ func TestBackupLocationValidateResponseMarshalTo(t *testing.T) { } } -func TestBackupLocationOwnershipUpdateRequestProto(t *testing.T) { +func TestBackupLocationCreateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationOwnershipUpdateRequest(popr, false) + p := NewPopulatedBackupLocationCreateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationOwnershipUpdateRequest{} + msg := &BackupLocationCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -6998,10 +6998,10 @@ func TestBackupLocationOwnershipUpdateRequestProto(t *testing.T) { } } -func TestBackupLocationOwnershipUpdateRequestMarshalTo(t *testing.T) { +func TestBackupLocationCreateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationOwnershipUpdateRequest(popr, false) + p := NewPopulatedBackupLocationCreateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7011,7 +7011,7 @@ func TestBackupLocationOwnershipUpdateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationOwnershipUpdateRequest{} + msg := &BackupLocationCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7023,15 +7023,15 @@ func TestBackupLocationOwnershipUpdateRequestMarshalTo(t *testing.T) { } } -func TestBackupLocationOwnershipUpdateResponseProto(t *testing.T) { +func TestBackupLocationCreateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationOwnershipUpdateResponse(popr, false) + p := NewPopulatedBackupLocationCreateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationOwnershipUpdateResponse{} + msg := &BackupLocationCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7054,10 +7054,10 @@ func TestBackupLocationOwnershipUpdateResponseProto(t *testing.T) { } } -func TestBackupLocationOwnershipUpdateResponseMarshalTo(t *testing.T) { +func TestBackupLocationCreateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationOwnershipUpdateResponse(popr, false) + p := NewPopulatedBackupLocationCreateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7067,7 +7067,7 @@ func TestBackupLocationOwnershipUpdateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationOwnershipUpdateResponse{} + msg := &BackupLocationCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7079,15 +7079,15 @@ func TestBackupLocationOwnershipUpdateResponseMarshalTo(t *testing.T) { } } -func TestMetricsInspectRequestProto(t *testing.T) { +func TestBackupLocationUpdateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedMetricsInspectRequest(popr, false) + p := NewPopulatedBackupLocationUpdateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &MetricsInspectRequest{} + msg := &BackupLocationUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7110,10 +7110,10 @@ func TestMetricsInspectRequestProto(t *testing.T) { } } -func TestMetricsInspectRequestMarshalTo(t *testing.T) { +func TestBackupLocationUpdateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedMetricsInspectRequest(popr, false) + p := NewPopulatedBackupLocationUpdateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7123,7 +7123,7 @@ func TestMetricsInspectRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &MetricsInspectRequest{} + msg := &BackupLocationUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7135,15 +7135,15 @@ func TestMetricsInspectRequestMarshalTo(t *testing.T) { } } -func TestMetricsInspectResponseProto(t *testing.T) { +func TestBackupLocationUpdateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedMetricsInspectResponse(popr, false) + p := NewPopulatedBackupLocationUpdateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &MetricsInspectResponse{} + msg := &BackupLocationUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7166,10 +7166,10 @@ func TestMetricsInspectResponseProto(t *testing.T) { } } -func TestMetricsInspectResponseMarshalTo(t *testing.T) { +func TestBackupLocationUpdateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedMetricsInspectResponse(popr, false) + p := NewPopulatedBackupLocationUpdateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7179,7 +7179,7 @@ func TestMetricsInspectResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &MetricsInspectResponse{} + msg := &BackupLocationUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7191,15 +7191,15 @@ func TestMetricsInspectResponseMarshalTo(t *testing.T) { } } -func TestMetricsInspectResponse_StatsProto(t *testing.T) { +func TestBackupLocationEnumerateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedMetricsInspectResponse_Stats(popr, false) + p := NewPopulatedBackupLocationEnumerateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &MetricsInspectResponse_Stats{} + msg := &BackupLocationEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7222,10 +7222,10 @@ func TestMetricsInspectResponse_StatsProto(t *testing.T) { } } -func TestMetricsInspectResponse_StatsMarshalTo(t *testing.T) { +func TestBackupLocationEnumerateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedMetricsInspectResponse_Stats(popr, false) + p := NewPopulatedBackupLocationEnumerateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7235,7 +7235,7 @@ func TestMetricsInspectResponse_StatsMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &MetricsInspectResponse_Stats{} + msg := &BackupLocationEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7247,15 +7247,15 @@ func TestMetricsInspectResponse_StatsMarshalTo(t *testing.T) { } } -func TestBackupCreateRequestProto(t *testing.T) { +func TestBackupLocationEnumerateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupCreateRequest(popr, false) + p := NewPopulatedBackupLocationEnumerateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupCreateRequest{} + msg := &BackupLocationEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7278,10 +7278,10 @@ func TestBackupCreateRequestProto(t *testing.T) { } } -func TestBackupCreateRequestMarshalTo(t *testing.T) { +func TestBackupLocationEnumerateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupCreateRequest(popr, false) + p := NewPopulatedBackupLocationEnumerateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7291,7 +7291,7 @@ func TestBackupCreateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupCreateRequest{} + msg := &BackupLocationEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7303,15 +7303,15 @@ func TestBackupCreateRequestMarshalTo(t *testing.T) { } } -func TestBackupCreateResponseProto(t *testing.T) { +func TestBackupLocationInspectRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupCreateResponse(popr, false) + p := NewPopulatedBackupLocationInspectRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupCreateResponse{} + msg := &BackupLocationInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7334,10 +7334,10 @@ func TestBackupCreateResponseProto(t *testing.T) { } } -func TestBackupCreateResponseMarshalTo(t *testing.T) { +func TestBackupLocationInspectRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupCreateResponse(popr, false) + p := NewPopulatedBackupLocationInspectRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7347,7 +7347,7 @@ func TestBackupCreateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupCreateResponse{} + msg := &BackupLocationInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7359,15 +7359,15 @@ func TestBackupCreateResponseMarshalTo(t *testing.T) { } } -func TestBackupUpdateRequestProto(t *testing.T) { +func TestBackupLocationInspectResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupUpdateRequest(popr, false) + p := NewPopulatedBackupLocationInspectResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupUpdateRequest{} + msg := &BackupLocationInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7390,10 +7390,10 @@ func TestBackupUpdateRequestProto(t *testing.T) { } } -func TestBackupUpdateRequestMarshalTo(t *testing.T) { +func TestBackupLocationInspectResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupUpdateRequest(popr, false) + p := NewPopulatedBackupLocationInspectResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7403,7 +7403,7 @@ func TestBackupUpdateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupUpdateRequest{} + msg := &BackupLocationInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7415,15 +7415,15 @@ func TestBackupUpdateRequestMarshalTo(t *testing.T) { } } -func TestBackupUpdateResponseProto(t *testing.T) { +func TestBackupLocationDeleteRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupUpdateResponse(popr, false) + p := NewPopulatedBackupLocationDeleteRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupUpdateResponse{} + msg := &BackupLocationDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7446,10 +7446,10 @@ func TestBackupUpdateResponseProto(t *testing.T) { } } -func TestBackupUpdateResponseMarshalTo(t *testing.T) { +func TestBackupLocationDeleteRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupUpdateResponse(popr, false) + p := NewPopulatedBackupLocationDeleteRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7459,7 +7459,7 @@ func TestBackupUpdateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupUpdateResponse{} + msg := &BackupLocationDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7471,15 +7471,15 @@ func TestBackupUpdateResponseMarshalTo(t *testing.T) { } } -func TestBackupEnumerateRequestProto(t *testing.T) { +func TestBackupLocationDeleteResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupEnumerateRequest(popr, false) + p := NewPopulatedBackupLocationDeleteResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupEnumerateRequest{} + msg := &BackupLocationDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7502,10 +7502,10 @@ func TestBackupEnumerateRequestProto(t *testing.T) { } } -func TestBackupEnumerateRequestMarshalTo(t *testing.T) { +func TestBackupLocationDeleteResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupEnumerateRequest(popr, false) + p := NewPopulatedBackupLocationDeleteResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7515,7 +7515,7 @@ func TestBackupEnumerateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupEnumerateRequest{} + msg := &BackupLocationDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7527,15 +7527,15 @@ func TestBackupEnumerateRequestMarshalTo(t *testing.T) { } } -func TestBackupEnumerateResponseProto(t *testing.T) { +func TestBackupLocationValidateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupEnumerateResponse(popr, false) + p := NewPopulatedBackupLocationValidateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupEnumerateResponse{} + msg := &BackupLocationValidateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7558,10 +7558,10 @@ func TestBackupEnumerateResponseProto(t *testing.T) { } } -func TestBackupEnumerateResponseMarshalTo(t *testing.T) { +func TestBackupLocationValidateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupEnumerateResponse(popr, false) + p := NewPopulatedBackupLocationValidateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7571,7 +7571,7 @@ func TestBackupEnumerateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupEnumerateResponse{} + msg := &BackupLocationValidateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7583,15 +7583,15 @@ func TestBackupEnumerateResponseMarshalTo(t *testing.T) { } } -func TestBackupInspectRequestProto(t *testing.T) { +func TestBackupLocationValidateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInspectRequest(popr, false) + p := NewPopulatedBackupLocationValidateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInspectRequest{} + msg := &BackupLocationValidateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7614,10 +7614,10 @@ func TestBackupInspectRequestProto(t *testing.T) { } } -func TestBackupInspectRequestMarshalTo(t *testing.T) { +func TestBackupLocationValidateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInspectRequest(popr, false) + p := NewPopulatedBackupLocationValidateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7627,7 +7627,7 @@ func TestBackupInspectRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInspectRequest{} + msg := &BackupLocationValidateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7639,15 +7639,15 @@ func TestBackupInspectRequestMarshalTo(t *testing.T) { } } -func TestBackupInspectResponseProto(t *testing.T) { +func TestBackupLocationOwnershipUpdateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInspectResponse(popr, false) + p := NewPopulatedBackupLocationOwnershipUpdateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInspectResponse{} + msg := &BackupLocationOwnershipUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7670,10 +7670,10 @@ func TestBackupInspectResponseProto(t *testing.T) { } } -func TestBackupInspectResponseMarshalTo(t *testing.T) { +func TestBackupLocationOwnershipUpdateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInspectResponse(popr, false) + p := NewPopulatedBackupLocationOwnershipUpdateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7683,7 +7683,7 @@ func TestBackupInspectResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInspectResponse{} + msg := &BackupLocationOwnershipUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7695,15 +7695,15 @@ func TestBackupInspectResponseMarshalTo(t *testing.T) { } } -func TestBackupDeleteRequestProto(t *testing.T) { +func TestBackupLocationOwnershipUpdateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupDeleteRequest(popr, false) + p := NewPopulatedBackupLocationOwnershipUpdateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupDeleteRequest{} + msg := &BackupLocationOwnershipUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7726,10 +7726,10 @@ func TestBackupDeleteRequestProto(t *testing.T) { } } -func TestBackupDeleteRequestMarshalTo(t *testing.T) { +func TestBackupLocationOwnershipUpdateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupDeleteRequest(popr, false) + p := NewPopulatedBackupLocationOwnershipUpdateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7739,7 +7739,7 @@ func TestBackupDeleteRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupDeleteRequest{} + msg := &BackupLocationOwnershipUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7751,15 +7751,15 @@ func TestBackupDeleteRequestMarshalTo(t *testing.T) { } } -func TestBackupDeleteResponseProto(t *testing.T) { +func TestMetricsInspectRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupDeleteResponse(popr, false) + p := NewPopulatedMetricsInspectRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupDeleteResponse{} + msg := &MetricsInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7782,10 +7782,10 @@ func TestBackupDeleteResponseProto(t *testing.T) { } } -func TestBackupDeleteResponseMarshalTo(t *testing.T) { +func TestMetricsInspectRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupDeleteResponse(popr, false) + p := NewPopulatedMetricsInspectRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7795,7 +7795,7 @@ func TestBackupDeleteResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupDeleteResponse{} + msg := &MetricsInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7807,15 +7807,15 @@ func TestBackupDeleteResponseMarshalTo(t *testing.T) { } } -func TestBackupShareUpdateRequestProto(t *testing.T) { +func TestMetricsInspectResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupShareUpdateRequest(popr, false) + p := NewPopulatedMetricsInspectResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupShareUpdateRequest{} + msg := &MetricsInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7838,10 +7838,10 @@ func TestBackupShareUpdateRequestProto(t *testing.T) { } } -func TestBackupShareUpdateRequestMarshalTo(t *testing.T) { +func TestMetricsInspectResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupShareUpdateRequest(popr, false) + p := NewPopulatedMetricsInspectResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7851,7 +7851,7 @@ func TestBackupShareUpdateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupShareUpdateRequest{} + msg := &MetricsInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7863,15 +7863,15 @@ func TestBackupShareUpdateRequestMarshalTo(t *testing.T) { } } -func TestBackupShareUpdateResponseProto(t *testing.T) { +func TestMetricsInspectResponse_StatsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupShareUpdateResponse(popr, false) + p := NewPopulatedMetricsInspectResponse_Stats(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupShareUpdateResponse{} + msg := &MetricsInspectResponse_Stats{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7894,10 +7894,10 @@ func TestBackupShareUpdateResponseProto(t *testing.T) { } } -func TestBackupShareUpdateResponseMarshalTo(t *testing.T) { +func TestMetricsInspectResponse_StatsMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupShareUpdateResponse(popr, false) + p := NewPopulatedMetricsInspectResponse_Stats(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7907,7 +7907,7 @@ func TestBackupShareUpdateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupShareUpdateResponse{} + msg := &MetricsInspectResponse_Stats{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7919,15 +7919,15 @@ func TestBackupShareUpdateResponseMarshalTo(t *testing.T) { } } -func TestRestoreCreateRequestProto(t *testing.T) { +func TestBackupCreateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreCreateRequest(popr, false) + p := NewPopulatedBackupCreateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreCreateRequest{} + msg := &BackupCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7950,10 +7950,10 @@ func TestRestoreCreateRequestProto(t *testing.T) { } } -func TestRestoreCreateRequestMarshalTo(t *testing.T) { +func TestBackupCreateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreCreateRequest(popr, false) + p := NewPopulatedBackupCreateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -7963,7 +7963,7 @@ func TestRestoreCreateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreCreateRequest{} + msg := &BackupCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -7975,15 +7975,15 @@ func TestRestoreCreateRequestMarshalTo(t *testing.T) { } } -func TestRestoreCreateResponseProto(t *testing.T) { +func TestBackupCreateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreCreateResponse(popr, false) + p := NewPopulatedBackupCreateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreCreateResponse{} + msg := &BackupCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8006,10 +8006,10 @@ func TestRestoreCreateResponseProto(t *testing.T) { } } -func TestRestoreCreateResponseMarshalTo(t *testing.T) { +func TestBackupCreateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreCreateResponse(popr, false) + p := NewPopulatedBackupCreateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8019,7 +8019,7 @@ func TestRestoreCreateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreCreateResponse{} + msg := &BackupCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8031,15 +8031,15 @@ func TestRestoreCreateResponseMarshalTo(t *testing.T) { } } -func TestRestoreUpdateRequestProto(t *testing.T) { +func TestBackupUpdateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreUpdateRequest(popr, false) + p := NewPopulatedBackupUpdateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreUpdateRequest{} + msg := &BackupUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8062,10 +8062,10 @@ func TestRestoreUpdateRequestProto(t *testing.T) { } } -func TestRestoreUpdateRequestMarshalTo(t *testing.T) { +func TestBackupUpdateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreUpdateRequest(popr, false) + p := NewPopulatedBackupUpdateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8075,7 +8075,7 @@ func TestRestoreUpdateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreUpdateRequest{} + msg := &BackupUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8087,15 +8087,15 @@ func TestRestoreUpdateRequestMarshalTo(t *testing.T) { } } -func TestRestoreUpdateResponseProto(t *testing.T) { +func TestBackupUpdateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreUpdateResponse(popr, false) + p := NewPopulatedBackupUpdateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreUpdateResponse{} + msg := &BackupUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8118,10 +8118,10 @@ func TestRestoreUpdateResponseProto(t *testing.T) { } } -func TestRestoreUpdateResponseMarshalTo(t *testing.T) { +func TestBackupUpdateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreUpdateResponse(popr, false) + p := NewPopulatedBackupUpdateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8131,7 +8131,7 @@ func TestRestoreUpdateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreUpdateResponse{} + msg := &BackupUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8143,15 +8143,15 @@ func TestRestoreUpdateResponseMarshalTo(t *testing.T) { } } -func TestRestoreEnumerateRequestProto(t *testing.T) { +func TestBackupEnumerateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreEnumerateRequest(popr, false) + p := NewPopulatedBackupEnumerateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreEnumerateRequest{} + msg := &BackupEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8174,10 +8174,10 @@ func TestRestoreEnumerateRequestProto(t *testing.T) { } } -func TestRestoreEnumerateRequestMarshalTo(t *testing.T) { +func TestBackupEnumerateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreEnumerateRequest(popr, false) + p := NewPopulatedBackupEnumerateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8187,7 +8187,7 @@ func TestRestoreEnumerateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreEnumerateRequest{} + msg := &BackupEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8199,15 +8199,15 @@ func TestRestoreEnumerateRequestMarshalTo(t *testing.T) { } } -func TestRestoreEnumerateResponseProto(t *testing.T) { +func TestBackupEnumerateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreEnumerateResponse(popr, false) + p := NewPopulatedBackupEnumerateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreEnumerateResponse{} + msg := &BackupEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8230,10 +8230,10 @@ func TestRestoreEnumerateResponseProto(t *testing.T) { } } -func TestRestoreEnumerateResponseMarshalTo(t *testing.T) { +func TestBackupEnumerateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreEnumerateResponse(popr, false) + p := NewPopulatedBackupEnumerateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8243,7 +8243,7 @@ func TestRestoreEnumerateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreEnumerateResponse{} + msg := &BackupEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8255,15 +8255,15 @@ func TestRestoreEnumerateResponseMarshalTo(t *testing.T) { } } -func TestRestoreInspectRequestProto(t *testing.T) { +func TestBackupInspectRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInspectRequest(popr, false) + p := NewPopulatedBackupInspectRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInspectRequest{} + msg := &BackupInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8286,10 +8286,10 @@ func TestRestoreInspectRequestProto(t *testing.T) { } } -func TestRestoreInspectRequestMarshalTo(t *testing.T) { +func TestBackupInspectRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInspectRequest(popr, false) + p := NewPopulatedBackupInspectRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8299,7 +8299,7 @@ func TestRestoreInspectRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInspectRequest{} + msg := &BackupInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8311,15 +8311,15 @@ func TestRestoreInspectRequestMarshalTo(t *testing.T) { } } -func TestRestoreInspectResponseProto(t *testing.T) { +func TestBackupInspectResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInspectResponse(popr, false) + p := NewPopulatedBackupInspectResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInspectResponse{} + msg := &BackupInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8342,10 +8342,10 @@ func TestRestoreInspectResponseProto(t *testing.T) { } } -func TestRestoreInspectResponseMarshalTo(t *testing.T) { +func TestBackupInspectResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInspectResponse(popr, false) + p := NewPopulatedBackupInspectResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8355,7 +8355,7 @@ func TestRestoreInspectResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInspectResponse{} + msg := &BackupInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8367,15 +8367,15 @@ func TestRestoreInspectResponseMarshalTo(t *testing.T) { } } -func TestRestoreDeleteRequestProto(t *testing.T) { +func TestBackupDeleteRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreDeleteRequest(popr, false) + p := NewPopulatedBackupDeleteRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreDeleteRequest{} + msg := &BackupDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8398,10 +8398,10 @@ func TestRestoreDeleteRequestProto(t *testing.T) { } } -func TestRestoreDeleteRequestMarshalTo(t *testing.T) { +func TestBackupDeleteRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreDeleteRequest(popr, false) + p := NewPopulatedBackupDeleteRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8411,7 +8411,7 @@ func TestRestoreDeleteRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreDeleteRequest{} + msg := &BackupDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8423,15 +8423,15 @@ func TestRestoreDeleteRequestMarshalTo(t *testing.T) { } } -func TestRestoreDeleteResponseProto(t *testing.T) { +func TestBackupDeleteResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreDeleteResponse(popr, false) + p := NewPopulatedBackupDeleteResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreDeleteResponse{} + msg := &BackupDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8454,10 +8454,10 @@ func TestRestoreDeleteResponseProto(t *testing.T) { } } -func TestRestoreDeleteResponseMarshalTo(t *testing.T) { +func TestBackupDeleteResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreDeleteResponse(popr, false) + p := NewPopulatedBackupDeleteResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8467,7 +8467,7 @@ func TestRestoreDeleteResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreDeleteResponse{} + msg := &BackupDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8479,15 +8479,15 @@ func TestRestoreDeleteResponseMarshalTo(t *testing.T) { } } -func TestOrganizationCreateRequestProto(t *testing.T) { +func TestBackupShareUpdateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationCreateRequest(popr, false) + p := NewPopulatedBackupShareUpdateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationCreateRequest{} + msg := &BackupShareUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8510,10 +8510,10 @@ func TestOrganizationCreateRequestProto(t *testing.T) { } } -func TestOrganizationCreateRequestMarshalTo(t *testing.T) { +func TestBackupShareUpdateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationCreateRequest(popr, false) + p := NewPopulatedBackupShareUpdateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8523,7 +8523,7 @@ func TestOrganizationCreateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationCreateRequest{} + msg := &BackupShareUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8535,15 +8535,15 @@ func TestOrganizationCreateRequestMarshalTo(t *testing.T) { } } -func TestOrganizationCreateResponseProto(t *testing.T) { +func TestBackupShareUpdateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationCreateResponse(popr, false) + p := NewPopulatedBackupShareUpdateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationCreateResponse{} + msg := &BackupShareUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8566,10 +8566,10 @@ func TestOrganizationCreateResponseProto(t *testing.T) { } } -func TestOrganizationCreateResponseMarshalTo(t *testing.T) { +func TestBackupShareUpdateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationCreateResponse(popr, false) + p := NewPopulatedBackupShareUpdateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8579,7 +8579,7 @@ func TestOrganizationCreateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationCreateResponse{} + msg := &BackupShareUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8591,15 +8591,15 @@ func TestOrganizationCreateResponseMarshalTo(t *testing.T) { } } -func TestOrganizationEnumerateRequestProto(t *testing.T) { +func TestRestoreCreateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationEnumerateRequest(popr, false) + p := NewPopulatedRestoreCreateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationEnumerateRequest{} + msg := &RestoreCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8622,10 +8622,10 @@ func TestOrganizationEnumerateRequestProto(t *testing.T) { } } -func TestOrganizationEnumerateRequestMarshalTo(t *testing.T) { +func TestRestoreCreateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationEnumerateRequest(popr, false) + p := NewPopulatedRestoreCreateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8635,7 +8635,7 @@ func TestOrganizationEnumerateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationEnumerateRequest{} + msg := &RestoreCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8647,15 +8647,15 @@ func TestOrganizationEnumerateRequestMarshalTo(t *testing.T) { } } -func TestOrganizationEnumerateResponseProto(t *testing.T) { +func TestRestoreCreateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationEnumerateResponse(popr, false) + p := NewPopulatedRestoreCreateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationEnumerateResponse{} + msg := &RestoreCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8678,10 +8678,10 @@ func TestOrganizationEnumerateResponseProto(t *testing.T) { } } -func TestOrganizationEnumerateResponseMarshalTo(t *testing.T) { +func TestRestoreCreateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationEnumerateResponse(popr, false) + p := NewPopulatedRestoreCreateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8691,7 +8691,7 @@ func TestOrganizationEnumerateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationEnumerateResponse{} + msg := &RestoreCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8703,15 +8703,15 @@ func TestOrganizationEnumerateResponseMarshalTo(t *testing.T) { } } -func TestOrganizationInspectRequestProto(t *testing.T) { +func TestRestoreUpdateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationInspectRequest(popr, false) + p := NewPopulatedRestoreUpdateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationInspectRequest{} + msg := &RestoreUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8734,10 +8734,10 @@ func TestOrganizationInspectRequestProto(t *testing.T) { } } -func TestOrganizationInspectRequestMarshalTo(t *testing.T) { +func TestRestoreUpdateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationInspectRequest(popr, false) + p := NewPopulatedRestoreUpdateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8747,7 +8747,7 @@ func TestOrganizationInspectRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationInspectRequest{} + msg := &RestoreUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8759,15 +8759,15 @@ func TestOrganizationInspectRequestMarshalTo(t *testing.T) { } } -func TestOrganizationInspectResponseProto(t *testing.T) { +func TestRestoreUpdateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationInspectResponse(popr, false) + p := NewPopulatedRestoreUpdateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationInspectResponse{} + msg := &RestoreUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8790,10 +8790,10 @@ func TestOrganizationInspectResponseProto(t *testing.T) { } } -func TestOrganizationInspectResponseMarshalTo(t *testing.T) { +func TestRestoreUpdateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationInspectResponse(popr, false) + p := NewPopulatedRestoreUpdateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8803,7 +8803,7 @@ func TestOrganizationInspectResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationInspectResponse{} + msg := &RestoreUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8815,15 +8815,15 @@ func TestOrganizationInspectResponseMarshalTo(t *testing.T) { } } -func TestOrganizationDeleteRequestProto(t *testing.T) { +func TestRestoreEnumerateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationDeleteRequest(popr, false) + p := NewPopulatedRestoreEnumerateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationDeleteRequest{} + msg := &RestoreEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8846,10 +8846,10 @@ func TestOrganizationDeleteRequestProto(t *testing.T) { } } -func TestOrganizationDeleteRequestMarshalTo(t *testing.T) { +func TestRestoreEnumerateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationDeleteRequest(popr, false) + p := NewPopulatedRestoreEnumerateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8859,7 +8859,7 @@ func TestOrganizationDeleteRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationDeleteRequest{} + msg := &RestoreEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8871,15 +8871,15 @@ func TestOrganizationDeleteRequestMarshalTo(t *testing.T) { } } -func TestOrganizationDeleteResponseProto(t *testing.T) { +func TestRestoreEnumerateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationDeleteResponse(popr, false) + p := NewPopulatedRestoreEnumerateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationDeleteResponse{} + msg := &RestoreEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8902,10 +8902,10 @@ func TestOrganizationDeleteResponseProto(t *testing.T) { } } -func TestOrganizationDeleteResponseMarshalTo(t *testing.T) { +func TestRestoreEnumerateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationDeleteResponse(popr, false) + p := NewPopulatedRestoreEnumerateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8915,7 +8915,7 @@ func TestOrganizationDeleteResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationDeleteResponse{} + msg := &RestoreEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8927,15 +8927,15 @@ func TestOrganizationDeleteResponseMarshalTo(t *testing.T) { } } -func TestRuleCreateRequestProto(t *testing.T) { +func TestRestoreInspectRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleCreateRequest(popr, false) + p := NewPopulatedRestoreInspectRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleCreateRequest{} + msg := &RestoreInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8958,10 +8958,10 @@ func TestRuleCreateRequestProto(t *testing.T) { } } -func TestRuleCreateRequestMarshalTo(t *testing.T) { +func TestRestoreInspectRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleCreateRequest(popr, false) + p := NewPopulatedRestoreInspectRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -8971,7 +8971,7 @@ func TestRuleCreateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleCreateRequest{} + msg := &RestoreInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -8983,15 +8983,15 @@ func TestRuleCreateRequestMarshalTo(t *testing.T) { } } -func TestRuleCreateResponseProto(t *testing.T) { +func TestRestoreInspectResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleCreateResponse(popr, false) + p := NewPopulatedRestoreInspectResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleCreateResponse{} + msg := &RestoreInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9014,10 +9014,10 @@ func TestRuleCreateResponseProto(t *testing.T) { } } -func TestRuleCreateResponseMarshalTo(t *testing.T) { +func TestRestoreInspectResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleCreateResponse(popr, false) + p := NewPopulatedRestoreInspectResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9027,7 +9027,7 @@ func TestRuleCreateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleCreateResponse{} + msg := &RestoreInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9039,15 +9039,15 @@ func TestRuleCreateResponseMarshalTo(t *testing.T) { } } -func TestRuleUpdateRequestProto(t *testing.T) { +func TestRestoreDeleteRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleUpdateRequest(popr, false) + p := NewPopulatedRestoreDeleteRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleUpdateRequest{} + msg := &RestoreDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9070,10 +9070,10 @@ func TestRuleUpdateRequestProto(t *testing.T) { } } -func TestRuleUpdateRequestMarshalTo(t *testing.T) { +func TestRestoreDeleteRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleUpdateRequest(popr, false) + p := NewPopulatedRestoreDeleteRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9083,7 +9083,7 @@ func TestRuleUpdateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleUpdateRequest{} + msg := &RestoreDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9095,15 +9095,15 @@ func TestRuleUpdateRequestMarshalTo(t *testing.T) { } } -func TestRuleUpdateResponseProto(t *testing.T) { +func TestRestoreDeleteResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleUpdateResponse(popr, false) + p := NewPopulatedRestoreDeleteResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleUpdateResponse{} + msg := &RestoreDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9126,10 +9126,10 @@ func TestRuleUpdateResponseProto(t *testing.T) { } } -func TestRuleUpdateResponseMarshalTo(t *testing.T) { +func TestRestoreDeleteResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleUpdateResponse(popr, false) + p := NewPopulatedRestoreDeleteResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9139,7 +9139,7 @@ func TestRuleUpdateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleUpdateResponse{} + msg := &RestoreDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9151,15 +9151,15 @@ func TestRuleUpdateResponseMarshalTo(t *testing.T) { } } -func TestRuleEnumerateRequestProto(t *testing.T) { +func TestOrganizationCreateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleEnumerateRequest(popr, false) + p := NewPopulatedOrganizationCreateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleEnumerateRequest{} + msg := &OrganizationCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9182,10 +9182,10 @@ func TestRuleEnumerateRequestProto(t *testing.T) { } } -func TestRuleEnumerateRequestMarshalTo(t *testing.T) { +func TestOrganizationCreateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleEnumerateRequest(popr, false) + p := NewPopulatedOrganizationCreateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9195,7 +9195,7 @@ func TestRuleEnumerateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleEnumerateRequest{} + msg := &OrganizationCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9207,15 +9207,15 @@ func TestRuleEnumerateRequestMarshalTo(t *testing.T) { } } -func TestRuleEnumerateResponseProto(t *testing.T) { +func TestOrganizationCreateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleEnumerateResponse(popr, false) + p := NewPopulatedOrganizationCreateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleEnumerateResponse{} + msg := &OrganizationCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9238,10 +9238,10 @@ func TestRuleEnumerateResponseProto(t *testing.T) { } } -func TestRuleEnumerateResponseMarshalTo(t *testing.T) { +func TestOrganizationCreateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleEnumerateResponse(popr, false) + p := NewPopulatedOrganizationCreateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9251,7 +9251,7 @@ func TestRuleEnumerateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleEnumerateResponse{} + msg := &OrganizationCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9263,15 +9263,15 @@ func TestRuleEnumerateResponseMarshalTo(t *testing.T) { } } -func TestRuleInspectRequestProto(t *testing.T) { +func TestOrganizationEnumerateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleInspectRequest(popr, false) + p := NewPopulatedOrganizationEnumerateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleInspectRequest{} + msg := &OrganizationEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9294,10 +9294,10 @@ func TestRuleInspectRequestProto(t *testing.T) { } } -func TestRuleInspectRequestMarshalTo(t *testing.T) { +func TestOrganizationEnumerateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleInspectRequest(popr, false) + p := NewPopulatedOrganizationEnumerateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9307,7 +9307,7 @@ func TestRuleInspectRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleInspectRequest{} + msg := &OrganizationEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9319,15 +9319,15 @@ func TestRuleInspectRequestMarshalTo(t *testing.T) { } } -func TestRuleInspectResponseProto(t *testing.T) { +func TestOrganizationEnumerateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleInspectResponse(popr, false) + p := NewPopulatedOrganizationEnumerateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleInspectResponse{} + msg := &OrganizationEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9350,10 +9350,10 @@ func TestRuleInspectResponseProto(t *testing.T) { } } -func TestRuleInspectResponseMarshalTo(t *testing.T) { +func TestOrganizationEnumerateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleInspectResponse(popr, false) + p := NewPopulatedOrganizationEnumerateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9363,7 +9363,7 @@ func TestRuleInspectResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleInspectResponse{} + msg := &OrganizationEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9375,15 +9375,15 @@ func TestRuleInspectResponseMarshalTo(t *testing.T) { } } -func TestRuleDeleteRequestProto(t *testing.T) { +func TestOrganizationInspectRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleDeleteRequest(popr, false) + p := NewPopulatedOrganizationInspectRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleDeleteRequest{} + msg := &OrganizationInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9406,10 +9406,10 @@ func TestRuleDeleteRequestProto(t *testing.T) { } } -func TestRuleDeleteRequestMarshalTo(t *testing.T) { +func TestOrganizationInspectRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleDeleteRequest(popr, false) + p := NewPopulatedOrganizationInspectRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9419,7 +9419,7 @@ func TestRuleDeleteRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleDeleteRequest{} + msg := &OrganizationInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9431,15 +9431,15 @@ func TestRuleDeleteRequestMarshalTo(t *testing.T) { } } -func TestRuleDeleteResponseProto(t *testing.T) { +func TestOrganizationInspectResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleDeleteResponse(popr, false) + p := NewPopulatedOrganizationInspectResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleDeleteResponse{} + msg := &OrganizationInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9462,10 +9462,10 @@ func TestRuleDeleteResponseProto(t *testing.T) { } } -func TestRuleDeleteResponseMarshalTo(t *testing.T) { +func TestOrganizationInspectResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleDeleteResponse(popr, false) + p := NewPopulatedOrganizationInspectResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9475,7 +9475,7 @@ func TestRuleDeleteResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleDeleteResponse{} + msg := &OrganizationInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9487,15 +9487,15 @@ func TestRuleDeleteResponseMarshalTo(t *testing.T) { } } -func TestRuleOwnershipUpdateRequestProto(t *testing.T) { +func TestOrganizationDeleteRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleOwnershipUpdateRequest(popr, false) + p := NewPopulatedOrganizationDeleteRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleOwnershipUpdateRequest{} + msg := &OrganizationDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9518,10 +9518,10 @@ func TestRuleOwnershipUpdateRequestProto(t *testing.T) { } } -func TestRuleOwnershipUpdateRequestMarshalTo(t *testing.T) { +func TestOrganizationDeleteRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleOwnershipUpdateRequest(popr, false) + p := NewPopulatedOrganizationDeleteRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9531,7 +9531,7 @@ func TestRuleOwnershipUpdateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleOwnershipUpdateRequest{} + msg := &OrganizationDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9543,15 +9543,15 @@ func TestRuleOwnershipUpdateRequestMarshalTo(t *testing.T) { } } -func TestRuleOwnershipUpdateResponseProto(t *testing.T) { +func TestOrganizationDeleteResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleOwnershipUpdateResponse(popr, false) + p := NewPopulatedOrganizationDeleteResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleOwnershipUpdateResponse{} + msg := &OrganizationDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9574,10 +9574,10 @@ func TestRuleOwnershipUpdateResponseProto(t *testing.T) { } } -func TestRuleOwnershipUpdateResponseMarshalTo(t *testing.T) { +func TestOrganizationDeleteResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleOwnershipUpdateResponse(popr, false) + p := NewPopulatedOrganizationDeleteResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9587,7 +9587,7 @@ func TestRuleOwnershipUpdateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleOwnershipUpdateResponse{} + msg := &OrganizationDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9599,15 +9599,15 @@ func TestRuleOwnershipUpdateResponseMarshalTo(t *testing.T) { } } -func TestVersionInfoProto(t *testing.T) { +func TestRuleCreateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedVersionInfo(popr, false) + p := NewPopulatedRuleCreateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &VersionInfo{} + msg := &RuleCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9630,10 +9630,10 @@ func TestVersionInfoProto(t *testing.T) { } } -func TestVersionInfoMarshalTo(t *testing.T) { +func TestRuleCreateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedVersionInfo(popr, false) + p := NewPopulatedRuleCreateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9643,7 +9643,7 @@ func TestVersionInfoMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &VersionInfo{} + msg := &RuleCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9655,15 +9655,15 @@ func TestVersionInfoMarshalTo(t *testing.T) { } } -func TestVersionGetRequestProto(t *testing.T) { +func TestRuleCreateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedVersionGetRequest(popr, false) + p := NewPopulatedRuleCreateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &VersionGetRequest{} + msg := &RuleCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9686,10 +9686,10 @@ func TestVersionGetRequestProto(t *testing.T) { } } -func TestVersionGetRequestMarshalTo(t *testing.T) { +func TestRuleCreateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedVersionGetRequest(popr, false) + p := NewPopulatedRuleCreateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9699,7 +9699,7 @@ func TestVersionGetRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &VersionGetRequest{} + msg := &RuleCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9711,15 +9711,15 @@ func TestVersionGetRequestMarshalTo(t *testing.T) { } } -func TestVersionGetResponseProto(t *testing.T) { +func TestRuleUpdateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedVersionGetResponse(popr, false) + p := NewPopulatedRuleUpdateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &VersionGetResponse{} + msg := &RuleUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9742,10 +9742,10 @@ func TestVersionGetResponseProto(t *testing.T) { } } -func TestVersionGetResponseMarshalTo(t *testing.T) { +func TestRuleUpdateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedVersionGetResponse(popr, false) + p := NewPopulatedRuleUpdateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9755,7 +9755,7 @@ func TestVersionGetResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &VersionGetResponse{} + msg := &RuleUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9767,15 +9767,15 @@ func TestVersionGetResponseMarshalTo(t *testing.T) { } } -func TestLicenseActivateRequestProto(t *testing.T) { +func TestRuleUpdateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseActivateRequest(popr, false) + p := NewPopulatedRuleUpdateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseActivateRequest{} + msg := &RuleUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9798,10 +9798,10 @@ func TestLicenseActivateRequestProto(t *testing.T) { } } -func TestLicenseActivateRequestMarshalTo(t *testing.T) { +func TestRuleUpdateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseActivateRequest(popr, false) + p := NewPopulatedRuleUpdateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9811,7 +9811,7 @@ func TestLicenseActivateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseActivateRequest{} + msg := &RuleUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9823,15 +9823,15 @@ func TestLicenseActivateRequestMarshalTo(t *testing.T) { } } -func TestLicenseActivateResponseProto(t *testing.T) { +func TestRuleEnumerateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseActivateResponse(popr, false) + p := NewPopulatedRuleEnumerateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseActivateResponse{} + msg := &RuleEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9854,10 +9854,10 @@ func TestLicenseActivateResponseProto(t *testing.T) { } } -func TestLicenseActivateResponseMarshalTo(t *testing.T) { +func TestRuleEnumerateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseActivateResponse(popr, false) + p := NewPopulatedRuleEnumerateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9867,7 +9867,7 @@ func TestLicenseActivateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseActivateResponse{} + msg := &RuleEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9879,15 +9879,15 @@ func TestLicenseActivateResponseMarshalTo(t *testing.T) { } } -func TestLicenseUpdateRequestProto(t *testing.T) { +func TestRuleEnumerateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUpdateRequest(popr, false) + p := NewPopulatedRuleEnumerateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUpdateRequest{} + msg := &RuleEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9910,10 +9910,10 @@ func TestLicenseUpdateRequestProto(t *testing.T) { } } -func TestLicenseUpdateRequestMarshalTo(t *testing.T) { +func TestRuleEnumerateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUpdateRequest(popr, false) + p := NewPopulatedRuleEnumerateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9923,7 +9923,7 @@ func TestLicenseUpdateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUpdateRequest{} + msg := &RuleEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9935,15 +9935,15 @@ func TestLicenseUpdateRequestMarshalTo(t *testing.T) { } } -func TestLicenseUpdateResponseProto(t *testing.T) { +func TestRuleInspectRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUpdateResponse(popr, false) + p := NewPopulatedRuleInspectRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUpdateResponse{} + msg := &RuleInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9966,10 +9966,10 @@ func TestLicenseUpdateResponseProto(t *testing.T) { } } -func TestLicenseUpdateResponseMarshalTo(t *testing.T) { +func TestRuleInspectRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUpdateResponse(popr, false) + p := NewPopulatedRuleInspectRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -9979,7 +9979,7 @@ func TestLicenseUpdateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUpdateResponse{} + msg := &RuleInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -9991,15 +9991,15 @@ func TestLicenseUpdateResponseMarshalTo(t *testing.T) { } } -func TestLicenseInspectRequestProto(t *testing.T) { +func TestRuleInspectResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseInspectRequest(popr, false) + p := NewPopulatedRuleInspectResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseInspectRequest{} + msg := &RuleInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10022,10 +10022,10 @@ func TestLicenseInspectRequestProto(t *testing.T) { } } -func TestLicenseInspectRequestMarshalTo(t *testing.T) { +func TestRuleInspectResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseInspectRequest(popr, false) + p := NewPopulatedRuleInspectResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10035,7 +10035,7 @@ func TestLicenseInspectRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseInspectRequest{} + msg := &RuleInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10047,15 +10047,15 @@ func TestLicenseInspectRequestMarshalTo(t *testing.T) { } } -func TestLicenseInspectResponseProto(t *testing.T) { +func TestRuleDeleteRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseInspectResponse(popr, false) + p := NewPopulatedRuleDeleteRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseInspectResponse{} + msg := &RuleDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10078,10 +10078,10 @@ func TestLicenseInspectResponseProto(t *testing.T) { } } -func TestLicenseInspectResponseMarshalTo(t *testing.T) { +func TestRuleDeleteRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseInspectResponse(popr, false) + p := NewPopulatedRuleDeleteRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10091,7 +10091,7 @@ func TestLicenseInspectResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseInspectResponse{} + msg := &RuleDeleteRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10103,15 +10103,15 @@ func TestLicenseInspectResponseMarshalTo(t *testing.T) { } } -func TestLicenseResponseInfoProto(t *testing.T) { +func TestRuleDeleteResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo(popr, false) + p := NewPopulatedRuleDeleteResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo{} + msg := &RuleDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10134,10 +10134,10 @@ func TestLicenseResponseInfoProto(t *testing.T) { } } -func TestLicenseResponseInfoMarshalTo(t *testing.T) { +func TestRuleDeleteResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo(popr, false) + p := NewPopulatedRuleDeleteResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10147,7 +10147,7 @@ func TestLicenseResponseInfoMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo{} + msg := &RuleDeleteResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10159,15 +10159,15 @@ func TestLicenseResponseInfoMarshalTo(t *testing.T) { } } -func TestLicenseResponseInfo_FeatureInfoProto(t *testing.T) { +func TestRuleOwnershipUpdateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo_FeatureInfo(popr, false) + p := NewPopulatedRuleOwnershipUpdateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo_FeatureInfo{} + msg := &RuleOwnershipUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10190,10 +10190,10 @@ func TestLicenseResponseInfo_FeatureInfoProto(t *testing.T) { } } -func TestLicenseResponseInfo_FeatureInfoMarshalTo(t *testing.T) { +func TestRuleOwnershipUpdateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo_FeatureInfo(popr, false) + p := NewPopulatedRuleOwnershipUpdateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10203,7 +10203,7 @@ func TestLicenseResponseInfo_FeatureInfoMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo_FeatureInfo{} + msg := &RuleOwnershipUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10215,15 +10215,15 @@ func TestLicenseResponseInfo_FeatureInfoMarshalTo(t *testing.T) { } } -func TestLicenseResponseInfo_EntitlementInfoProto(t *testing.T) { +func TestRuleOwnershipUpdateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo_EntitlementInfo(popr, false) + p := NewPopulatedRuleOwnershipUpdateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo_EntitlementInfo{} + msg := &RuleOwnershipUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10246,10 +10246,10 @@ func TestLicenseResponseInfo_EntitlementInfoProto(t *testing.T) { } } -func TestLicenseResponseInfo_EntitlementInfoMarshalTo(t *testing.T) { +func TestRuleOwnershipUpdateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo_EntitlementInfo(popr, false) + p := NewPopulatedRuleOwnershipUpdateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10259,7 +10259,7 @@ func TestLicenseResponseInfo_EntitlementInfoMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo_EntitlementInfo{} + msg := &RuleOwnershipUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10271,15 +10271,15 @@ func TestLicenseResponseInfo_EntitlementInfoMarshalTo(t *testing.T) { } } -func TestLicenseResponseInfo_StatusProto(t *testing.T) { +func TestVersionInfoProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo_Status(popr, false) + p := NewPopulatedVersionInfo(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo_Status{} + msg := &VersionInfo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10302,10 +10302,10 @@ func TestLicenseResponseInfo_StatusProto(t *testing.T) { } } -func TestLicenseResponseInfo_StatusMarshalTo(t *testing.T) { +func TestVersionInfoMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo_Status(popr, false) + p := NewPopulatedVersionInfo(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10315,7 +10315,7 @@ func TestLicenseResponseInfo_StatusMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo_Status{} + msg := &VersionInfo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10327,15 +10327,15 @@ func TestLicenseResponseInfo_StatusMarshalTo(t *testing.T) { } } -func TestLicenseUsageAirgappedObjectProto(t *testing.T) { +func TestVersionGetRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUsageAirgappedObject(popr, false) + p := NewPopulatedVersionGetRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUsageAirgappedObject{} + msg := &VersionGetRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10358,10 +10358,10 @@ func TestLicenseUsageAirgappedObjectProto(t *testing.T) { } } -func TestLicenseUsageAirgappedObjectMarshalTo(t *testing.T) { +func TestVersionGetRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUsageAirgappedObject(popr, false) + p := NewPopulatedVersionGetRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10371,7 +10371,7 @@ func TestLicenseUsageAirgappedObjectMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUsageAirgappedObject{} + msg := &VersionGetRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10383,15 +10383,15 @@ func TestLicenseUsageAirgappedObjectMarshalTo(t *testing.T) { } } -func TestLicenseUsageAirgappedRequestProto(t *testing.T) { +func TestVersionGetResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUsageAirgappedRequest(popr, false) + p := NewPopulatedVersionGetResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUsageAirgappedRequest{} + msg := &VersionGetResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10414,10 +10414,10 @@ func TestLicenseUsageAirgappedRequestProto(t *testing.T) { } } -func TestLicenseUsageAirgappedRequestMarshalTo(t *testing.T) { +func TestVersionGetResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUsageAirgappedRequest(popr, false) + p := NewPopulatedVersionGetResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10427,7 +10427,7 @@ func TestLicenseUsageAirgappedRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUsageAirgappedRequest{} + msg := &VersionGetResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10439,15 +10439,15 @@ func TestLicenseUsageAirgappedRequestMarshalTo(t *testing.T) { } } -func TestLicenseUsageAirgappedResponseProto(t *testing.T) { +func TestLicenseActivateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUsageAirgappedResponse(popr, false) + p := NewPopulatedLicenseActivateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUsageAirgappedResponse{} + msg := &LicenseActivateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10470,10 +10470,10 @@ func TestLicenseUsageAirgappedResponseProto(t *testing.T) { } } -func TestLicenseUsageAirgappedResponseMarshalTo(t *testing.T) { +func TestLicenseActivateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUsageAirgappedResponse(popr, false) + p := NewPopulatedLicenseActivateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10483,7 +10483,7 @@ func TestLicenseUsageAirgappedResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUsageAirgappedResponse{} + msg := &LicenseActivateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10495,15 +10495,15 @@ func TestLicenseUsageAirgappedResponseMarshalTo(t *testing.T) { } } -func TestManagedClusterEnumerateRequestProto(t *testing.T) { +func TestLicenseActivateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest(popr, false) + p := NewPopulatedLicenseActivateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest{} + msg := &LicenseActivateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10526,10 +10526,10 @@ func TestManagedClusterEnumerateRequestProto(t *testing.T) { } } -func TestManagedClusterEnumerateRequestMarshalTo(t *testing.T) { +func TestLicenseActivateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest(popr, false) + p := NewPopulatedLicenseActivateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10539,7 +10539,7 @@ func TestManagedClusterEnumerateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest{} + msg := &LicenseActivateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10551,15 +10551,15 @@ func TestManagedClusterEnumerateRequestMarshalTo(t *testing.T) { } } -func TestManagedClusterEnumerateRequest_AWSConfigProto(t *testing.T) { +func TestLicenseUpdateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest_AWSConfig(popr, false) + p := NewPopulatedLicenseUpdateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest_AWSConfig{} + msg := &LicenseUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10582,10 +10582,10 @@ func TestManagedClusterEnumerateRequest_AWSConfigProto(t *testing.T) { } } -func TestManagedClusterEnumerateRequest_AWSConfigMarshalTo(t *testing.T) { +func TestLicenseUpdateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest_AWSConfig(popr, false) + p := NewPopulatedLicenseUpdateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10595,7 +10595,7 @@ func TestManagedClusterEnumerateRequest_AWSConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest_AWSConfig{} + msg := &LicenseUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10607,15 +10607,15 @@ func TestManagedClusterEnumerateRequest_AWSConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterEnumerateRequest_GoogleConfigProto(t *testing.T) { +func TestLicenseUpdateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest_GoogleConfig(popr, false) + p := NewPopulatedLicenseUpdateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest_GoogleConfig{} + msg := &LicenseUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10638,10 +10638,10 @@ func TestManagedClusterEnumerateRequest_GoogleConfigProto(t *testing.T) { } } -func TestManagedClusterEnumerateRequest_GoogleConfigMarshalTo(t *testing.T) { +func TestLicenseUpdateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest_GoogleConfig(popr, false) + p := NewPopulatedLicenseUpdateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10651,7 +10651,7 @@ func TestManagedClusterEnumerateRequest_GoogleConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest_GoogleConfig{} + msg := &LicenseUpdateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10663,15 +10663,15 @@ func TestManagedClusterEnumerateRequest_GoogleConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterEnumerateRequest_AzureConfigProto(t *testing.T) { +func TestLicenseInspectRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest_AzureConfig(popr, false) + p := NewPopulatedLicenseInspectRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest_AzureConfig{} + msg := &LicenseInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10694,10 +10694,10 @@ func TestManagedClusterEnumerateRequest_AzureConfigProto(t *testing.T) { } } -func TestManagedClusterEnumerateRequest_AzureConfigMarshalTo(t *testing.T) { +func TestLicenseInspectRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest_AzureConfig(popr, false) + p := NewPopulatedLicenseInspectRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10707,7 +10707,7 @@ func TestManagedClusterEnumerateRequest_AzureConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest_AzureConfig{} + msg := &LicenseInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10719,15 +10719,15 @@ func TestManagedClusterEnumerateRequest_AzureConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterObjectProto(t *testing.T) { +func TestLicenseInspectResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterObject(popr, false) + p := NewPopulatedLicenseInspectResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterObject{} + msg := &LicenseInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10750,10 +10750,10 @@ func TestManagedClusterObjectProto(t *testing.T) { } } -func TestManagedClusterObjectMarshalTo(t *testing.T) { +func TestLicenseInspectResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterObject(popr, false) + p := NewPopulatedLicenseInspectResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10763,7 +10763,7 @@ func TestManagedClusterObjectMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterObject{} + msg := &LicenseInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10775,15 +10775,15 @@ func TestManagedClusterObjectMarshalTo(t *testing.T) { } } -func TestManagedClusterEnumerateResponseProto(t *testing.T) { +func TestLicenseResponseInfoProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse(popr, false) + p := NewPopulatedLicenseResponseInfo(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse{} + msg := &LicenseResponseInfo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10806,10 +10806,10 @@ func TestManagedClusterEnumerateResponseProto(t *testing.T) { } } -func TestManagedClusterEnumerateResponseMarshalTo(t *testing.T) { +func TestLicenseResponseInfoMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse(popr, false) + p := NewPopulatedLicenseResponseInfo(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10819,7 +10819,7 @@ func TestManagedClusterEnumerateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse{} + msg := &LicenseResponseInfo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10831,15 +10831,15 @@ func TestManagedClusterEnumerateResponseMarshalTo(t *testing.T) { } } -func TestManagedClusterEnumerateResponse_AWSConfigProto(t *testing.T) { +func TestLicenseResponseInfo_FeatureInfoProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse_AWSConfig(popr, false) + p := NewPopulatedLicenseResponseInfo_FeatureInfo(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse_AWSConfig{} + msg := &LicenseResponseInfo_FeatureInfo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10862,10 +10862,10 @@ func TestManagedClusterEnumerateResponse_AWSConfigProto(t *testing.T) { } } -func TestManagedClusterEnumerateResponse_AWSConfigMarshalTo(t *testing.T) { +func TestLicenseResponseInfo_FeatureInfoMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse_AWSConfig(popr, false) + p := NewPopulatedLicenseResponseInfo_FeatureInfo(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10875,7 +10875,7 @@ func TestManagedClusterEnumerateResponse_AWSConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse_AWSConfig{} + msg := &LicenseResponseInfo_FeatureInfo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10887,15 +10887,15 @@ func TestManagedClusterEnumerateResponse_AWSConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterEnumerateResponse_GoogleConfigProto(t *testing.T) { +func TestLicenseResponseInfo_EntitlementInfoProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse_GoogleConfig(popr, false) + p := NewPopulatedLicenseResponseInfo_EntitlementInfo(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse_GoogleConfig{} + msg := &LicenseResponseInfo_EntitlementInfo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10918,10 +10918,10 @@ func TestManagedClusterEnumerateResponse_GoogleConfigProto(t *testing.T) { } } -func TestManagedClusterEnumerateResponse_GoogleConfigMarshalTo(t *testing.T) { +func TestLicenseResponseInfo_EntitlementInfoMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse_GoogleConfig(popr, false) + p := NewPopulatedLicenseResponseInfo_EntitlementInfo(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10931,7 +10931,7 @@ func TestManagedClusterEnumerateResponse_GoogleConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse_GoogleConfig{} + msg := &LicenseResponseInfo_EntitlementInfo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10943,15 +10943,15 @@ func TestManagedClusterEnumerateResponse_GoogleConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterEnumerateResponse_AzureConfigProto(t *testing.T) { +func TestLicenseResponseInfo_StatusProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse_AzureConfig(popr, false) + p := NewPopulatedLicenseResponseInfo_Status(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse_AzureConfig{} + msg := &LicenseResponseInfo_Status{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10974,10 +10974,10 @@ func TestManagedClusterEnumerateResponse_AzureConfigProto(t *testing.T) { } } -func TestManagedClusterEnumerateResponse_AzureConfigMarshalTo(t *testing.T) { +func TestLicenseResponseInfo_StatusMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse_AzureConfig(popr, false) + p := NewPopulatedLicenseResponseInfo_Status(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -10987,7 +10987,7 @@ func TestManagedClusterEnumerateResponse_AzureConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse_AzureConfig{} + msg := &LicenseResponseInfo_Status{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -10999,15 +10999,15 @@ func TestManagedClusterEnumerateResponse_AzureConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterInspectRequestProto(t *testing.T) { +func TestLicenseUsageAirgappedObjectProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest(popr, false) + p := NewPopulatedLicenseUsageAirgappedObject(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest{} + msg := &LicenseUsageAirgappedObject{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11030,10 +11030,10 @@ func TestManagedClusterInspectRequestProto(t *testing.T) { } } -func TestManagedClusterInspectRequestMarshalTo(t *testing.T) { +func TestLicenseUsageAirgappedObjectMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest(popr, false) + p := NewPopulatedLicenseUsageAirgappedObject(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11043,7 +11043,7 @@ func TestManagedClusterInspectRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest{} + msg := &LicenseUsageAirgappedObject{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11055,15 +11055,15 @@ func TestManagedClusterInspectRequestMarshalTo(t *testing.T) { } } -func TestManagedClusterInspectRequest_AWSConfigProto(t *testing.T) { +func TestLicenseUsageAirgappedRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest_AWSConfig(popr, false) + p := NewPopulatedLicenseUsageAirgappedRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest_AWSConfig{} + msg := &LicenseUsageAirgappedRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11086,10 +11086,10 @@ func TestManagedClusterInspectRequest_AWSConfigProto(t *testing.T) { } } -func TestManagedClusterInspectRequest_AWSConfigMarshalTo(t *testing.T) { +func TestLicenseUsageAirgappedRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest_AWSConfig(popr, false) + p := NewPopulatedLicenseUsageAirgappedRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11099,7 +11099,7 @@ func TestManagedClusterInspectRequest_AWSConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest_AWSConfig{} + msg := &LicenseUsageAirgappedRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11111,15 +11111,15 @@ func TestManagedClusterInspectRequest_AWSConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterInspectRequest_GoogleConfigProto(t *testing.T) { +func TestLicenseUsageAirgappedResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest_GoogleConfig(popr, false) + p := NewPopulatedLicenseUsageAirgappedResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest_GoogleConfig{} + msg := &LicenseUsageAirgappedResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11142,10 +11142,10 @@ func TestManagedClusterInspectRequest_GoogleConfigProto(t *testing.T) { } } -func TestManagedClusterInspectRequest_GoogleConfigMarshalTo(t *testing.T) { +func TestLicenseUsageAirgappedResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest_GoogleConfig(popr, false) + p := NewPopulatedLicenseUsageAirgappedResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11155,7 +11155,7 @@ func TestManagedClusterInspectRequest_GoogleConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest_GoogleConfig{} + msg := &LicenseUsageAirgappedResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11167,15 +11167,15 @@ func TestManagedClusterInspectRequest_GoogleConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterInspectRequest_AzureConfigProto(t *testing.T) { +func TestManagedClusterEnumerateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest_AzureConfig(popr, false) + p := NewPopulatedManagedClusterEnumerateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest_AzureConfig{} + msg := &ManagedClusterEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11198,10 +11198,10 @@ func TestManagedClusterInspectRequest_AzureConfigProto(t *testing.T) { } } -func TestManagedClusterInspectRequest_AzureConfigMarshalTo(t *testing.T) { +func TestManagedClusterEnumerateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest_AzureConfig(popr, false) + p := NewPopulatedManagedClusterEnumerateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11211,7 +11211,7 @@ func TestManagedClusterInspectRequest_AzureConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest_AzureConfig{} + msg := &ManagedClusterEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11223,15 +11223,15 @@ func TestManagedClusterInspectRequest_AzureConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterInspectResponseProto(t *testing.T) { +func TestManagedClusterEnumerateRequest_AWSConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectResponse(popr, false) + p := NewPopulatedManagedClusterEnumerateRequest_AWSConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectResponse{} + msg := &ManagedClusterEnumerateRequest_AWSConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11254,10 +11254,10 @@ func TestManagedClusterInspectResponseProto(t *testing.T) { } } -func TestManagedClusterInspectResponseMarshalTo(t *testing.T) { +func TestManagedClusterEnumerateRequest_AWSConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectResponse(popr, false) + p := NewPopulatedManagedClusterEnumerateRequest_AWSConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11267,7 +11267,7 @@ func TestManagedClusterInspectResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectResponse{} + msg := &ManagedClusterEnumerateRequest_AWSConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11279,15 +11279,15 @@ func TestManagedClusterInspectResponseMarshalTo(t *testing.T) { } } -func TestManagedClusterBulkAddRequestProto(t *testing.T) { +func TestManagedClusterEnumerateRequest_GoogleConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest(popr, false) + p := NewPopulatedManagedClusterEnumerateRequest_GoogleConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest{} + msg := &ManagedClusterEnumerateRequest_GoogleConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11310,10 +11310,10 @@ func TestManagedClusterBulkAddRequestProto(t *testing.T) { } } -func TestManagedClusterBulkAddRequestMarshalTo(t *testing.T) { +func TestManagedClusterEnumerateRequest_GoogleConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest(popr, false) + p := NewPopulatedManagedClusterEnumerateRequest_GoogleConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11323,7 +11323,7 @@ func TestManagedClusterBulkAddRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest{} + msg := &ManagedClusterEnumerateRequest_GoogleConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11335,15 +11335,15 @@ func TestManagedClusterBulkAddRequestMarshalTo(t *testing.T) { } } -func TestManagedClusterBulkAddRequest_AWSConfigProto(t *testing.T) { +func TestManagedClusterEnumerateRequest_AzureConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest_AWSConfig(popr, false) + p := NewPopulatedManagedClusterEnumerateRequest_AzureConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest_AWSConfig{} + msg := &ManagedClusterEnumerateRequest_AzureConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11366,10 +11366,10 @@ func TestManagedClusterBulkAddRequest_AWSConfigProto(t *testing.T) { } } -func TestManagedClusterBulkAddRequest_AWSConfigMarshalTo(t *testing.T) { +func TestManagedClusterEnumerateRequest_AzureConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest_AWSConfig(popr, false) + p := NewPopulatedManagedClusterEnumerateRequest_AzureConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11379,7 +11379,7 @@ func TestManagedClusterBulkAddRequest_AWSConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest_AWSConfig{} + msg := &ManagedClusterEnumerateRequest_AzureConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11391,15 +11391,15 @@ func TestManagedClusterBulkAddRequest_AWSConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterBulkAddRequest_GoogleConfigProto(t *testing.T) { +func TestManagedClusterObjectProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest_GoogleConfig(popr, false) + p := NewPopulatedManagedClusterObject(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest_GoogleConfig{} + msg := &ManagedClusterObject{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11422,10 +11422,10 @@ func TestManagedClusterBulkAddRequest_GoogleConfigProto(t *testing.T) { } } -func TestManagedClusterBulkAddRequest_GoogleConfigMarshalTo(t *testing.T) { +func TestManagedClusterObjectMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest_GoogleConfig(popr, false) + p := NewPopulatedManagedClusterObject(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11435,7 +11435,7 @@ func TestManagedClusterBulkAddRequest_GoogleConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest_GoogleConfig{} + msg := &ManagedClusterObject{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11447,15 +11447,15 @@ func TestManagedClusterBulkAddRequest_GoogleConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterBulkAddRequest_AzureConfigProto(t *testing.T) { +func TestManagedClusterEnumerateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest_AzureConfig(popr, false) + p := NewPopulatedManagedClusterEnumerateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest_AzureConfig{} + msg := &ManagedClusterEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11478,10 +11478,10 @@ func TestManagedClusterBulkAddRequest_AzureConfigProto(t *testing.T) { } } -func TestManagedClusterBulkAddRequest_AzureConfigMarshalTo(t *testing.T) { +func TestManagedClusterEnumerateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest_AzureConfig(popr, false) + p := NewPopulatedManagedClusterEnumerateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11491,7 +11491,7 @@ func TestManagedClusterBulkAddRequest_AzureConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest_AzureConfig{} + msg := &ManagedClusterEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11503,15 +11503,15 @@ func TestManagedClusterBulkAddRequest_AzureConfigMarshalTo(t *testing.T) { } } -func TestManagedClusterBulkAddResponseProto(t *testing.T) { +func TestManagedClusterEnumerateResponse_AWSConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddResponse(popr, false) + p := NewPopulatedManagedClusterEnumerateResponse_AWSConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddResponse{} + msg := &ManagedClusterEnumerateResponse_AWSConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11534,10 +11534,10 @@ func TestManagedClusterBulkAddResponseProto(t *testing.T) { } } -func TestManagedClusterBulkAddResponseMarshalTo(t *testing.T) { +func TestManagedClusterEnumerateResponse_AWSConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddResponse(popr, false) + p := NewPopulatedManagedClusterEnumerateResponse_AWSConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11547,7 +11547,7 @@ func TestManagedClusterBulkAddResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddResponse{} + msg := &ManagedClusterEnumerateResponse_AWSConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11559,15 +11559,15 @@ func TestManagedClusterBulkAddResponseMarshalTo(t *testing.T) { } } -func TestActivityEnumerateRequestProto(t *testing.T) { +func TestManagedClusterEnumerateResponse_GoogleConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityEnumerateRequest(popr, false) + p := NewPopulatedManagedClusterEnumerateResponse_GoogleConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityEnumerateRequest{} + msg := &ManagedClusterEnumerateResponse_GoogleConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11590,10 +11590,10 @@ func TestActivityEnumerateRequestProto(t *testing.T) { } } -func TestActivityEnumerateRequestMarshalTo(t *testing.T) { +func TestManagedClusterEnumerateResponse_GoogleConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityEnumerateRequest(popr, false) + p := NewPopulatedManagedClusterEnumerateResponse_GoogleConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11603,7 +11603,7 @@ func TestActivityEnumerateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityEnumerateRequest{} + msg := &ManagedClusterEnumerateResponse_GoogleConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11615,15 +11615,15 @@ func TestActivityEnumerateRequestMarshalTo(t *testing.T) { } } -func TestActivityEnumerateResponseProto(t *testing.T) { +func TestManagedClusterEnumerateResponse_AzureConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityEnumerateResponse(popr, false) + p := NewPopulatedManagedClusterEnumerateResponse_AzureConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityEnumerateResponse{} + msg := &ManagedClusterEnumerateResponse_AzureConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11646,10 +11646,10 @@ func TestActivityEnumerateResponseProto(t *testing.T) { } } -func TestActivityEnumerateResponseMarshalTo(t *testing.T) { +func TestManagedClusterEnumerateResponse_AzureConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityEnumerateResponse(popr, false) + p := NewPopulatedManagedClusterEnumerateResponse_AzureConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11659,7 +11659,7 @@ func TestActivityEnumerateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityEnumerateResponse{} + msg := &ManagedClusterEnumerateResponse_AzureConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11671,15 +11671,15 @@ func TestActivityEnumerateResponseMarshalTo(t *testing.T) { } } -func TestActivityEnumerateResponse_DataProto(t *testing.T) { +func TestManagedClusterInspectRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityEnumerateResponse_Data(popr, false) + p := NewPopulatedManagedClusterInspectRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityEnumerateResponse_Data{} + msg := &ManagedClusterInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11702,10 +11702,10 @@ func TestActivityEnumerateResponse_DataProto(t *testing.T) { } } -func TestActivityEnumerateResponse_DataMarshalTo(t *testing.T) { +func TestManagedClusterInspectRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityEnumerateResponse_Data(popr, false) + p := NewPopulatedManagedClusterInspectRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11715,7 +11715,7 @@ func TestActivityEnumerateResponse_DataMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityEnumerateResponse_Data{} + msg := &ManagedClusterInspectRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11727,15 +11727,15 @@ func TestActivityEnumerateResponse_DataMarshalTo(t *testing.T) { } } -func TestRoleObjectProto(t *testing.T) { +func TestManagedClusterInspectRequest_AWSConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleObject(popr, false) + p := NewPopulatedManagedClusterInspectRequest_AWSConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleObject{} + msg := &ManagedClusterInspectRequest_AWSConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11758,10 +11758,10 @@ func TestRoleObjectProto(t *testing.T) { } } -func TestRoleObjectMarshalTo(t *testing.T) { +func TestManagedClusterInspectRequest_AWSConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleObject(popr, false) + p := NewPopulatedManagedClusterInspectRequest_AWSConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11771,7 +11771,7 @@ func TestRoleObjectMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleObject{} + msg := &ManagedClusterInspectRequest_AWSConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11783,15 +11783,15 @@ func TestRoleObjectMarshalTo(t *testing.T) { } } -func TestRoleConfigProto(t *testing.T) { +func TestManagedClusterInspectRequest_GoogleConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleConfig(popr, false) + p := NewPopulatedManagedClusterInspectRequest_GoogleConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleConfig{} + msg := &ManagedClusterInspectRequest_GoogleConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11814,10 +11814,10 @@ func TestRoleConfigProto(t *testing.T) { } } -func TestRoleConfigMarshalTo(t *testing.T) { +func TestManagedClusterInspectRequest_GoogleConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleConfig(popr, false) + p := NewPopulatedManagedClusterInspectRequest_GoogleConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11827,7 +11827,7 @@ func TestRoleConfigMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleConfig{} + msg := &ManagedClusterInspectRequest_GoogleConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11839,15 +11839,15 @@ func TestRoleConfigMarshalTo(t *testing.T) { } } -func TestRoleCreateRequestProto(t *testing.T) { +func TestManagedClusterInspectRequest_AzureConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleCreateRequest(popr, false) + p := NewPopulatedManagedClusterInspectRequest_AzureConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleCreateRequest{} + msg := &ManagedClusterInspectRequest_AzureConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11870,10 +11870,10 @@ func TestRoleCreateRequestProto(t *testing.T) { } } -func TestRoleCreateRequestMarshalTo(t *testing.T) { +func TestManagedClusterInspectRequest_AzureConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleCreateRequest(popr, false) + p := NewPopulatedManagedClusterInspectRequest_AzureConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11883,7 +11883,7 @@ func TestRoleCreateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleCreateRequest{} + msg := &ManagedClusterInspectRequest_AzureConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11895,15 +11895,15 @@ func TestRoleCreateRequestMarshalTo(t *testing.T) { } } -func TestRoleCreateResponseProto(t *testing.T) { +func TestManagedClusterInspectResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleCreateResponse(popr, false) + p := NewPopulatedManagedClusterInspectResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleCreateResponse{} + msg := &ManagedClusterInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11926,10 +11926,10 @@ func TestRoleCreateResponseProto(t *testing.T) { } } -func TestRoleCreateResponseMarshalTo(t *testing.T) { +func TestManagedClusterInspectResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleCreateResponse(popr, false) + p := NewPopulatedManagedClusterInspectResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11939,7 +11939,7 @@ func TestRoleCreateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleCreateResponse{} + msg := &ManagedClusterInspectResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11951,15 +11951,15 @@ func TestRoleCreateResponseMarshalTo(t *testing.T) { } } -func TestRoleUpdateRequestProto(t *testing.T) { +func TestManagedClusterBulkAddRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleUpdateRequest(popr, false) + p := NewPopulatedManagedClusterBulkAddRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleUpdateRequest{} + msg := &ManagedClusterBulkAddRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -11982,10 +11982,10 @@ func TestRoleUpdateRequestProto(t *testing.T) { } } -func TestRoleUpdateRequestMarshalTo(t *testing.T) { +func TestManagedClusterBulkAddRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleUpdateRequest(popr, false) + p := NewPopulatedManagedClusterBulkAddRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -11995,7 +11995,7 @@ func TestRoleUpdateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleUpdateRequest{} + msg := &ManagedClusterBulkAddRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12007,15 +12007,15 @@ func TestRoleUpdateRequestMarshalTo(t *testing.T) { } } -func TestRoleUpdateResponseProto(t *testing.T) { +func TestManagedClusterBulkAddRequest_AWSConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleUpdateResponse(popr, false) + p := NewPopulatedManagedClusterBulkAddRequest_AWSConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleUpdateResponse{} + msg := &ManagedClusterBulkAddRequest_AWSConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12038,10 +12038,10 @@ func TestRoleUpdateResponseProto(t *testing.T) { } } -func TestRoleUpdateResponseMarshalTo(t *testing.T) { +func TestManagedClusterBulkAddRequest_AWSConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleUpdateResponse(popr, false) + p := NewPopulatedManagedClusterBulkAddRequest_AWSConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12051,7 +12051,7 @@ func TestRoleUpdateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleUpdateResponse{} + msg := &ManagedClusterBulkAddRequest_AWSConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12063,15 +12063,15 @@ func TestRoleUpdateResponseMarshalTo(t *testing.T) { } } -func TestRoleEnumerateRequestProto(t *testing.T) { +func TestManagedClusterBulkAddRequest_GoogleConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleEnumerateRequest(popr, false) + p := NewPopulatedManagedClusterBulkAddRequest_GoogleConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleEnumerateRequest{} + msg := &ManagedClusterBulkAddRequest_GoogleConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12094,10 +12094,10 @@ func TestRoleEnumerateRequestProto(t *testing.T) { } } -func TestRoleEnumerateRequestMarshalTo(t *testing.T) { +func TestManagedClusterBulkAddRequest_GoogleConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleEnumerateRequest(popr, false) + p := NewPopulatedManagedClusterBulkAddRequest_GoogleConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12107,7 +12107,7 @@ func TestRoleEnumerateRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleEnumerateRequest{} + msg := &ManagedClusterBulkAddRequest_GoogleConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12119,15 +12119,15 @@ func TestRoleEnumerateRequestMarshalTo(t *testing.T) { } } -func TestRoleEnumerateResponseProto(t *testing.T) { +func TestManagedClusterBulkAddRequest_AzureConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleEnumerateResponse(popr, false) + p := NewPopulatedManagedClusterBulkAddRequest_AzureConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleEnumerateResponse{} + msg := &ManagedClusterBulkAddRequest_AzureConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12150,10 +12150,10 @@ func TestRoleEnumerateResponseProto(t *testing.T) { } } -func TestRoleEnumerateResponseMarshalTo(t *testing.T) { +func TestManagedClusterBulkAddRequest_AzureConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleEnumerateResponse(popr, false) + p := NewPopulatedManagedClusterBulkAddRequest_AzureConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12163,7 +12163,7 @@ func TestRoleEnumerateResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleEnumerateResponse{} + msg := &ManagedClusterBulkAddRequest_AzureConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12175,15 +12175,15 @@ func TestRoleEnumerateResponseMarshalTo(t *testing.T) { } } -func TestRoleInspectRequestProto(t *testing.T) { +func TestManagedClusterBulkAddResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleInspectRequest(popr, false) + p := NewPopulatedManagedClusterBulkAddResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleInspectRequest{} + msg := &ManagedClusterBulkAddResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12206,10 +12206,10 @@ func TestRoleInspectRequestProto(t *testing.T) { } } -func TestRoleInspectRequestMarshalTo(t *testing.T) { +func TestManagedClusterBulkAddResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleInspectRequest(popr, false) + p := NewPopulatedManagedClusterBulkAddResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12219,7 +12219,7 @@ func TestRoleInspectRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleInspectRequest{} + msg := &ManagedClusterBulkAddResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12231,15 +12231,15 @@ func TestRoleInspectRequestMarshalTo(t *testing.T) { } } -func TestRoleInspectResponseProto(t *testing.T) { +func TestActivityEnumerateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleInspectResponse(popr, false) + p := NewPopulatedActivityEnumerateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleInspectResponse{} + msg := &ActivityEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12262,10 +12262,10 @@ func TestRoleInspectResponseProto(t *testing.T) { } } -func TestRoleInspectResponseMarshalTo(t *testing.T) { +func TestActivityEnumerateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleInspectResponse(popr, false) + p := NewPopulatedActivityEnumerateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12275,7 +12275,7 @@ func TestRoleInspectResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleInspectResponse{} + msg := &ActivityEnumerateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12287,15 +12287,15 @@ func TestRoleInspectResponseMarshalTo(t *testing.T) { } } -func TestRoleDeleteRequestProto(t *testing.T) { +func TestActivityEnumerateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleDeleteRequest(popr, false) + p := NewPopulatedActivityEnumerateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleDeleteRequest{} + msg := &ActivityEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12318,10 +12318,10 @@ func TestRoleDeleteRequestProto(t *testing.T) { } } -func TestRoleDeleteRequestMarshalTo(t *testing.T) { +func TestActivityEnumerateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleDeleteRequest(popr, false) + p := NewPopulatedActivityEnumerateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12331,7 +12331,7 @@ func TestRoleDeleteRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleDeleteRequest{} + msg := &ActivityEnumerateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12343,15 +12343,15 @@ func TestRoleDeleteRequestMarshalTo(t *testing.T) { } } -func TestRoleDeleteResponseProto(t *testing.T) { +func TestActivityEnumerateResponse_DataProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleDeleteResponse(popr, false) + p := NewPopulatedActivityEnumerateResponse_Data(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleDeleteResponse{} + msg := &ActivityEnumerateResponse_Data{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12374,10 +12374,10 @@ func TestRoleDeleteResponseProto(t *testing.T) { } } -func TestRoleDeleteResponseMarshalTo(t *testing.T) { +func TestActivityEnumerateResponse_DataMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleDeleteResponse(popr, false) + p := NewPopulatedActivityEnumerateResponse_Data(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12387,7 +12387,7 @@ func TestRoleDeleteResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleDeleteResponse{} + msg := &ActivityEnumerateResponse_Data{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12399,15 +12399,15 @@ func TestRoleDeleteResponseMarshalTo(t *testing.T) { } } -func TestRolePermissionRequestProto(t *testing.T) { +func TestRoleObjectProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRolePermissionRequest(popr, false) + p := NewPopulatedRoleObject(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RolePermissionRequest{} + msg := &RoleObject{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12430,10 +12430,10 @@ func TestRolePermissionRequestProto(t *testing.T) { } } -func TestRolePermissionRequestMarshalTo(t *testing.T) { +func TestRoleObjectMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRolePermissionRequest(popr, false) + p := NewPopulatedRoleObject(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12443,7 +12443,7 @@ func TestRolePermissionRequestMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RolePermissionRequest{} + msg := &RoleObject{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12455,15 +12455,15 @@ func TestRolePermissionRequestMarshalTo(t *testing.T) { } } -func TestRolePermissionResponseProto(t *testing.T) { +func TestRoleConfigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRolePermissionResponse(popr, false) + p := NewPopulatedRoleConfig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RolePermissionResponse{} + msg := &RoleConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12486,10 +12486,10 @@ func TestRolePermissionResponseProto(t *testing.T) { } } -func TestRolePermissionResponseMarshalTo(t *testing.T) { +func TestRoleConfigMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRolePermissionResponse(popr, false) + p := NewPopulatedRoleConfig(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12499,7 +12499,7 @@ func TestRolePermissionResponseMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RolePermissionResponse{} + msg := &RoleConfig{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12511,15 +12511,15 @@ func TestRolePermissionResponseMarshalTo(t *testing.T) { } } -func TestPermissionProto(t *testing.T) { +func TestRoleCreateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedPermission(popr, false) + p := NewPopulatedRoleCreateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &Permission{} + msg := &RoleCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12542,10 +12542,10 @@ func TestPermissionProto(t *testing.T) { } } -func TestPermissionMarshalTo(t *testing.T) { +func TestRoleCreateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedPermission(popr, false) + p := NewPopulatedRoleCreateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12555,7 +12555,7 @@ func TestPermissionMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &Permission{} + msg := &RoleCreateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12567,15 +12567,15 @@ func TestPermissionMarshalTo(t *testing.T) { } } -func TestActivityDataObjectProto(t *testing.T) { +func TestRoleCreateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityDataObject(popr, false) + p := NewPopulatedRoleCreateResponse(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityDataObject{} + msg := &RoleCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12598,10 +12598,10 @@ func TestActivityDataObjectProto(t *testing.T) { } } -func TestActivityDataObjectMarshalTo(t *testing.T) { +func TestRoleCreateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityDataObject(popr, false) + p := NewPopulatedRoleCreateResponse(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12611,7 +12611,7 @@ func TestActivityDataObjectMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityDataObject{} + msg := &RoleCreateResponse{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12623,15 +12623,15 @@ func TestActivityDataObjectMarshalTo(t *testing.T) { } } -func TestActivityDataObject_OpcycleProto(t *testing.T) { +func TestRoleUpdateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityDataObject_Opcycle(popr, false) + p := NewPopulatedRoleUpdateRequest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityDataObject_Opcycle{} + msg := &RoleUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12654,10 +12654,10 @@ func TestActivityDataObject_OpcycleProto(t *testing.T) { } } -func TestActivityDataObject_OpcycleMarshalTo(t *testing.T) { +func TestRoleUpdateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityDataObject_Opcycle(popr, false) + p := NewPopulatedRoleUpdateRequest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { @@ -12667,7 +12667,7 @@ func TestActivityDataObject_OpcycleMarshalTo(t *testing.T) { if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityDataObject_Opcycle{} + msg := &RoleUpdateRequest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -12679,178 +12679,1408 @@ func TestActivityDataObject_OpcycleMarshalTo(t *testing.T) { } } -func TestOrganizationObjectJSON(t *testing.T) { +func TestRoleUpdateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationObject(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) + p := NewPopulatedRoleUpdateResponse(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationObject{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + msg := &RoleUpdateResponse{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } -func TestClusterInfoJSON(t *testing.T) { + +func TestRoleUpdateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInfo(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) + p := NewPopulatedRoleUpdateResponse(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterInfo{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + msg := &RoleUpdateResponse{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestClusterInfo_StatusInfoJSON(t *testing.T) { + +func TestRoleEnumerateRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInfo_StatusInfo(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) + p := NewPopulatedRoleEnumerateRequest(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterInfo_StatusInfo{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + msg := &RoleEnumerateRequest{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } -func TestClusterInfo_BackupShareStatusInfoJSON(t *testing.T) { + +func TestRoleEnumerateRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInfo_BackupShareStatusInfo(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) + p := NewPopulatedRoleEnumerateRequest(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterInfo_BackupShareStatusInfo{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + msg := &RoleEnumerateRequest{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestClusterObjectJSON(t *testing.T) { + +func TestRoleEnumerateResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterObject(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) + p := NewPopulatedRoleEnumerateResponse(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterObject{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + msg := &RoleEnumerateResponse{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } -func TestPXConfigJSON(t *testing.T) { + +func TestRoleEnumerateResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedPXConfig(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) + p := NewPopulatedRoleEnumerateResponse(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &PXConfig{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + msg := &RoleEnumerateResponse{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestAWSConfigJSON(t *testing.T) { + +func TestRoleInspectRequestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedAWSConfig(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) + p := NewPopulatedRoleInspectRequest(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &AWSConfig{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + msg := &RoleInspectRequest{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } -func TestIBMConfigJSON(t *testing.T) { + +func TestRoleInspectRequestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedIBMConfig(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) + p := NewPopulatedRoleInspectRequest(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &IBMConfig{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + msg := &RoleInspectRequest{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRancherConfigJSON(t *testing.T) { + +func TestRoleInspectResponseProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRancherConfig(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) + p := NewPopulatedRoleInspectResponse(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RancherConfig{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + msg := &RoleInspectResponse{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } -func TestS3ConfigJSON(t *testing.T) { + +func TestRoleInspectResponseMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedS3Config(popr, true) + p := NewPopulatedRoleInspectResponse(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RoleInspectResponse{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestRoleDeleteRequestProto(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRoleDeleteRequest(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RoleDeleteRequest{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) + } +} + +func TestRoleDeleteRequestMarshalTo(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRoleDeleteRequest(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RoleDeleteRequest{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestRoleDeleteResponseProto(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRoleDeleteResponse(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RoleDeleteResponse{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) + } +} + +func TestRoleDeleteResponseMarshalTo(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRoleDeleteResponse(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RoleDeleteResponse{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestRolePermissionRequestProto(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRolePermissionRequest(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RolePermissionRequest{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) + } +} + +func TestRolePermissionRequestMarshalTo(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRolePermissionRequest(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RolePermissionRequest{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestRolePermissionResponseProto(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRolePermissionResponse(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RolePermissionResponse{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) + } +} + +func TestRolePermissionResponseMarshalTo(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRolePermissionResponse(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RolePermissionResponse{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestPermissionProto(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedPermission(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &Permission{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) + } +} + +func TestPermissionMarshalTo(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedPermission(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &Permission{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestActivityDataObjectProto(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedActivityDataObject(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &ActivityDataObject{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) + } +} + +func TestActivityDataObjectMarshalTo(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedActivityDataObject(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &ActivityDataObject{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestActivityDataObject_OpcycleProto(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedActivityDataObject_Opcycle(popr, false) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &ActivityDataObject_Opcycle{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + littlefuzz := make([]byte, len(dAtA)) + copy(littlefuzz, dAtA) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } + if len(littlefuzz) > 0 { + fuzzamount := 100 + for i := 0; i < fuzzamount; i++ { + littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) + littlefuzz = append(littlefuzz, byte(popr.Intn(256))) + } + // shouldn't panic + _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) + } +} + +func TestActivityDataObject_OpcycleMarshalTo(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedActivityDataObject_Opcycle(popr, false) + size := p.Size() + dAtA := make([]byte, size) + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + _, err := p.MarshalTo(dAtA) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &ActivityDataObject_Opcycle{} + if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + for i := range dAtA { + dAtA[i] = byte(popr.Intn(256)) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestOrganizationObjectJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedOrganizationObject(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &OrganizationObject{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestClusterInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedClusterInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &ClusterInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestClusterInfo_StatusInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedClusterInfo_StatusInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &ClusterInfo_StatusInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestClusterInfo_BackupShareStatusInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedClusterInfo_BackupShareStatusInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &ClusterInfo_BackupShareStatusInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestClusterObjectJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedClusterObject(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &ClusterObject{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestPXConfigJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedPXConfig(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &PXConfig{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestAWSConfigJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedAWSConfig(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &AWSConfig{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestIBMConfigJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedIBMConfig(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &IBMConfig{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestRancherConfigJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRancherConfig(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RancherConfig{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestS3ConfigJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedS3Config(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &S3Config{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestAzureConfigJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedAzureConfig(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &AzureConfig{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestGoogleConfigJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedGoogleConfig(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &GoogleConfig{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestCloudCredentialInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedCloudCredentialInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &CloudCredentialInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestCloudCredentialObjectJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedCloudCredentialObject(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &CloudCredentialObject{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestSchedulePolicyInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedSchedulePolicyInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &SchedulePolicyInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestSchedulePolicyInfo_IncrementalCountJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedSchedulePolicyInfo_IncrementalCount(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &SchedulePolicyInfo_IncrementalCount{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestSchedulePolicyInfo_IntervalPolicyJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedSchedulePolicyInfo_IntervalPolicy(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &SchedulePolicyInfo_IntervalPolicy{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestSchedulePolicyInfo_DailyPolicyJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedSchedulePolicyInfo_DailyPolicy(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &SchedulePolicyInfo_DailyPolicy{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestSchedulePolicyInfo_WeeklyPolicyJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedSchedulePolicyInfo_WeeklyPolicy(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &SchedulePolicyInfo_WeeklyPolicy{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestSchedulePolicyInfo_MonthlyPolicyJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedSchedulePolicyInfo_MonthlyPolicy(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &SchedulePolicyInfo_MonthlyPolicy{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestSchedulePolicyObjectJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedSchedulePolicyObject(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &SchedulePolicyObject{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupScheduleInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupScheduleInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupScheduleInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupScheduleInfo_BackupTypeJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupScheduleInfo_BackupType(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupScheduleInfo_BackupType{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupScheduleInfo_SuspendedByJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupScheduleInfo_SuspendedBy(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupScheduleInfo_SuspendedBy{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupScheduleInfo_StatusInfoListJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupScheduleInfo_StatusInfoList(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupScheduleInfo_StatusInfoList{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupScheduleInfo_StatusInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupScheduleInfo_StatusInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupScheduleInfo_StatusInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupScheduleObjectJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupScheduleObject(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupScheduleObject{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestNFSConfigJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedNFSConfig(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &NFSConfig{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupLocationInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupLocationInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupLocationInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupLocationInfo_StatusInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupLocationInfo_StatusInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupLocationInfo_StatusInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupLocationObjectJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupLocationObject(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupLocationObject{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestResourceInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedResourceInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &ResourceInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupInfo_BackupTypeJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupInfo_BackupType(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupInfo_BackupType{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupInfo_BackupScheduleJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupInfo_BackupSchedule(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupInfo_BackupSchedule{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupInfo_VolumeJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupInfo_Volume(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupInfo_Volume{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupInfo_StatusInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupInfo_StatusInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupInfo_StatusInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestBackupObjectJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedBackupObject(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &BackupObject{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestRulesInfoJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRulesInfo(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RulesInfo{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestRulesInfo_RuleItemJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRulesInfo_RuleItem(popr, true) + marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} + jsondata, err := marshaler.MarshalToString(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + msg := &RulesInfo_RuleItem{} + err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + } +} +func TestRulesInfo_ActionJSON(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRulesInfo_Action(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &S3Config{} + msg := &RulesInfo_Action{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -12859,16 +14089,16 @@ func TestS3ConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestAzureConfigJSON(t *testing.T) { +func TestRuleObjectJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedAzureConfig(popr, true) + p := NewPopulatedRuleObject(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &AzureConfig{} + msg := &RuleObject{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -12877,16 +14107,16 @@ func TestAzureConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestGoogleConfigJSON(t *testing.T) { +func TestReplacePolicyJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedGoogleConfig(popr, true) + p := NewPopulatedReplacePolicy(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &GoogleConfig{} + msg := &ReplacePolicy{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -12895,16 +14125,16 @@ func TestGoogleConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialInfoJSON(t *testing.T) { +func TestRestoreInfoJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialInfo(popr, true) + p := NewPopulatedRestoreInfo(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialInfo{} + msg := &RestoreInfo{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -12913,16 +14143,16 @@ func TestCloudCredentialInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialObjectJSON(t *testing.T) { +func TestRestoreInfo_RestoreResourceStateJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialObject(popr, true) + p := NewPopulatedRestoreInfo_RestoreResourceState(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialObject{} + msg := &RestoreInfo_RestoreResourceState{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -12931,16 +14161,16 @@ func TestCloudCredentialObjectJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyInfoJSON(t *testing.T) { +func TestRestoreInfo_RestoredResourceJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo(popr, true) + p := NewPopulatedRestoreInfo_RestoredResource(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyInfo{} + msg := &RestoreInfo_RestoredResource{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -12949,16 +14179,16 @@ func TestSchedulePolicyInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyInfo_IncrementalCountJSON(t *testing.T) { +func TestRestoreInfo_VolumeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_IncrementalCount(popr, true) + p := NewPopulatedRestoreInfo_Volume(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyInfo_IncrementalCount{} + msg := &RestoreInfo_Volume{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -12967,16 +14197,16 @@ func TestSchedulePolicyInfo_IncrementalCountJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyInfo_IntervalPolicyJSON(t *testing.T) { +func TestRestoreInfo_StatusInfoJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_IntervalPolicy(popr, true) + p := NewPopulatedRestoreInfo_StatusInfo(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyInfo_IntervalPolicy{} + msg := &RestoreInfo_StatusInfo{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -12985,16 +14215,16 @@ func TestSchedulePolicyInfo_IntervalPolicyJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyInfo_DailyPolicyJSON(t *testing.T) { +func TestRestoreObjectJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_DailyPolicy(popr, true) + p := NewPopulatedRestoreObject(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyInfo_DailyPolicy{} + msg := &RestoreObject{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13003,16 +14233,16 @@ func TestSchedulePolicyInfo_DailyPolicyJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyInfo_WeeklyPolicyJSON(t *testing.T) { +func TestHealthStatusRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_WeeklyPolicy(popr, true) + p := NewPopulatedHealthStatusRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyInfo_WeeklyPolicy{} + msg := &HealthStatusRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13021,16 +14251,16 @@ func TestSchedulePolicyInfo_WeeklyPolicyJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyInfo_MonthlyPolicyJSON(t *testing.T) { +func TestHealthStatusResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_MonthlyPolicy(popr, true) + p := NewPopulatedHealthStatusResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyInfo_MonthlyPolicy{} + msg := &HealthStatusResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13039,16 +14269,16 @@ func TestSchedulePolicyInfo_MonthlyPolicyJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyObjectJSON(t *testing.T) { +func TestTimeRangeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyObject(popr, true) + p := NewPopulatedTimeRange(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyObject{} + msg := &TimeRange{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13057,16 +14287,16 @@ func TestSchedulePolicyObjectJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleInfoJSON(t *testing.T) { +func TestEnumerateOptionsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo(popr, true) + p := NewPopulatedEnumerateOptions(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleInfo{} + msg := &EnumerateOptions{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13075,16 +14305,16 @@ func TestBackupScheduleInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleInfo_BackupTypeJSON(t *testing.T) { +func TestSchedulePolicyCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_BackupType(popr, true) + p := NewPopulatedSchedulePolicyCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleInfo_BackupType{} + msg := &SchedulePolicyCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13093,16 +14323,16 @@ func TestBackupScheduleInfo_BackupTypeJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleInfo_SuspendedByJSON(t *testing.T) { +func TestSchedulePolicyCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_SuspendedBy(popr, true) + p := NewPopulatedSchedulePolicyCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleInfo_SuspendedBy{} + msg := &SchedulePolicyCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13111,16 +14341,16 @@ func TestBackupScheduleInfo_SuspendedByJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleInfo_StatusInfoListJSON(t *testing.T) { +func TestSchedulePolicyUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_StatusInfoList(popr, true) + p := NewPopulatedSchedulePolicyUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleInfo_StatusInfoList{} + msg := &SchedulePolicyUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13129,16 +14359,16 @@ func TestBackupScheduleInfo_StatusInfoListJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleInfo_StatusInfoJSON(t *testing.T) { +func TestSchedulePolicyUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_StatusInfo(popr, true) + p := NewPopulatedSchedulePolicyUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleInfo_StatusInfo{} + msg := &SchedulePolicyUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13147,16 +14377,16 @@ func TestBackupScheduleInfo_StatusInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleObjectJSON(t *testing.T) { +func TestSchedulePolicyEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleObject(popr, true) + p := NewPopulatedSchedulePolicyEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleObject{} + msg := &SchedulePolicyEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13165,16 +14395,16 @@ func TestBackupScheduleObjectJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestNFSConfigJSON(t *testing.T) { +func TestSchedulePolicyEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedNFSConfig(popr, true) + p := NewPopulatedSchedulePolicyEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &NFSConfig{} + msg := &SchedulePolicyEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13183,16 +14413,16 @@ func TestNFSConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationInfoJSON(t *testing.T) { +func TestSchedulePolicyInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInfo(popr, true) + p := NewPopulatedSchedulePolicyInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationInfo{} + msg := &SchedulePolicyInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13201,16 +14431,16 @@ func TestBackupLocationInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationInfo_StatusInfoJSON(t *testing.T) { +func TestSchedulePolicyInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInfo_StatusInfo(popr, true) + p := NewPopulatedSchedulePolicyInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationInfo_StatusInfo{} + msg := &SchedulePolicyInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13219,16 +14449,16 @@ func TestBackupLocationInfo_StatusInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationObjectJSON(t *testing.T) { +func TestSchedulePolicyDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationObject(popr, true) + p := NewPopulatedSchedulePolicyDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationObject{} + msg := &SchedulePolicyDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13237,16 +14467,16 @@ func TestBackupLocationObjectJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestResourceInfoJSON(t *testing.T) { +func TestSchedulePolicyDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedResourceInfo(popr, true) + p := NewPopulatedSchedulePolicyDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ResourceInfo{} + msg := &SchedulePolicyDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13255,16 +14485,16 @@ func TestResourceInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupInfoJSON(t *testing.T) { +func TestSchedulePolicyOwnershipUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo(popr, true) + p := NewPopulatedSchedulePolicyOwnershipUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInfo{} + msg := &SchedulePolicyOwnershipUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13273,16 +14503,16 @@ func TestBackupInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupInfo_BackupTypeJSON(t *testing.T) { +func TestSchedulePolicyOwnershipUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_BackupType(popr, true) + p := NewPopulatedSchedulePolicyOwnershipUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInfo_BackupType{} + msg := &SchedulePolicyOwnershipUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13291,16 +14521,16 @@ func TestBackupInfo_BackupTypeJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupInfo_BackupScheduleJSON(t *testing.T) { +func TestBackupScheduleCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_BackupSchedule(popr, true) + p := NewPopulatedBackupScheduleCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInfo_BackupSchedule{} + msg := &BackupScheduleCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13309,16 +14539,16 @@ func TestBackupInfo_BackupScheduleJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupInfo_VolumeJSON(t *testing.T) { +func TestBackupScheduleCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_Volume(popr, true) + p := NewPopulatedBackupScheduleCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInfo_Volume{} + msg := &BackupScheduleCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13327,16 +14557,16 @@ func TestBackupInfo_VolumeJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupInfo_StatusInfoJSON(t *testing.T) { +func TestBackupScheduleUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_StatusInfo(popr, true) + p := NewPopulatedBackupScheduleUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInfo_StatusInfo{} + msg := &BackupScheduleUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13345,16 +14575,16 @@ func TestBackupInfo_StatusInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupObjectJSON(t *testing.T) { +func TestBackupScheduleUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupObject(popr, true) + p := NewPopulatedBackupScheduleUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupObject{} + msg := &BackupScheduleUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13363,16 +14593,16 @@ func TestBackupObjectJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRulesInfoJSON(t *testing.T) { +func TestBackupScheduleEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRulesInfo(popr, true) + p := NewPopulatedBackupScheduleEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RulesInfo{} + msg := &BackupScheduleEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13381,16 +14611,16 @@ func TestRulesInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRulesInfo_RuleItemJSON(t *testing.T) { +func TestBackupScheduleEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRulesInfo_RuleItem(popr, true) + p := NewPopulatedBackupScheduleEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RulesInfo_RuleItem{} + msg := &BackupScheduleEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13399,16 +14629,16 @@ func TestRulesInfo_RuleItemJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRulesInfo_ActionJSON(t *testing.T) { +func TestBackupScheduleInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRulesInfo_Action(popr, true) + p := NewPopulatedBackupScheduleInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RulesInfo_Action{} + msg := &BackupScheduleInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13417,16 +14647,16 @@ func TestRulesInfo_ActionJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleObjectJSON(t *testing.T) { +func TestBackupScheduleInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleObject(popr, true) + p := NewPopulatedBackupScheduleInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleObject{} + msg := &BackupScheduleInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13435,16 +14665,16 @@ func TestRuleObjectJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReplacePolicyJSON(t *testing.T) { +func TestBackupScheduleDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReplacePolicy(popr, true) + p := NewPopulatedBackupScheduleDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReplacePolicy{} + msg := &BackupScheduleDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13453,16 +14683,16 @@ func TestReplacePolicyJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreInfoJSON(t *testing.T) { +func TestBackupScheduleDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo(popr, true) + p := NewPopulatedBackupScheduleDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInfo{} + msg := &BackupScheduleDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13471,16 +14701,16 @@ func TestRestoreInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreInfo_RestoreResourceStateJSON(t *testing.T) { +func TestClusterBackupShareUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_RestoreResourceState(popr, true) + p := NewPopulatedClusterBackupShareUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInfo_RestoreResourceState{} + msg := &ClusterBackupShareUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13489,16 +14719,16 @@ func TestRestoreInfo_RestoreResourceStateJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreInfo_RestoredResourceJSON(t *testing.T) { +func TestClusterBackupShareUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_RestoredResource(popr, true) + p := NewPopulatedClusterBackupShareUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInfo_RestoredResource{} + msg := &ClusterBackupShareUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13507,16 +14737,16 @@ func TestRestoreInfo_RestoredResourceJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreInfo_VolumeJSON(t *testing.T) { +func TestClusterCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_Volume(popr, true) + p := NewPopulatedClusterCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInfo_Volume{} + msg := &ClusterCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13525,16 +14755,16 @@ func TestRestoreInfo_VolumeJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreInfo_StatusInfoJSON(t *testing.T) { +func TestClusterCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_StatusInfo(popr, true) + p := NewPopulatedClusterCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInfo_StatusInfo{} + msg := &ClusterCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13543,16 +14773,16 @@ func TestRestoreInfo_StatusInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreObjectJSON(t *testing.T) { +func TestClusterUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreObject(popr, true) + p := NewPopulatedClusterUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreObject{} + msg := &ClusterUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13561,16 +14791,16 @@ func TestRestoreObjectJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestHealthStatusRequestJSON(t *testing.T) { +func TestClusterUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedHealthStatusRequest(popr, true) + p := NewPopulatedClusterUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &HealthStatusRequest{} + msg := &ClusterUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13579,16 +14809,16 @@ func TestHealthStatusRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestHealthStatusResponseJSON(t *testing.T) { +func TestClusterEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedHealthStatusResponse(popr, true) + p := NewPopulatedClusterEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &HealthStatusResponse{} + msg := &ClusterEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13597,16 +14827,16 @@ func TestHealthStatusResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestTimeRangeJSON(t *testing.T) { +func TestClusterEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedTimeRange(popr, true) + p := NewPopulatedClusterEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &TimeRange{} + msg := &ClusterEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13615,16 +14845,16 @@ func TestTimeRangeJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestEnumerateOptionsJSON(t *testing.T) { +func TestClusterInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedEnumerateOptions(popr, true) + p := NewPopulatedClusterInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &EnumerateOptions{} + msg := &ClusterInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13633,16 +14863,16 @@ func TestEnumerateOptionsJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyCreateRequestJSON(t *testing.T) { +func TestClusterInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyCreateRequest(popr, true) + p := NewPopulatedClusterInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyCreateRequest{} + msg := &ClusterInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13651,16 +14881,16 @@ func TestSchedulePolicyCreateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyCreateResponseJSON(t *testing.T) { +func TestClusterDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyCreateResponse(popr, true) + p := NewPopulatedClusterDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyCreateResponse{} + msg := &ClusterDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13669,16 +14899,16 @@ func TestSchedulePolicyCreateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyUpdateRequestJSON(t *testing.T) { +func TestClusterDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyUpdateRequest(popr, true) + p := NewPopulatedClusterDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyUpdateRequest{} + msg := &ClusterDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13687,16 +14917,16 @@ func TestSchedulePolicyUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyUpdateResponseJSON(t *testing.T) { +func TestCloudCredentialCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyUpdateResponse(popr, true) + p := NewPopulatedCloudCredentialCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyUpdateResponse{} + msg := &CloudCredentialCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13705,16 +14935,16 @@ func TestSchedulePolicyUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyEnumerateRequestJSON(t *testing.T) { +func TestCloudCredentialCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyEnumerateRequest(popr, true) + p := NewPopulatedCloudCredentialCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyEnumerateRequest{} + msg := &CloudCredentialCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13723,16 +14953,16 @@ func TestSchedulePolicyEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyEnumerateResponseJSON(t *testing.T) { +func TestCloudCredentialUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyEnumerateResponse(popr, true) + p := NewPopulatedCloudCredentialUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyEnumerateResponse{} + msg := &CloudCredentialUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13741,16 +14971,16 @@ func TestSchedulePolicyEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyInspectRequestJSON(t *testing.T) { +func TestCloudCredentialUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInspectRequest(popr, true) + p := NewPopulatedCloudCredentialUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyInspectRequest{} + msg := &CloudCredentialUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13759,16 +14989,16 @@ func TestSchedulePolicyInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyInspectResponseJSON(t *testing.T) { +func TestCloudCredentialEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInspectResponse(popr, true) + p := NewPopulatedCloudCredentialEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyInspectResponse{} + msg := &CloudCredentialEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13777,16 +15007,16 @@ func TestSchedulePolicyInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyDeleteRequestJSON(t *testing.T) { +func TestCloudCredentialEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyDeleteRequest(popr, true) + p := NewPopulatedCloudCredentialEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyDeleteRequest{} + msg := &CloudCredentialEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13795,16 +15025,16 @@ func TestSchedulePolicyDeleteRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyDeleteResponseJSON(t *testing.T) { +func TestCloudCredentialInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyDeleteResponse(popr, true) + p := NewPopulatedCloudCredentialInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyDeleteResponse{} + msg := &CloudCredentialInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13813,16 +15043,16 @@ func TestSchedulePolicyDeleteResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyOwnershipUpdateRequestJSON(t *testing.T) { +func TestCloudCredentialInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyOwnershipUpdateRequest(popr, true) + p := NewPopulatedCloudCredentialInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyOwnershipUpdateRequest{} + msg := &CloudCredentialInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13831,16 +15061,16 @@ func TestSchedulePolicyOwnershipUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestSchedulePolicyOwnershipUpdateResponseJSON(t *testing.T) { +func TestCloudCredentialDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyOwnershipUpdateResponse(popr, true) + p := NewPopulatedCloudCredentialDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &SchedulePolicyOwnershipUpdateResponse{} + msg := &CloudCredentialDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13849,16 +15079,16 @@ func TestSchedulePolicyOwnershipUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleCreateRequestJSON(t *testing.T) { +func TestCloudCredentialDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleCreateRequest(popr, true) + p := NewPopulatedCloudCredentialDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleCreateRequest{} + msg := &CloudCredentialDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13867,16 +15097,16 @@ func TestBackupScheduleCreateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleCreateResponseJSON(t *testing.T) { +func TestCloudCredentialOwnershipUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleCreateResponse(popr, true) + p := NewPopulatedCloudCredentialOwnershipUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleCreateResponse{} + msg := &CloudCredentialOwnershipUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13885,16 +15115,16 @@ func TestBackupScheduleCreateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleUpdateRequestJSON(t *testing.T) { +func TestCloudCredentialOwnershipUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleUpdateRequest(popr, true) + p := NewPopulatedCloudCredentialOwnershipUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleUpdateRequest{} + msg := &CloudCredentialOwnershipUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13903,16 +15133,16 @@ func TestBackupScheduleUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleUpdateResponseJSON(t *testing.T) { +func TestEmailConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleUpdateResponse(popr, true) + p := NewPopulatedEmailConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleUpdateResponse{} + msg := &EmailConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13921,16 +15151,16 @@ func TestBackupScheduleUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleEnumerateRequestJSON(t *testing.T) { +func TestReceiverInfoJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleEnumerateRequest(popr, true) + p := NewPopulatedReceiverInfo(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleEnumerateRequest{} + msg := &ReceiverInfo{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13939,16 +15169,16 @@ func TestBackupScheduleEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleEnumerateResponseJSON(t *testing.T) { +func TestReceiverObjectJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleEnumerateResponse(popr, true) + p := NewPopulatedReceiverObject(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleEnumerateResponse{} + msg := &ReceiverObject{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13957,16 +15187,16 @@ func TestBackupScheduleEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleInspectRequestJSON(t *testing.T) { +func TestReceiverCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInspectRequest(popr, true) + p := NewPopulatedReceiverCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleInspectRequest{} + msg := &ReceiverCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13975,16 +15205,16 @@ func TestBackupScheduleInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleInspectResponseJSON(t *testing.T) { +func TestReceiverCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInspectResponse(popr, true) + p := NewPopulatedReceiverCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleInspectResponse{} + msg := &ReceiverCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -13993,16 +15223,16 @@ func TestBackupScheduleInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleDeleteRequestJSON(t *testing.T) { +func TestReceiverEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleDeleteRequest(popr, true) + p := NewPopulatedReceiverEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleDeleteRequest{} + msg := &ReceiverEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14011,16 +15241,16 @@ func TestBackupScheduleDeleteRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupScheduleDeleteResponseJSON(t *testing.T) { +func TestReceiverEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleDeleteResponse(popr, true) + p := NewPopulatedReceiverEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupScheduleDeleteResponse{} + msg := &ReceiverEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14029,16 +15259,16 @@ func TestBackupScheduleDeleteResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterBackupShareUpdateRequestJSON(t *testing.T) { +func TestReceiverInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterBackupShareUpdateRequest(popr, true) + p := NewPopulatedReceiverInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterBackupShareUpdateRequest{} + msg := &ReceiverInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14047,16 +15277,16 @@ func TestClusterBackupShareUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterBackupShareUpdateResponseJSON(t *testing.T) { +func TestReceiverInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterBackupShareUpdateResponse(popr, true) + p := NewPopulatedReceiverInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterBackupShareUpdateResponse{} + msg := &ReceiverInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14065,16 +15295,16 @@ func TestClusterBackupShareUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterCreateRequestJSON(t *testing.T) { +func TestReceiverUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterCreateRequest(popr, true) + p := NewPopulatedReceiverUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterCreateRequest{} + msg := &ReceiverUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14083,16 +15313,16 @@ func TestClusterCreateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterCreateResponseJSON(t *testing.T) { +func TestReceiverUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterCreateResponse(popr, true) + p := NewPopulatedReceiverUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterCreateResponse{} + msg := &ReceiverUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14101,16 +15331,16 @@ func TestClusterCreateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterUpdateRequestJSON(t *testing.T) { +func TestReceiverDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterUpdateRequest(popr, true) + p := NewPopulatedReceiverDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterUpdateRequest{} + msg := &ReceiverDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14119,16 +15349,16 @@ func TestClusterUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterUpdateResponseJSON(t *testing.T) { +func TestReceiverDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterUpdateResponse(popr, true) + p := NewPopulatedReceiverDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterUpdateResponse{} + msg := &ReceiverDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14137,16 +15367,16 @@ func TestClusterUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterEnumerateRequestJSON(t *testing.T) { +func TestRecipientObjectJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterEnumerateRequest(popr, true) + p := NewPopulatedRecipientObject(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterEnumerateRequest{} + msg := &RecipientObject{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14155,16 +15385,16 @@ func TestClusterEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterEnumerateResponseJSON(t *testing.T) { +func TestRecipientInfoJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterEnumerateResponse(popr, true) + p := NewPopulatedRecipientInfo(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterEnumerateResponse{} + msg := &RecipientInfo{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14173,16 +15403,16 @@ func TestClusterEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterInspectRequestJSON(t *testing.T) { +func TestRecipientCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInspectRequest(popr, true) + p := NewPopulatedRecipientCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterInspectRequest{} + msg := &RecipientCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14191,16 +15421,16 @@ func TestClusterInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterInspectResponseJSON(t *testing.T) { +func TestRecipientCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInspectResponse(popr, true) + p := NewPopulatedRecipientCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterInspectResponse{} + msg := &RecipientCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14209,16 +15439,16 @@ func TestClusterInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterDeleteRequestJSON(t *testing.T) { +func TestRecipientEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterDeleteRequest(popr, true) + p := NewPopulatedRecipientEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterDeleteRequest{} + msg := &RecipientEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14227,16 +15457,16 @@ func TestClusterDeleteRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestClusterDeleteResponseJSON(t *testing.T) { +func TestRecipientEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterDeleteResponse(popr, true) + p := NewPopulatedRecipientEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ClusterDeleteResponse{} + msg := &RecipientEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14245,16 +15475,16 @@ func TestClusterDeleteResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialCreateRequestJSON(t *testing.T) { +func TestRecipientInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialCreateRequest(popr, true) + p := NewPopulatedRecipientInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialCreateRequest{} + msg := &RecipientInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14263,16 +15493,16 @@ func TestCloudCredentialCreateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialCreateResponseJSON(t *testing.T) { +func TestRecipientInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialCreateResponse(popr, true) + p := NewPopulatedRecipientInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialCreateResponse{} + msg := &RecipientInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14281,16 +15511,16 @@ func TestCloudCredentialCreateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialUpdateRequestJSON(t *testing.T) { +func TestRecipientUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialUpdateRequest(popr, true) + p := NewPopulatedRecipientUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialUpdateRequest{} + msg := &RecipientUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14299,16 +15529,16 @@ func TestCloudCredentialUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialUpdateResponseJSON(t *testing.T) { +func TestRecipientUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialUpdateResponse(popr, true) + p := NewPopulatedRecipientUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialUpdateResponse{} + msg := &RecipientUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14317,16 +15547,16 @@ func TestCloudCredentialUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialEnumerateRequestJSON(t *testing.T) { +func TestRecipientDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialEnumerateRequest(popr, true) + p := NewPopulatedRecipientDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialEnumerateRequest{} + msg := &RecipientDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14335,16 +15565,16 @@ func TestCloudCredentialEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialEnumerateResponseJSON(t *testing.T) { +func TestRecipientDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialEnumerateResponse(popr, true) + p := NewPopulatedRecipientDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialEnumerateResponse{} + msg := &RecipientDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14353,16 +15583,16 @@ func TestCloudCredentialEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialInspectRequestJSON(t *testing.T) { +func TestBackupLocationCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialInspectRequest(popr, true) + p := NewPopulatedBackupLocationCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialInspectRequest{} + msg := &BackupLocationCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14371,16 +15601,16 @@ func TestCloudCredentialInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialInspectResponseJSON(t *testing.T) { +func TestBackupLocationCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialInspectResponse(popr, true) + p := NewPopulatedBackupLocationCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialInspectResponse{} + msg := &BackupLocationCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14389,16 +15619,16 @@ func TestCloudCredentialInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialDeleteRequestJSON(t *testing.T) { +func TestBackupLocationUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialDeleteRequest(popr, true) + p := NewPopulatedBackupLocationUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialDeleteRequest{} + msg := &BackupLocationUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14407,16 +15637,16 @@ func TestCloudCredentialDeleteRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialDeleteResponseJSON(t *testing.T) { +func TestBackupLocationUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialDeleteResponse(popr, true) + p := NewPopulatedBackupLocationUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialDeleteResponse{} + msg := &BackupLocationUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14425,16 +15655,16 @@ func TestCloudCredentialDeleteResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialOwnershipUpdateRequestJSON(t *testing.T) { +func TestBackupLocationEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialOwnershipUpdateRequest(popr, true) + p := NewPopulatedBackupLocationEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialOwnershipUpdateRequest{} + msg := &BackupLocationEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14443,16 +15673,16 @@ func TestCloudCredentialOwnershipUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestCloudCredentialOwnershipUpdateResponseJSON(t *testing.T) { +func TestBackupLocationEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialOwnershipUpdateResponse(popr, true) + p := NewPopulatedBackupLocationEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &CloudCredentialOwnershipUpdateResponse{} + msg := &BackupLocationEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14461,16 +15691,16 @@ func TestCloudCredentialOwnershipUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestEmailConfigJSON(t *testing.T) { +func TestBackupLocationInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedEmailConfig(popr, true) + p := NewPopulatedBackupLocationInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &EmailConfig{} + msg := &BackupLocationInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14479,16 +15709,16 @@ func TestEmailConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverInfoJSON(t *testing.T) { +func TestBackupLocationInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverInfo(popr, true) + p := NewPopulatedBackupLocationInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverInfo{} + msg := &BackupLocationInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14497,16 +15727,16 @@ func TestReceiverInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverObjectJSON(t *testing.T) { +func TestBackupLocationDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverObject(popr, true) + p := NewPopulatedBackupLocationDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverObject{} + msg := &BackupLocationDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14515,16 +15745,16 @@ func TestReceiverObjectJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverCreateRequestJSON(t *testing.T) { +func TestBackupLocationDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverCreateRequest(popr, true) + p := NewPopulatedBackupLocationDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverCreateRequest{} + msg := &BackupLocationDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14533,16 +15763,16 @@ func TestReceiverCreateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverCreateResponseJSON(t *testing.T) { +func TestBackupLocationValidateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverCreateResponse(popr, true) + p := NewPopulatedBackupLocationValidateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverCreateResponse{} + msg := &BackupLocationValidateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14551,16 +15781,16 @@ func TestReceiverCreateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverEnumerateRequestJSON(t *testing.T) { +func TestBackupLocationValidateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverEnumerateRequest(popr, true) + p := NewPopulatedBackupLocationValidateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverEnumerateRequest{} + msg := &BackupLocationValidateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14569,16 +15799,16 @@ func TestReceiverEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverEnumerateResponseJSON(t *testing.T) { +func TestBackupLocationOwnershipUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverEnumerateResponse(popr, true) + p := NewPopulatedBackupLocationOwnershipUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverEnumerateResponse{} + msg := &BackupLocationOwnershipUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14587,16 +15817,16 @@ func TestReceiverEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverInspectRequestJSON(t *testing.T) { +func TestBackupLocationOwnershipUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverInspectRequest(popr, true) + p := NewPopulatedBackupLocationOwnershipUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverInspectRequest{} + msg := &BackupLocationOwnershipUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14605,16 +15835,16 @@ func TestReceiverInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverInspectResponseJSON(t *testing.T) { +func TestMetricsInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverInspectResponse(popr, true) + p := NewPopulatedMetricsInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverInspectResponse{} + msg := &MetricsInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14623,16 +15853,16 @@ func TestReceiverInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverUpdateRequestJSON(t *testing.T) { +func TestMetricsInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverUpdateRequest(popr, true) + p := NewPopulatedMetricsInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverUpdateRequest{} + msg := &MetricsInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14641,16 +15871,16 @@ func TestReceiverUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverUpdateResponseJSON(t *testing.T) { +func TestMetricsInspectResponse_StatsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverUpdateResponse(popr, true) + p := NewPopulatedMetricsInspectResponse_Stats(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverUpdateResponse{} + msg := &MetricsInspectResponse_Stats{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14659,16 +15889,16 @@ func TestReceiverUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverDeleteRequestJSON(t *testing.T) { +func TestBackupCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverDeleteRequest(popr, true) + p := NewPopulatedBackupCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverDeleteRequest{} + msg := &BackupCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14677,16 +15907,16 @@ func TestReceiverDeleteRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestReceiverDeleteResponseJSON(t *testing.T) { +func TestBackupCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverDeleteResponse(popr, true) + p := NewPopulatedBackupCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ReceiverDeleteResponse{} + msg := &BackupCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14695,16 +15925,16 @@ func TestReceiverDeleteResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationCreateRequestJSON(t *testing.T) { +func TestBackupUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationCreateRequest(popr, true) + p := NewPopulatedBackupUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationCreateRequest{} + msg := &BackupUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14713,16 +15943,16 @@ func TestBackupLocationCreateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationCreateResponseJSON(t *testing.T) { +func TestBackupUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationCreateResponse(popr, true) + p := NewPopulatedBackupUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationCreateResponse{} + msg := &BackupUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14731,16 +15961,16 @@ func TestBackupLocationCreateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationUpdateRequestJSON(t *testing.T) { +func TestBackupEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationUpdateRequest(popr, true) + p := NewPopulatedBackupEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationUpdateRequest{} + msg := &BackupEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14749,16 +15979,16 @@ func TestBackupLocationUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationUpdateResponseJSON(t *testing.T) { +func TestBackupEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationUpdateResponse(popr, true) + p := NewPopulatedBackupEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationUpdateResponse{} + msg := &BackupEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14767,16 +15997,16 @@ func TestBackupLocationUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationEnumerateRequestJSON(t *testing.T) { +func TestBackupInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationEnumerateRequest(popr, true) + p := NewPopulatedBackupInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationEnumerateRequest{} + msg := &BackupInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14785,16 +16015,16 @@ func TestBackupLocationEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationEnumerateResponseJSON(t *testing.T) { +func TestBackupInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationEnumerateResponse(popr, true) + p := NewPopulatedBackupInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationEnumerateResponse{} + msg := &BackupInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14803,16 +16033,16 @@ func TestBackupLocationEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationInspectRequestJSON(t *testing.T) { +func TestBackupDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInspectRequest(popr, true) + p := NewPopulatedBackupDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationInspectRequest{} + msg := &BackupDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14821,16 +16051,16 @@ func TestBackupLocationInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationInspectResponseJSON(t *testing.T) { +func TestBackupDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInspectResponse(popr, true) + p := NewPopulatedBackupDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationInspectResponse{} + msg := &BackupDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14839,16 +16069,16 @@ func TestBackupLocationInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationDeleteRequestJSON(t *testing.T) { +func TestBackupShareUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationDeleteRequest(popr, true) + p := NewPopulatedBackupShareUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationDeleteRequest{} + msg := &BackupShareUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14857,16 +16087,16 @@ func TestBackupLocationDeleteRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationDeleteResponseJSON(t *testing.T) { +func TestBackupShareUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationDeleteResponse(popr, true) + p := NewPopulatedBackupShareUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationDeleteResponse{} + msg := &BackupShareUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14875,16 +16105,16 @@ func TestBackupLocationDeleteResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationValidateRequestJSON(t *testing.T) { +func TestRestoreCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationValidateRequest(popr, true) + p := NewPopulatedRestoreCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationValidateRequest{} + msg := &RestoreCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14893,16 +16123,16 @@ func TestBackupLocationValidateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationValidateResponseJSON(t *testing.T) { +func TestRestoreCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationValidateResponse(popr, true) + p := NewPopulatedRestoreCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationValidateResponse{} + msg := &RestoreCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14911,16 +16141,16 @@ func TestBackupLocationValidateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationOwnershipUpdateRequestJSON(t *testing.T) { +func TestRestoreUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationOwnershipUpdateRequest(popr, true) + p := NewPopulatedRestoreUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationOwnershipUpdateRequest{} + msg := &RestoreUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14929,16 +16159,16 @@ func TestBackupLocationOwnershipUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupLocationOwnershipUpdateResponseJSON(t *testing.T) { +func TestRestoreUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationOwnershipUpdateResponse(popr, true) + p := NewPopulatedRestoreUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupLocationOwnershipUpdateResponse{} + msg := &RestoreUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14947,16 +16177,16 @@ func TestBackupLocationOwnershipUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestMetricsInspectRequestJSON(t *testing.T) { +func TestRestoreEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedMetricsInspectRequest(popr, true) + p := NewPopulatedRestoreEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &MetricsInspectRequest{} + msg := &RestoreEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14965,16 +16195,16 @@ func TestMetricsInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestMetricsInspectResponseJSON(t *testing.T) { +func TestRestoreEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedMetricsInspectResponse(popr, true) + p := NewPopulatedRestoreEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &MetricsInspectResponse{} + msg := &RestoreEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -14983,16 +16213,16 @@ func TestMetricsInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestMetricsInspectResponse_StatsJSON(t *testing.T) { +func TestRestoreInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedMetricsInspectResponse_Stats(popr, true) + p := NewPopulatedRestoreInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &MetricsInspectResponse_Stats{} + msg := &RestoreInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15001,16 +16231,16 @@ func TestMetricsInspectResponse_StatsJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupCreateRequestJSON(t *testing.T) { +func TestRestoreInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupCreateRequest(popr, true) + p := NewPopulatedRestoreInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupCreateRequest{} + msg := &RestoreInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15019,16 +16249,16 @@ func TestBackupCreateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupCreateResponseJSON(t *testing.T) { +func TestRestoreDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupCreateResponse(popr, true) + p := NewPopulatedRestoreDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupCreateResponse{} + msg := &RestoreDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15037,16 +16267,16 @@ func TestBackupCreateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupUpdateRequestJSON(t *testing.T) { +func TestRestoreDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupUpdateRequest(popr, true) + p := NewPopulatedRestoreDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupUpdateRequest{} + msg := &RestoreDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15055,16 +16285,16 @@ func TestBackupUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupUpdateResponseJSON(t *testing.T) { +func TestOrganizationCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupUpdateResponse(popr, true) + p := NewPopulatedOrganizationCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupUpdateResponse{} + msg := &OrganizationCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15073,16 +16303,16 @@ func TestBackupUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupEnumerateRequestJSON(t *testing.T) { +func TestOrganizationCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupEnumerateRequest(popr, true) + p := NewPopulatedOrganizationCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupEnumerateRequest{} + msg := &OrganizationCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15091,16 +16321,16 @@ func TestBackupEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupEnumerateResponseJSON(t *testing.T) { +func TestOrganizationEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupEnumerateResponse(popr, true) + p := NewPopulatedOrganizationEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupEnumerateResponse{} + msg := &OrganizationEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15109,16 +16339,16 @@ func TestBackupEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupInspectRequestJSON(t *testing.T) { +func TestOrganizationEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInspectRequest(popr, true) + p := NewPopulatedOrganizationEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInspectRequest{} + msg := &OrganizationEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15127,16 +16357,16 @@ func TestBackupInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupInspectResponseJSON(t *testing.T) { +func TestOrganizationInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInspectResponse(popr, true) + p := NewPopulatedOrganizationInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupInspectResponse{} + msg := &OrganizationInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15145,16 +16375,16 @@ func TestBackupInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupDeleteRequestJSON(t *testing.T) { +func TestOrganizationInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupDeleteRequest(popr, true) + p := NewPopulatedOrganizationInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupDeleteRequest{} + msg := &OrganizationInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15163,16 +16393,16 @@ func TestBackupDeleteRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupDeleteResponseJSON(t *testing.T) { +func TestOrganizationDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupDeleteResponse(popr, true) + p := NewPopulatedOrganizationDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupDeleteResponse{} + msg := &OrganizationDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15181,16 +16411,16 @@ func TestBackupDeleteResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupShareUpdateRequestJSON(t *testing.T) { +func TestOrganizationDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupShareUpdateRequest(popr, true) + p := NewPopulatedOrganizationDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupShareUpdateRequest{} + msg := &OrganizationDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15199,16 +16429,16 @@ func TestBackupShareUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestBackupShareUpdateResponseJSON(t *testing.T) { +func TestRuleCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupShareUpdateResponse(popr, true) + p := NewPopulatedRuleCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &BackupShareUpdateResponse{} + msg := &RuleCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15217,16 +16447,16 @@ func TestBackupShareUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreCreateRequestJSON(t *testing.T) { +func TestRuleCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreCreateRequest(popr, true) + p := NewPopulatedRuleCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreCreateRequest{} + msg := &RuleCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15235,16 +16465,16 @@ func TestRestoreCreateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreCreateResponseJSON(t *testing.T) { +func TestRuleUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreCreateResponse(popr, true) + p := NewPopulatedRuleUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreCreateResponse{} + msg := &RuleUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15253,16 +16483,16 @@ func TestRestoreCreateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreUpdateRequestJSON(t *testing.T) { +func TestRuleUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreUpdateRequest(popr, true) + p := NewPopulatedRuleUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreUpdateRequest{} + msg := &RuleUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15271,16 +16501,16 @@ func TestRestoreUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreUpdateResponseJSON(t *testing.T) { +func TestRuleEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreUpdateResponse(popr, true) + p := NewPopulatedRuleEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreUpdateResponse{} + msg := &RuleEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15289,16 +16519,16 @@ func TestRestoreUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreEnumerateRequestJSON(t *testing.T) { +func TestRuleEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreEnumerateRequest(popr, true) + p := NewPopulatedRuleEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreEnumerateRequest{} + msg := &RuleEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15307,16 +16537,16 @@ func TestRestoreEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreEnumerateResponseJSON(t *testing.T) { +func TestRuleInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreEnumerateResponse(popr, true) + p := NewPopulatedRuleInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreEnumerateResponse{} + msg := &RuleInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15325,16 +16555,16 @@ func TestRestoreEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreInspectRequestJSON(t *testing.T) { +func TestRuleInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInspectRequest(popr, true) + p := NewPopulatedRuleInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInspectRequest{} + msg := &RuleInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15343,16 +16573,16 @@ func TestRestoreInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreInspectResponseJSON(t *testing.T) { +func TestRuleDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInspectResponse(popr, true) + p := NewPopulatedRuleDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreInspectResponse{} + msg := &RuleDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15361,16 +16591,16 @@ func TestRestoreInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreDeleteRequestJSON(t *testing.T) { +func TestRuleDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreDeleteRequest(popr, true) + p := NewPopulatedRuleDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreDeleteRequest{} + msg := &RuleDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15379,16 +16609,16 @@ func TestRestoreDeleteRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRestoreDeleteResponseJSON(t *testing.T) { +func TestRuleOwnershipUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreDeleteResponse(popr, true) + p := NewPopulatedRuleOwnershipUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RestoreDeleteResponse{} + msg := &RuleOwnershipUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15397,16 +16627,16 @@ func TestRestoreDeleteResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestOrganizationCreateRequestJSON(t *testing.T) { +func TestRuleOwnershipUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationCreateRequest(popr, true) + p := NewPopulatedRuleOwnershipUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationCreateRequest{} + msg := &RuleOwnershipUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15415,16 +16645,16 @@ func TestOrganizationCreateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestOrganizationCreateResponseJSON(t *testing.T) { +func TestVersionInfoJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationCreateResponse(popr, true) + p := NewPopulatedVersionInfo(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationCreateResponse{} + msg := &VersionInfo{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15433,16 +16663,16 @@ func TestOrganizationCreateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestOrganizationEnumerateRequestJSON(t *testing.T) { +func TestVersionGetRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationEnumerateRequest(popr, true) + p := NewPopulatedVersionGetRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationEnumerateRequest{} + msg := &VersionGetRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15451,16 +16681,16 @@ func TestOrganizationEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestOrganizationEnumerateResponseJSON(t *testing.T) { +func TestVersionGetResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationEnumerateResponse(popr, true) + p := NewPopulatedVersionGetResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationEnumerateResponse{} + msg := &VersionGetResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15469,16 +16699,16 @@ func TestOrganizationEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestOrganizationInspectRequestJSON(t *testing.T) { +func TestLicenseActivateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationInspectRequest(popr, true) + p := NewPopulatedLicenseActivateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationInspectRequest{} + msg := &LicenseActivateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15487,16 +16717,16 @@ func TestOrganizationInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestOrganizationInspectResponseJSON(t *testing.T) { +func TestLicenseActivateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationInspectResponse(popr, true) + p := NewPopulatedLicenseActivateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationInspectResponse{} + msg := &LicenseActivateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15505,16 +16735,16 @@ func TestOrganizationInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestOrganizationDeleteRequestJSON(t *testing.T) { +func TestLicenseUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationDeleteRequest(popr, true) + p := NewPopulatedLicenseUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationDeleteRequest{} + msg := &LicenseUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15523,16 +16753,16 @@ func TestOrganizationDeleteRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestOrganizationDeleteResponseJSON(t *testing.T) { +func TestLicenseUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationDeleteResponse(popr, true) + p := NewPopulatedLicenseUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &OrganizationDeleteResponse{} + msg := &LicenseUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15541,16 +16771,16 @@ func TestOrganizationDeleteResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleCreateRequestJSON(t *testing.T) { +func TestLicenseInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleCreateRequest(popr, true) + p := NewPopulatedLicenseInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleCreateRequest{} + msg := &LicenseInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15559,16 +16789,16 @@ func TestRuleCreateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleCreateResponseJSON(t *testing.T) { +func TestLicenseInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleCreateResponse(popr, true) + p := NewPopulatedLicenseInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleCreateResponse{} + msg := &LicenseInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15577,16 +16807,16 @@ func TestRuleCreateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleUpdateRequestJSON(t *testing.T) { +func TestLicenseResponseInfoJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleUpdateRequest(popr, true) + p := NewPopulatedLicenseResponseInfo(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleUpdateRequest{} + msg := &LicenseResponseInfo{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15595,16 +16825,16 @@ func TestRuleUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleUpdateResponseJSON(t *testing.T) { +func TestLicenseResponseInfo_FeatureInfoJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleUpdateResponse(popr, true) + p := NewPopulatedLicenseResponseInfo_FeatureInfo(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleUpdateResponse{} + msg := &LicenseResponseInfo_FeatureInfo{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15613,16 +16843,16 @@ func TestRuleUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleEnumerateRequestJSON(t *testing.T) { +func TestLicenseResponseInfo_EntitlementInfoJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleEnumerateRequest(popr, true) + p := NewPopulatedLicenseResponseInfo_EntitlementInfo(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleEnumerateRequest{} + msg := &LicenseResponseInfo_EntitlementInfo{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15631,16 +16861,16 @@ func TestRuleEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleEnumerateResponseJSON(t *testing.T) { +func TestLicenseResponseInfo_StatusJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleEnumerateResponse(popr, true) + p := NewPopulatedLicenseResponseInfo_Status(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleEnumerateResponse{} + msg := &LicenseResponseInfo_Status{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15649,16 +16879,16 @@ func TestRuleEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleInspectRequestJSON(t *testing.T) { +func TestLicenseUsageAirgappedObjectJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleInspectRequest(popr, true) + p := NewPopulatedLicenseUsageAirgappedObject(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleInspectRequest{} + msg := &LicenseUsageAirgappedObject{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15667,16 +16897,16 @@ func TestRuleInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleInspectResponseJSON(t *testing.T) { +func TestLicenseUsageAirgappedRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleInspectResponse(popr, true) + p := NewPopulatedLicenseUsageAirgappedRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleInspectResponse{} + msg := &LicenseUsageAirgappedRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15685,16 +16915,16 @@ func TestRuleInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleDeleteRequestJSON(t *testing.T) { +func TestLicenseUsageAirgappedResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleDeleteRequest(popr, true) + p := NewPopulatedLicenseUsageAirgappedResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleDeleteRequest{} + msg := &LicenseUsageAirgappedResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15703,16 +16933,16 @@ func TestRuleDeleteRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleDeleteResponseJSON(t *testing.T) { +func TestManagedClusterEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleDeleteResponse(popr, true) + p := NewPopulatedManagedClusterEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleDeleteResponse{} + msg := &ManagedClusterEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15721,16 +16951,16 @@ func TestRuleDeleteResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleOwnershipUpdateRequestJSON(t *testing.T) { +func TestManagedClusterEnumerateRequest_AWSConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleOwnershipUpdateRequest(popr, true) + p := NewPopulatedManagedClusterEnumerateRequest_AWSConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleOwnershipUpdateRequest{} + msg := &ManagedClusterEnumerateRequest_AWSConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15739,16 +16969,16 @@ func TestRuleOwnershipUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestRuleOwnershipUpdateResponseJSON(t *testing.T) { +func TestManagedClusterEnumerateRequest_GoogleConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleOwnershipUpdateResponse(popr, true) + p := NewPopulatedManagedClusterEnumerateRequest_GoogleConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RuleOwnershipUpdateResponse{} + msg := &ManagedClusterEnumerateRequest_GoogleConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15757,16 +16987,16 @@ func TestRuleOwnershipUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestVersionInfoJSON(t *testing.T) { +func TestManagedClusterEnumerateRequest_AzureConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedVersionInfo(popr, true) + p := NewPopulatedManagedClusterEnumerateRequest_AzureConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &VersionInfo{} + msg := &ManagedClusterEnumerateRequest_AzureConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15775,16 +17005,16 @@ func TestVersionInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestVersionGetRequestJSON(t *testing.T) { +func TestManagedClusterObjectJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedVersionGetRequest(popr, true) + p := NewPopulatedManagedClusterObject(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &VersionGetRequest{} + msg := &ManagedClusterObject{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15793,16 +17023,16 @@ func TestVersionGetRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestVersionGetResponseJSON(t *testing.T) { +func TestManagedClusterEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedVersionGetResponse(popr, true) + p := NewPopulatedManagedClusterEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &VersionGetResponse{} + msg := &ManagedClusterEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15811,16 +17041,16 @@ func TestVersionGetResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseActivateRequestJSON(t *testing.T) { +func TestManagedClusterEnumerateResponse_AWSConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseActivateRequest(popr, true) + p := NewPopulatedManagedClusterEnumerateResponse_AWSConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseActivateRequest{} + msg := &ManagedClusterEnumerateResponse_AWSConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15829,16 +17059,16 @@ func TestLicenseActivateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseActivateResponseJSON(t *testing.T) { +func TestManagedClusterEnumerateResponse_GoogleConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseActivateResponse(popr, true) + p := NewPopulatedManagedClusterEnumerateResponse_GoogleConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseActivateResponse{} + msg := &ManagedClusterEnumerateResponse_GoogleConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15847,16 +17077,16 @@ func TestLicenseActivateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseUpdateRequestJSON(t *testing.T) { +func TestManagedClusterEnumerateResponse_AzureConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUpdateRequest(popr, true) + p := NewPopulatedManagedClusterEnumerateResponse_AzureConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUpdateRequest{} + msg := &ManagedClusterEnumerateResponse_AzureConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15865,16 +17095,16 @@ func TestLicenseUpdateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseUpdateResponseJSON(t *testing.T) { +func TestManagedClusterInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUpdateResponse(popr, true) + p := NewPopulatedManagedClusterInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUpdateResponse{} + msg := &ManagedClusterInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15883,16 +17113,16 @@ func TestLicenseUpdateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseInspectRequestJSON(t *testing.T) { +func TestManagedClusterInspectRequest_AWSConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseInspectRequest(popr, true) + p := NewPopulatedManagedClusterInspectRequest_AWSConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseInspectRequest{} + msg := &ManagedClusterInspectRequest_AWSConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15901,16 +17131,16 @@ func TestLicenseInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseInspectResponseJSON(t *testing.T) { +func TestManagedClusterInspectRequest_GoogleConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseInspectResponse(popr, true) + p := NewPopulatedManagedClusterInspectRequest_GoogleConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseInspectResponse{} + msg := &ManagedClusterInspectRequest_GoogleConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15919,16 +17149,16 @@ func TestLicenseInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseResponseInfoJSON(t *testing.T) { +func TestManagedClusterInspectRequest_AzureConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo(popr, true) + p := NewPopulatedManagedClusterInspectRequest_AzureConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo{} + msg := &ManagedClusterInspectRequest_AzureConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15937,16 +17167,16 @@ func TestLicenseResponseInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseResponseInfo_FeatureInfoJSON(t *testing.T) { +func TestManagedClusterInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo_FeatureInfo(popr, true) + p := NewPopulatedManagedClusterInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo_FeatureInfo{} + msg := &ManagedClusterInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15955,16 +17185,16 @@ func TestLicenseResponseInfo_FeatureInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseResponseInfo_EntitlementInfoJSON(t *testing.T) { +func TestManagedClusterBulkAddRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo_EntitlementInfo(popr, true) + p := NewPopulatedManagedClusterBulkAddRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo_EntitlementInfo{} + msg := &ManagedClusterBulkAddRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15973,16 +17203,16 @@ func TestLicenseResponseInfo_EntitlementInfoJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseResponseInfo_StatusJSON(t *testing.T) { +func TestManagedClusterBulkAddRequest_AWSConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseResponseInfo_Status(popr, true) + p := NewPopulatedManagedClusterBulkAddRequest_AWSConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseResponseInfo_Status{} + msg := &ManagedClusterBulkAddRequest_AWSConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -15991,16 +17221,16 @@ func TestLicenseResponseInfo_StatusJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseUsageAirgappedObjectJSON(t *testing.T) { +func TestManagedClusterBulkAddRequest_GoogleConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUsageAirgappedObject(popr, true) + p := NewPopulatedManagedClusterBulkAddRequest_GoogleConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUsageAirgappedObject{} + msg := &ManagedClusterBulkAddRequest_GoogleConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16009,16 +17239,16 @@ func TestLicenseUsageAirgappedObjectJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseUsageAirgappedRequestJSON(t *testing.T) { +func TestManagedClusterBulkAddRequest_AzureConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUsageAirgappedRequest(popr, true) + p := NewPopulatedManagedClusterBulkAddRequest_AzureConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUsageAirgappedRequest{} + msg := &ManagedClusterBulkAddRequest_AzureConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16027,16 +17257,16 @@ func TestLicenseUsageAirgappedRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestLicenseUsageAirgappedResponseJSON(t *testing.T) { +func TestManagedClusterBulkAddResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedLicenseUsageAirgappedResponse(popr, true) + p := NewPopulatedManagedClusterBulkAddResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &LicenseUsageAirgappedResponse{} + msg := &ManagedClusterBulkAddResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16045,16 +17275,16 @@ func TestLicenseUsageAirgappedResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterEnumerateRequestJSON(t *testing.T) { +func TestActivityEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest(popr, true) + p := NewPopulatedActivityEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest{} + msg := &ActivityEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16063,16 +17293,16 @@ func TestManagedClusterEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterEnumerateRequest_AWSConfigJSON(t *testing.T) { +func TestActivityEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest_AWSConfig(popr, true) + p := NewPopulatedActivityEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest_AWSConfig{} + msg := &ActivityEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16081,16 +17311,16 @@ func TestManagedClusterEnumerateRequest_AWSConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterEnumerateRequest_GoogleConfigJSON(t *testing.T) { +func TestActivityEnumerateResponse_DataJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest_GoogleConfig(popr, true) + p := NewPopulatedActivityEnumerateResponse_Data(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest_GoogleConfig{} + msg := &ActivityEnumerateResponse_Data{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16099,16 +17329,16 @@ func TestManagedClusterEnumerateRequest_GoogleConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterEnumerateRequest_AzureConfigJSON(t *testing.T) { +func TestRoleObjectJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateRequest_AzureConfig(popr, true) + p := NewPopulatedRoleObject(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateRequest_AzureConfig{} + msg := &RoleObject{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16117,16 +17347,16 @@ func TestManagedClusterEnumerateRequest_AzureConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterObjectJSON(t *testing.T) { +func TestRoleConfigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterObject(popr, true) + p := NewPopulatedRoleConfig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterObject{} + msg := &RoleConfig{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16135,16 +17365,16 @@ func TestManagedClusterObjectJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterEnumerateResponseJSON(t *testing.T) { +func TestRoleCreateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse(popr, true) + p := NewPopulatedRoleCreateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse{} + msg := &RoleCreateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16153,16 +17383,16 @@ func TestManagedClusterEnumerateResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterEnumerateResponse_AWSConfigJSON(t *testing.T) { +func TestRoleCreateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse_AWSConfig(popr, true) + p := NewPopulatedRoleCreateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse_AWSConfig{} + msg := &RoleCreateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16171,16 +17401,16 @@ func TestManagedClusterEnumerateResponse_AWSConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterEnumerateResponse_GoogleConfigJSON(t *testing.T) { +func TestRoleUpdateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse_GoogleConfig(popr, true) + p := NewPopulatedRoleUpdateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse_GoogleConfig{} + msg := &RoleUpdateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16189,16 +17419,16 @@ func TestManagedClusterEnumerateResponse_GoogleConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterEnumerateResponse_AzureConfigJSON(t *testing.T) { +func TestRoleUpdateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterEnumerateResponse_AzureConfig(popr, true) + p := NewPopulatedRoleUpdateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterEnumerateResponse_AzureConfig{} + msg := &RoleUpdateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16207,16 +17437,16 @@ func TestManagedClusterEnumerateResponse_AzureConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterInspectRequestJSON(t *testing.T) { +func TestRoleEnumerateRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest(popr, true) + p := NewPopulatedRoleEnumerateRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest{} + msg := &RoleEnumerateRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16225,16 +17455,16 @@ func TestManagedClusterInspectRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterInspectRequest_AWSConfigJSON(t *testing.T) { +func TestRoleEnumerateResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest_AWSConfig(popr, true) + p := NewPopulatedRoleEnumerateResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest_AWSConfig{} + msg := &RoleEnumerateResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16243,16 +17473,16 @@ func TestManagedClusterInspectRequest_AWSConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterInspectRequest_GoogleConfigJSON(t *testing.T) { +func TestRoleInspectRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest_GoogleConfig(popr, true) + p := NewPopulatedRoleInspectRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest_GoogleConfig{} + msg := &RoleInspectRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16261,16 +17491,16 @@ func TestManagedClusterInspectRequest_GoogleConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterInspectRequest_AzureConfigJSON(t *testing.T) { +func TestRoleInspectResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectRequest_AzureConfig(popr, true) + p := NewPopulatedRoleInspectResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectRequest_AzureConfig{} + msg := &RoleInspectResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16279,16 +17509,16 @@ func TestManagedClusterInspectRequest_AzureConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterInspectResponseJSON(t *testing.T) { +func TestRoleDeleteRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterInspectResponse(popr, true) + p := NewPopulatedRoleDeleteRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterInspectResponse{} + msg := &RoleDeleteRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16297,16 +17527,16 @@ func TestManagedClusterInspectResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterBulkAddRequestJSON(t *testing.T) { +func TestRoleDeleteResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest(popr, true) + p := NewPopulatedRoleDeleteResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest{} + msg := &RoleDeleteResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16315,16 +17545,16 @@ func TestManagedClusterBulkAddRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterBulkAddRequest_AWSConfigJSON(t *testing.T) { +func TestRolePermissionRequestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest_AWSConfig(popr, true) + p := NewPopulatedRolePermissionRequest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest_AWSConfig{} + msg := &RolePermissionRequest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16333,16 +17563,16 @@ func TestManagedClusterBulkAddRequest_AWSConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterBulkAddRequest_GoogleConfigJSON(t *testing.T) { +func TestRolePermissionResponseJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest_GoogleConfig(popr, true) + p := NewPopulatedRolePermissionResponse(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest_GoogleConfig{} + msg := &RolePermissionResponse{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16351,16 +17581,16 @@ func TestManagedClusterBulkAddRequest_GoogleConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterBulkAddRequest_AzureConfigJSON(t *testing.T) { +func TestPermissionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddRequest_AzureConfig(popr, true) + p := NewPopulatedPermission(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddRequest_AzureConfig{} + msg := &Permission{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16369,16 +17599,16 @@ func TestManagedClusterBulkAddRequest_AzureConfigJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestManagedClusterBulkAddResponseJSON(t *testing.T) { +func TestActivityDataObjectJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedManagedClusterBulkAddResponse(popr, true) + p := NewPopulatedActivityDataObject(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ManagedClusterBulkAddResponse{} + msg := &ActivityDataObject{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16387,16 +17617,16 @@ func TestManagedClusterBulkAddResponseJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestActivityEnumerateRequestJSON(t *testing.T) { +func TestActivityDataObject_OpcycleJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityEnumerateRequest(popr, true) + p := NewPopulatedActivityDataObject_Opcycle(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityEnumerateRequest{} + msg := &ActivityDataObject_Opcycle{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) @@ -16405,354 +17635,348 @@ func TestActivityEnumerateRequestJSON(t *testing.T) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } -func TestActivityEnumerateResponseJSON(t *testing.T) { +func TestOrganizationObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityEnumerateResponse(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { + p := NewPopulatedOrganizationObject(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &OrganizationObject{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityEnumerateResponse{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestOrganizationObjectProtoCompactText(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedOrganizationObject(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &OrganizationObject{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestActivityEnumerateResponse_DataJSON(t *testing.T) { + +func TestClusterInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityEnumerateResponse_Data(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { + p := NewPopulatedClusterInfo(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &ClusterInfo{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &ActivityEnumerateResponse_Data{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestClusterInfoProtoCompactText(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedClusterInfo(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &ClusterInfo{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleObjectJSON(t *testing.T) { + +func TestClusterInfo_StatusInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleObject(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { + p := NewPopulatedClusterInfo_StatusInfo(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &ClusterInfo_StatusInfo{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleObject{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestClusterInfo_StatusInfoProtoCompactText(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedClusterInfo_StatusInfo(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &ClusterInfo_StatusInfo{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleConfigJSON(t *testing.T) { + +func TestClusterInfo_BackupShareStatusInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleConfig(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { + p := NewPopulatedClusterInfo_BackupShareStatusInfo(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &ClusterInfo_BackupShareStatusInfo{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } - msg := &RoleConfig{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestClusterInfo_BackupShareStatusInfoProtoCompactText(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedClusterInfo_BackupShareStatusInfo(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &ClusterInfo_BackupShareStatusInfo{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + if !p.Equal(msg) { + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) + } +} + +func TestClusterObjectProtoText(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedClusterObject(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &ClusterObject{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleCreateRequestJSON(t *testing.T) { + +func TestClusterObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleCreateRequest(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RoleCreateRequest{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedClusterObject(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &ClusterObject{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleCreateResponseJSON(t *testing.T) { + +func TestPXConfigProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleCreateResponse(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RoleCreateResponse{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedPXConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &PXConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleUpdateRequestJSON(t *testing.T) { + +func TestPXConfigProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleUpdateRequest(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RoleUpdateRequest{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedPXConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &PXConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleUpdateResponseJSON(t *testing.T) { + +func TestAWSConfigProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleUpdateResponse(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RoleUpdateResponse{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedAWSConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &AWSConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleEnumerateRequestJSON(t *testing.T) { + +func TestAWSConfigProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleEnumerateRequest(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RoleEnumerateRequest{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedAWSConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &AWSConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleEnumerateResponseJSON(t *testing.T) { + +func TestIBMConfigProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleEnumerateResponse(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RoleEnumerateResponse{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedIBMConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &IBMConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleInspectRequestJSON(t *testing.T) { + +func TestIBMConfigProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleInspectRequest(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RoleInspectRequest{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedIBMConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &IBMConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleInspectResponseJSON(t *testing.T) { + +func TestRancherConfigProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleInspectResponse(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RoleInspectResponse{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedRancherConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &RancherConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleDeleteRequestJSON(t *testing.T) { + +func TestRancherConfigProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleDeleteRequest(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RoleDeleteRequest{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedRancherConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &RancherConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRoleDeleteResponseJSON(t *testing.T) { + +func TestS3ConfigProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRoleDeleteResponse(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RoleDeleteResponse{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedS3Config(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &S3Config{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRolePermissionRequestJSON(t *testing.T) { + +func TestS3ConfigProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRolePermissionRequest(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RolePermissionRequest{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedS3Config(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &S3Config{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestRolePermissionResponseJSON(t *testing.T) { + +func TestAzureConfigProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRolePermissionResponse(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &RolePermissionResponse{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedAzureConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &AzureConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestPermissionJSON(t *testing.T) { + +func TestAzureConfigProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedPermission(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &Permission{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedAzureConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &AzureConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestActivityDataObjectJSON(t *testing.T) { + +func TestGoogleConfigProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityDataObject(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &ActivityDataObject{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedGoogleConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) + msg := &GoogleConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestActivityDataObject_OpcycleJSON(t *testing.T) { + +func TestGoogleConfigProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedActivityDataObject_Opcycle(popr, true) - marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} - jsondata, err := marshaler.MarshalToString(p) - if err != nil { - t.Fatalf("seed = %d, err = %v", seed, err) - } - msg := &ActivityDataObject_Opcycle{} - err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) - if err != nil { + p := NewPopulatedGoogleConfig(popr, true) + dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) + msg := &GoogleConfig{} + if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { - t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) + t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } -func TestOrganizationObjectProtoText(t *testing.T) { + +func TestCloudCredentialInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationObject(popr, true) + p := NewPopulatedCloudCredentialInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &OrganizationObject{} + msg := &CloudCredentialInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16761,12 +17985,12 @@ func TestOrganizationObjectProtoText(t *testing.T) { } } -func TestOrganizationObjectProtoCompactText(t *testing.T) { +func TestCloudCredentialInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedOrganizationObject(popr, true) + p := NewPopulatedCloudCredentialInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &OrganizationObject{} + msg := &CloudCredentialInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16775,12 +17999,12 @@ func TestOrganizationObjectProtoCompactText(t *testing.T) { } } -func TestClusterInfoProtoText(t *testing.T) { +func TestCloudCredentialObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInfo(popr, true) + p := NewPopulatedCloudCredentialObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterInfo{} + msg := &CloudCredentialObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16789,12 +18013,12 @@ func TestClusterInfoProtoText(t *testing.T) { } } -func TestClusterInfoProtoCompactText(t *testing.T) { +func TestCloudCredentialObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInfo(popr, true) + p := NewPopulatedCloudCredentialObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterInfo{} + msg := &CloudCredentialObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16803,12 +18027,12 @@ func TestClusterInfoProtoCompactText(t *testing.T) { } } -func TestClusterInfo_StatusInfoProtoText(t *testing.T) { +func TestSchedulePolicyInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInfo_StatusInfo(popr, true) + p := NewPopulatedSchedulePolicyInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterInfo_StatusInfo{} + msg := &SchedulePolicyInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16817,12 +18041,12 @@ func TestClusterInfo_StatusInfoProtoText(t *testing.T) { } } -func TestClusterInfo_StatusInfoProtoCompactText(t *testing.T) { +func TestSchedulePolicyInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInfo_StatusInfo(popr, true) + p := NewPopulatedSchedulePolicyInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterInfo_StatusInfo{} + msg := &SchedulePolicyInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16831,12 +18055,12 @@ func TestClusterInfo_StatusInfoProtoCompactText(t *testing.T) { } } -func TestClusterInfo_BackupShareStatusInfoProtoText(t *testing.T) { +func TestSchedulePolicyInfo_IncrementalCountProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInfo_BackupShareStatusInfo(popr, true) + p := NewPopulatedSchedulePolicyInfo_IncrementalCount(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterInfo_BackupShareStatusInfo{} + msg := &SchedulePolicyInfo_IncrementalCount{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16845,12 +18069,12 @@ func TestClusterInfo_BackupShareStatusInfoProtoText(t *testing.T) { } } -func TestClusterInfo_BackupShareStatusInfoProtoCompactText(t *testing.T) { +func TestSchedulePolicyInfo_IncrementalCountProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInfo_BackupShareStatusInfo(popr, true) + p := NewPopulatedSchedulePolicyInfo_IncrementalCount(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterInfo_BackupShareStatusInfo{} + msg := &SchedulePolicyInfo_IncrementalCount{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16859,12 +18083,12 @@ func TestClusterInfo_BackupShareStatusInfoProtoCompactText(t *testing.T) { } } -func TestClusterObjectProtoText(t *testing.T) { +func TestSchedulePolicyInfo_IntervalPolicyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterObject(popr, true) + p := NewPopulatedSchedulePolicyInfo_IntervalPolicy(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterObject{} + msg := &SchedulePolicyInfo_IntervalPolicy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16873,12 +18097,12 @@ func TestClusterObjectProtoText(t *testing.T) { } } -func TestClusterObjectProtoCompactText(t *testing.T) { +func TestSchedulePolicyInfo_IntervalPolicyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterObject(popr, true) + p := NewPopulatedSchedulePolicyInfo_IntervalPolicy(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterObject{} + msg := &SchedulePolicyInfo_IntervalPolicy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16887,12 +18111,12 @@ func TestClusterObjectProtoCompactText(t *testing.T) { } } -func TestPXConfigProtoText(t *testing.T) { +func TestSchedulePolicyInfo_DailyPolicyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedPXConfig(popr, true) + p := NewPopulatedSchedulePolicyInfo_DailyPolicy(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &PXConfig{} + msg := &SchedulePolicyInfo_DailyPolicy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16901,12 +18125,12 @@ func TestPXConfigProtoText(t *testing.T) { } } -func TestPXConfigProtoCompactText(t *testing.T) { +func TestSchedulePolicyInfo_DailyPolicyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedPXConfig(popr, true) + p := NewPopulatedSchedulePolicyInfo_DailyPolicy(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &PXConfig{} + msg := &SchedulePolicyInfo_DailyPolicy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16915,12 +18139,12 @@ func TestPXConfigProtoCompactText(t *testing.T) { } } -func TestAWSConfigProtoText(t *testing.T) { +func TestSchedulePolicyInfo_WeeklyPolicyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedAWSConfig(popr, true) + p := NewPopulatedSchedulePolicyInfo_WeeklyPolicy(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &AWSConfig{} + msg := &SchedulePolicyInfo_WeeklyPolicy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16929,12 +18153,12 @@ func TestAWSConfigProtoText(t *testing.T) { } } -func TestAWSConfigProtoCompactText(t *testing.T) { +func TestSchedulePolicyInfo_WeeklyPolicyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedAWSConfig(popr, true) + p := NewPopulatedSchedulePolicyInfo_WeeklyPolicy(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &AWSConfig{} + msg := &SchedulePolicyInfo_WeeklyPolicy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16943,12 +18167,12 @@ func TestAWSConfigProtoCompactText(t *testing.T) { } } -func TestIBMConfigProtoText(t *testing.T) { +func TestSchedulePolicyInfo_MonthlyPolicyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedIBMConfig(popr, true) + p := NewPopulatedSchedulePolicyInfo_MonthlyPolicy(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &IBMConfig{} + msg := &SchedulePolicyInfo_MonthlyPolicy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16957,12 +18181,12 @@ func TestIBMConfigProtoText(t *testing.T) { } } -func TestIBMConfigProtoCompactText(t *testing.T) { +func TestSchedulePolicyInfo_MonthlyPolicyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedIBMConfig(popr, true) + p := NewPopulatedSchedulePolicyInfo_MonthlyPolicy(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &IBMConfig{} + msg := &SchedulePolicyInfo_MonthlyPolicy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16971,12 +18195,12 @@ func TestIBMConfigProtoCompactText(t *testing.T) { } } -func TestRancherConfigProtoText(t *testing.T) { +func TestSchedulePolicyObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRancherConfig(popr, true) + p := NewPopulatedSchedulePolicyObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RancherConfig{} + msg := &SchedulePolicyObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16985,12 +18209,12 @@ func TestRancherConfigProtoText(t *testing.T) { } } -func TestRancherConfigProtoCompactText(t *testing.T) { +func TestSchedulePolicyObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRancherConfig(popr, true) + p := NewPopulatedSchedulePolicyObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RancherConfig{} + msg := &SchedulePolicyObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -16999,12 +18223,12 @@ func TestRancherConfigProtoCompactText(t *testing.T) { } } -func TestS3ConfigProtoText(t *testing.T) { +func TestBackupScheduleInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedS3Config(popr, true) + p := NewPopulatedBackupScheduleInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &S3Config{} + msg := &BackupScheduleInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17013,12 +18237,12 @@ func TestS3ConfigProtoText(t *testing.T) { } } -func TestS3ConfigProtoCompactText(t *testing.T) { +func TestBackupScheduleInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedS3Config(popr, true) + p := NewPopulatedBackupScheduleInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &S3Config{} + msg := &BackupScheduleInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17027,12 +18251,12 @@ func TestS3ConfigProtoCompactText(t *testing.T) { } } -func TestAzureConfigProtoText(t *testing.T) { +func TestBackupScheduleInfo_BackupTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedAzureConfig(popr, true) + p := NewPopulatedBackupScheduleInfo_BackupType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &AzureConfig{} + msg := &BackupScheduleInfo_BackupType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17041,12 +18265,12 @@ func TestAzureConfigProtoText(t *testing.T) { } } -func TestAzureConfigProtoCompactText(t *testing.T) { +func TestBackupScheduleInfo_BackupTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedAzureConfig(popr, true) + p := NewPopulatedBackupScheduleInfo_BackupType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &AzureConfig{} + msg := &BackupScheduleInfo_BackupType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17055,12 +18279,12 @@ func TestAzureConfigProtoCompactText(t *testing.T) { } } -func TestGoogleConfigProtoText(t *testing.T) { +func TestBackupScheduleInfo_SuspendedByProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedGoogleConfig(popr, true) + p := NewPopulatedBackupScheduleInfo_SuspendedBy(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &GoogleConfig{} + msg := &BackupScheduleInfo_SuspendedBy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17069,12 +18293,12 @@ func TestGoogleConfigProtoText(t *testing.T) { } } -func TestGoogleConfigProtoCompactText(t *testing.T) { +func TestBackupScheduleInfo_SuspendedByProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedGoogleConfig(popr, true) + p := NewPopulatedBackupScheduleInfo_SuspendedBy(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &GoogleConfig{} + msg := &BackupScheduleInfo_SuspendedBy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17083,12 +18307,12 @@ func TestGoogleConfigProtoCompactText(t *testing.T) { } } -func TestCloudCredentialInfoProtoText(t *testing.T) { +func TestBackupScheduleInfo_StatusInfoListProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialInfo(popr, true) + p := NewPopulatedBackupScheduleInfo_StatusInfoList(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialInfo{} + msg := &BackupScheduleInfo_StatusInfoList{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17097,12 +18321,12 @@ func TestCloudCredentialInfoProtoText(t *testing.T) { } } -func TestCloudCredentialInfoProtoCompactText(t *testing.T) { +func TestBackupScheduleInfo_StatusInfoListProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialInfo(popr, true) + p := NewPopulatedBackupScheduleInfo_StatusInfoList(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialInfo{} + msg := &BackupScheduleInfo_StatusInfoList{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17111,12 +18335,12 @@ func TestCloudCredentialInfoProtoCompactText(t *testing.T) { } } -func TestCloudCredentialObjectProtoText(t *testing.T) { +func TestBackupScheduleInfo_StatusInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialObject(popr, true) + p := NewPopulatedBackupScheduleInfo_StatusInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialObject{} + msg := &BackupScheduleInfo_StatusInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17125,12 +18349,12 @@ func TestCloudCredentialObjectProtoText(t *testing.T) { } } -func TestCloudCredentialObjectProtoCompactText(t *testing.T) { +func TestBackupScheduleInfo_StatusInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialObject(popr, true) + p := NewPopulatedBackupScheduleInfo_StatusInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialObject{} + msg := &BackupScheduleInfo_StatusInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17139,12 +18363,12 @@ func TestCloudCredentialObjectProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyInfoProtoText(t *testing.T) { +func TestBackupScheduleObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo(popr, true) + p := NewPopulatedBackupScheduleObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyInfo{} + msg := &BackupScheduleObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17153,12 +18377,12 @@ func TestSchedulePolicyInfoProtoText(t *testing.T) { } } -func TestSchedulePolicyInfoProtoCompactText(t *testing.T) { +func TestBackupScheduleObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo(popr, true) + p := NewPopulatedBackupScheduleObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyInfo{} + msg := &BackupScheduleObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17167,12 +18391,12 @@ func TestSchedulePolicyInfoProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyInfo_IncrementalCountProtoText(t *testing.T) { +func TestNFSConfigProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_IncrementalCount(popr, true) + p := NewPopulatedNFSConfig(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyInfo_IncrementalCount{} + msg := &NFSConfig{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17181,12 +18405,12 @@ func TestSchedulePolicyInfo_IncrementalCountProtoText(t *testing.T) { } } -func TestSchedulePolicyInfo_IncrementalCountProtoCompactText(t *testing.T) { +func TestNFSConfigProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_IncrementalCount(popr, true) + p := NewPopulatedNFSConfig(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyInfo_IncrementalCount{} + msg := &NFSConfig{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17195,12 +18419,12 @@ func TestSchedulePolicyInfo_IncrementalCountProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyInfo_IntervalPolicyProtoText(t *testing.T) { +func TestBackupLocationInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_IntervalPolicy(popr, true) + p := NewPopulatedBackupLocationInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyInfo_IntervalPolicy{} + msg := &BackupLocationInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17209,12 +18433,12 @@ func TestSchedulePolicyInfo_IntervalPolicyProtoText(t *testing.T) { } } -func TestSchedulePolicyInfo_IntervalPolicyProtoCompactText(t *testing.T) { +func TestBackupLocationInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_IntervalPolicy(popr, true) + p := NewPopulatedBackupLocationInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyInfo_IntervalPolicy{} + msg := &BackupLocationInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17223,12 +18447,12 @@ func TestSchedulePolicyInfo_IntervalPolicyProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyInfo_DailyPolicyProtoText(t *testing.T) { +func TestBackupLocationInfo_StatusInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_DailyPolicy(popr, true) + p := NewPopulatedBackupLocationInfo_StatusInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyInfo_DailyPolicy{} + msg := &BackupLocationInfo_StatusInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17237,12 +18461,12 @@ func TestSchedulePolicyInfo_DailyPolicyProtoText(t *testing.T) { } } -func TestSchedulePolicyInfo_DailyPolicyProtoCompactText(t *testing.T) { +func TestBackupLocationInfo_StatusInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_DailyPolicy(popr, true) + p := NewPopulatedBackupLocationInfo_StatusInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyInfo_DailyPolicy{} + msg := &BackupLocationInfo_StatusInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17251,12 +18475,12 @@ func TestSchedulePolicyInfo_DailyPolicyProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyInfo_WeeklyPolicyProtoText(t *testing.T) { +func TestBackupLocationObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_WeeklyPolicy(popr, true) + p := NewPopulatedBackupLocationObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyInfo_WeeklyPolicy{} + msg := &BackupLocationObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17265,12 +18489,12 @@ func TestSchedulePolicyInfo_WeeklyPolicyProtoText(t *testing.T) { } } -func TestSchedulePolicyInfo_WeeklyPolicyProtoCompactText(t *testing.T) { +func TestBackupLocationObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_WeeklyPolicy(popr, true) + p := NewPopulatedBackupLocationObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyInfo_WeeklyPolicy{} + msg := &BackupLocationObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17279,12 +18503,12 @@ func TestSchedulePolicyInfo_WeeklyPolicyProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyInfo_MonthlyPolicyProtoText(t *testing.T) { +func TestResourceInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_MonthlyPolicy(popr, true) + p := NewPopulatedResourceInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyInfo_MonthlyPolicy{} + msg := &ResourceInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17293,12 +18517,12 @@ func TestSchedulePolicyInfo_MonthlyPolicyProtoText(t *testing.T) { } } -func TestSchedulePolicyInfo_MonthlyPolicyProtoCompactText(t *testing.T) { +func TestResourceInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInfo_MonthlyPolicy(popr, true) + p := NewPopulatedResourceInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyInfo_MonthlyPolicy{} + msg := &ResourceInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17307,12 +18531,12 @@ func TestSchedulePolicyInfo_MonthlyPolicyProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyObjectProtoText(t *testing.T) { +func TestBackupInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyObject(popr, true) + p := NewPopulatedBackupInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyObject{} + msg := &BackupInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17321,12 +18545,12 @@ func TestSchedulePolicyObjectProtoText(t *testing.T) { } } -func TestSchedulePolicyObjectProtoCompactText(t *testing.T) { +func TestBackupInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyObject(popr, true) + p := NewPopulatedBackupInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyObject{} + msg := &BackupInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17335,12 +18559,12 @@ func TestSchedulePolicyObjectProtoCompactText(t *testing.T) { } } -func TestBackupScheduleInfoProtoText(t *testing.T) { +func TestBackupInfo_BackupTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo(popr, true) + p := NewPopulatedBackupInfo_BackupType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleInfo{} + msg := &BackupInfo_BackupType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17349,12 +18573,12 @@ func TestBackupScheduleInfoProtoText(t *testing.T) { } } -func TestBackupScheduleInfoProtoCompactText(t *testing.T) { +func TestBackupInfo_BackupTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo(popr, true) + p := NewPopulatedBackupInfo_BackupType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleInfo{} + msg := &BackupInfo_BackupType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17363,12 +18587,12 @@ func TestBackupScheduleInfoProtoCompactText(t *testing.T) { } } -func TestBackupScheduleInfo_BackupTypeProtoText(t *testing.T) { +func TestBackupInfo_BackupScheduleProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_BackupType(popr, true) + p := NewPopulatedBackupInfo_BackupSchedule(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleInfo_BackupType{} + msg := &BackupInfo_BackupSchedule{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17377,12 +18601,12 @@ func TestBackupScheduleInfo_BackupTypeProtoText(t *testing.T) { } } -func TestBackupScheduleInfo_BackupTypeProtoCompactText(t *testing.T) { +func TestBackupInfo_BackupScheduleProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_BackupType(popr, true) + p := NewPopulatedBackupInfo_BackupSchedule(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleInfo_BackupType{} + msg := &BackupInfo_BackupSchedule{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17391,12 +18615,12 @@ func TestBackupScheduleInfo_BackupTypeProtoCompactText(t *testing.T) { } } -func TestBackupScheduleInfo_SuspendedByProtoText(t *testing.T) { +func TestBackupInfo_VolumeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_SuspendedBy(popr, true) + p := NewPopulatedBackupInfo_Volume(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleInfo_SuspendedBy{} + msg := &BackupInfo_Volume{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17405,12 +18629,12 @@ func TestBackupScheduleInfo_SuspendedByProtoText(t *testing.T) { } } -func TestBackupScheduleInfo_SuspendedByProtoCompactText(t *testing.T) { +func TestBackupInfo_VolumeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_SuspendedBy(popr, true) + p := NewPopulatedBackupInfo_Volume(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleInfo_SuspendedBy{} + msg := &BackupInfo_Volume{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17419,12 +18643,12 @@ func TestBackupScheduleInfo_SuspendedByProtoCompactText(t *testing.T) { } } -func TestBackupScheduleInfo_StatusInfoListProtoText(t *testing.T) { +func TestBackupInfo_StatusInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_StatusInfoList(popr, true) + p := NewPopulatedBackupInfo_StatusInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleInfo_StatusInfoList{} + msg := &BackupInfo_StatusInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17433,12 +18657,12 @@ func TestBackupScheduleInfo_StatusInfoListProtoText(t *testing.T) { } } -func TestBackupScheduleInfo_StatusInfoListProtoCompactText(t *testing.T) { +func TestBackupInfo_StatusInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_StatusInfoList(popr, true) + p := NewPopulatedBackupInfo_StatusInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleInfo_StatusInfoList{} + msg := &BackupInfo_StatusInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17447,12 +18671,12 @@ func TestBackupScheduleInfo_StatusInfoListProtoCompactText(t *testing.T) { } } -func TestBackupScheduleInfo_StatusInfoProtoText(t *testing.T) { +func TestBackupObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_StatusInfo(popr, true) + p := NewPopulatedBackupObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleInfo_StatusInfo{} + msg := &BackupObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17461,12 +18685,12 @@ func TestBackupScheduleInfo_StatusInfoProtoText(t *testing.T) { } } -func TestBackupScheduleInfo_StatusInfoProtoCompactText(t *testing.T) { +func TestBackupObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInfo_StatusInfo(popr, true) + p := NewPopulatedBackupObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleInfo_StatusInfo{} + msg := &BackupObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17475,12 +18699,12 @@ func TestBackupScheduleInfo_StatusInfoProtoCompactText(t *testing.T) { } } -func TestBackupScheduleObjectProtoText(t *testing.T) { +func TestRulesInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleObject(popr, true) + p := NewPopulatedRulesInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleObject{} + msg := &RulesInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17489,12 +18713,12 @@ func TestBackupScheduleObjectProtoText(t *testing.T) { } } -func TestBackupScheduleObjectProtoCompactText(t *testing.T) { +func TestRulesInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleObject(popr, true) + p := NewPopulatedRulesInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleObject{} + msg := &RulesInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17503,12 +18727,12 @@ func TestBackupScheduleObjectProtoCompactText(t *testing.T) { } } -func TestNFSConfigProtoText(t *testing.T) { +func TestRulesInfo_RuleItemProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedNFSConfig(popr, true) + p := NewPopulatedRulesInfo_RuleItem(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &NFSConfig{} + msg := &RulesInfo_RuleItem{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17517,12 +18741,12 @@ func TestNFSConfigProtoText(t *testing.T) { } } -func TestNFSConfigProtoCompactText(t *testing.T) { +func TestRulesInfo_RuleItemProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedNFSConfig(popr, true) + p := NewPopulatedRulesInfo_RuleItem(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &NFSConfig{} + msg := &RulesInfo_RuleItem{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17531,12 +18755,12 @@ func TestNFSConfigProtoCompactText(t *testing.T) { } } -func TestBackupLocationInfoProtoText(t *testing.T) { +func TestRulesInfo_ActionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInfo(popr, true) + p := NewPopulatedRulesInfo_Action(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupLocationInfo{} + msg := &RulesInfo_Action{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17545,12 +18769,12 @@ func TestBackupLocationInfoProtoText(t *testing.T) { } } -func TestBackupLocationInfoProtoCompactText(t *testing.T) { +func TestRulesInfo_ActionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInfo(popr, true) + p := NewPopulatedRulesInfo_Action(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupLocationInfo{} + msg := &RulesInfo_Action{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17559,12 +18783,12 @@ func TestBackupLocationInfoProtoCompactText(t *testing.T) { } } -func TestBackupLocationInfo_StatusInfoProtoText(t *testing.T) { +func TestRuleObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInfo_StatusInfo(popr, true) + p := NewPopulatedRuleObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupLocationInfo_StatusInfo{} + msg := &RuleObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17573,12 +18797,12 @@ func TestBackupLocationInfo_StatusInfoProtoText(t *testing.T) { } } -func TestBackupLocationInfo_StatusInfoProtoCompactText(t *testing.T) { +func TestRuleObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationInfo_StatusInfo(popr, true) + p := NewPopulatedRuleObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupLocationInfo_StatusInfo{} + msg := &RuleObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17587,12 +18811,12 @@ func TestBackupLocationInfo_StatusInfoProtoCompactText(t *testing.T) { } } -func TestBackupLocationObjectProtoText(t *testing.T) { +func TestReplacePolicyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationObject(popr, true) + p := NewPopulatedReplacePolicy(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupLocationObject{} + msg := &ReplacePolicy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17601,12 +18825,12 @@ func TestBackupLocationObjectProtoText(t *testing.T) { } } -func TestBackupLocationObjectProtoCompactText(t *testing.T) { +func TestReplacePolicyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupLocationObject(popr, true) + p := NewPopulatedReplacePolicy(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupLocationObject{} + msg := &ReplacePolicy{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17615,12 +18839,12 @@ func TestBackupLocationObjectProtoCompactText(t *testing.T) { } } -func TestResourceInfoProtoText(t *testing.T) { +func TestRestoreInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedResourceInfo(popr, true) + p := NewPopulatedRestoreInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ResourceInfo{} + msg := &RestoreInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17629,12 +18853,12 @@ func TestResourceInfoProtoText(t *testing.T) { } } -func TestResourceInfoProtoCompactText(t *testing.T) { +func TestRestoreInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedResourceInfo(popr, true) + p := NewPopulatedRestoreInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ResourceInfo{} + msg := &RestoreInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17643,12 +18867,12 @@ func TestResourceInfoProtoCompactText(t *testing.T) { } } -func TestBackupInfoProtoText(t *testing.T) { +func TestRestoreInfo_RestoreResourceStateProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo(popr, true) + p := NewPopulatedRestoreInfo_RestoreResourceState(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupInfo{} + msg := &RestoreInfo_RestoreResourceState{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17657,12 +18881,12 @@ func TestBackupInfoProtoText(t *testing.T) { } } -func TestBackupInfoProtoCompactText(t *testing.T) { +func TestRestoreInfo_RestoreResourceStateProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo(popr, true) + p := NewPopulatedRestoreInfo_RestoreResourceState(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupInfo{} + msg := &RestoreInfo_RestoreResourceState{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17671,12 +18895,12 @@ func TestBackupInfoProtoCompactText(t *testing.T) { } } -func TestBackupInfo_BackupTypeProtoText(t *testing.T) { +func TestRestoreInfo_RestoredResourceProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_BackupType(popr, true) + p := NewPopulatedRestoreInfo_RestoredResource(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupInfo_BackupType{} + msg := &RestoreInfo_RestoredResource{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17685,12 +18909,12 @@ func TestBackupInfo_BackupTypeProtoText(t *testing.T) { } } -func TestBackupInfo_BackupTypeProtoCompactText(t *testing.T) { +func TestRestoreInfo_RestoredResourceProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_BackupType(popr, true) + p := NewPopulatedRestoreInfo_RestoredResource(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupInfo_BackupType{} + msg := &RestoreInfo_RestoredResource{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17699,12 +18923,12 @@ func TestBackupInfo_BackupTypeProtoCompactText(t *testing.T) { } } -func TestBackupInfo_BackupScheduleProtoText(t *testing.T) { +func TestRestoreInfo_VolumeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_BackupSchedule(popr, true) + p := NewPopulatedRestoreInfo_Volume(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupInfo_BackupSchedule{} + msg := &RestoreInfo_Volume{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17713,12 +18937,12 @@ func TestBackupInfo_BackupScheduleProtoText(t *testing.T) { } } -func TestBackupInfo_BackupScheduleProtoCompactText(t *testing.T) { +func TestRestoreInfo_VolumeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_BackupSchedule(popr, true) + p := NewPopulatedRestoreInfo_Volume(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupInfo_BackupSchedule{} + msg := &RestoreInfo_Volume{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17727,12 +18951,12 @@ func TestBackupInfo_BackupScheduleProtoCompactText(t *testing.T) { } } -func TestBackupInfo_VolumeProtoText(t *testing.T) { +func TestRestoreInfo_StatusInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_Volume(popr, true) + p := NewPopulatedRestoreInfo_StatusInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupInfo_Volume{} + msg := &RestoreInfo_StatusInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17741,12 +18965,12 @@ func TestBackupInfo_VolumeProtoText(t *testing.T) { } } -func TestBackupInfo_VolumeProtoCompactText(t *testing.T) { +func TestRestoreInfo_StatusInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_Volume(popr, true) + p := NewPopulatedRestoreInfo_StatusInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupInfo_Volume{} + msg := &RestoreInfo_StatusInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17755,12 +18979,12 @@ func TestBackupInfo_VolumeProtoCompactText(t *testing.T) { } } -func TestBackupInfo_StatusInfoProtoText(t *testing.T) { +func TestRestoreObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_StatusInfo(popr, true) + p := NewPopulatedRestoreObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupInfo_StatusInfo{} + msg := &RestoreObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17769,12 +18993,12 @@ func TestBackupInfo_StatusInfoProtoText(t *testing.T) { } } -func TestBackupInfo_StatusInfoProtoCompactText(t *testing.T) { +func TestRestoreObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupInfo_StatusInfo(popr, true) + p := NewPopulatedRestoreObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupInfo_StatusInfo{} + msg := &RestoreObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17783,12 +19007,12 @@ func TestBackupInfo_StatusInfoProtoCompactText(t *testing.T) { } } -func TestBackupObjectProtoText(t *testing.T) { +func TestHealthStatusRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupObject(popr, true) + p := NewPopulatedHealthStatusRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupObject{} + msg := &HealthStatusRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17797,12 +19021,12 @@ func TestBackupObjectProtoText(t *testing.T) { } } -func TestBackupObjectProtoCompactText(t *testing.T) { +func TestHealthStatusRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupObject(popr, true) + p := NewPopulatedHealthStatusRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupObject{} + msg := &HealthStatusRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17811,12 +19035,12 @@ func TestBackupObjectProtoCompactText(t *testing.T) { } } -func TestRulesInfoProtoText(t *testing.T) { +func TestHealthStatusResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRulesInfo(popr, true) + p := NewPopulatedHealthStatusResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RulesInfo{} + msg := &HealthStatusResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17825,12 +19049,12 @@ func TestRulesInfoProtoText(t *testing.T) { } } -func TestRulesInfoProtoCompactText(t *testing.T) { +func TestHealthStatusResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRulesInfo(popr, true) + p := NewPopulatedHealthStatusResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RulesInfo{} + msg := &HealthStatusResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17839,12 +19063,12 @@ func TestRulesInfoProtoCompactText(t *testing.T) { } } -func TestRulesInfo_RuleItemProtoText(t *testing.T) { +func TestTimeRangeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRulesInfo_RuleItem(popr, true) + p := NewPopulatedTimeRange(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RulesInfo_RuleItem{} + msg := &TimeRange{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17853,12 +19077,12 @@ func TestRulesInfo_RuleItemProtoText(t *testing.T) { } } -func TestRulesInfo_RuleItemProtoCompactText(t *testing.T) { +func TestTimeRangeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRulesInfo_RuleItem(popr, true) + p := NewPopulatedTimeRange(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RulesInfo_RuleItem{} + msg := &TimeRange{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17867,12 +19091,12 @@ func TestRulesInfo_RuleItemProtoCompactText(t *testing.T) { } } -func TestRulesInfo_ActionProtoText(t *testing.T) { +func TestEnumerateOptionsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRulesInfo_Action(popr, true) + p := NewPopulatedEnumerateOptions(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RulesInfo_Action{} + msg := &EnumerateOptions{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17881,12 +19105,12 @@ func TestRulesInfo_ActionProtoText(t *testing.T) { } } -func TestRulesInfo_ActionProtoCompactText(t *testing.T) { +func TestEnumerateOptionsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRulesInfo_Action(popr, true) + p := NewPopulatedEnumerateOptions(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RulesInfo_Action{} + msg := &EnumerateOptions{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17895,12 +19119,12 @@ func TestRulesInfo_ActionProtoCompactText(t *testing.T) { } } -func TestRuleObjectProtoText(t *testing.T) { +func TestSchedulePolicyCreateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleObject(popr, true) + p := NewPopulatedSchedulePolicyCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RuleObject{} + msg := &SchedulePolicyCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17909,12 +19133,12 @@ func TestRuleObjectProtoText(t *testing.T) { } } -func TestRuleObjectProtoCompactText(t *testing.T) { +func TestSchedulePolicyCreateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRuleObject(popr, true) + p := NewPopulatedSchedulePolicyCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RuleObject{} + msg := &SchedulePolicyCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17923,12 +19147,12 @@ func TestRuleObjectProtoCompactText(t *testing.T) { } } -func TestReplacePolicyProtoText(t *testing.T) { +func TestSchedulePolicyCreateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReplacePolicy(popr, true) + p := NewPopulatedSchedulePolicyCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReplacePolicy{} + msg := &SchedulePolicyCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17937,12 +19161,12 @@ func TestReplacePolicyProtoText(t *testing.T) { } } -func TestReplacePolicyProtoCompactText(t *testing.T) { +func TestSchedulePolicyCreateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReplacePolicy(popr, true) + p := NewPopulatedSchedulePolicyCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReplacePolicy{} + msg := &SchedulePolicyCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17951,12 +19175,12 @@ func TestReplacePolicyProtoCompactText(t *testing.T) { } } -func TestRestoreInfoProtoText(t *testing.T) { +func TestSchedulePolicyUpdateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo(popr, true) + p := NewPopulatedSchedulePolicyUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RestoreInfo{} + msg := &SchedulePolicyUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17965,12 +19189,12 @@ func TestRestoreInfoProtoText(t *testing.T) { } } -func TestRestoreInfoProtoCompactText(t *testing.T) { +func TestSchedulePolicyUpdateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo(popr, true) + p := NewPopulatedSchedulePolicyUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RestoreInfo{} + msg := &SchedulePolicyUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17979,12 +19203,12 @@ func TestRestoreInfoProtoCompactText(t *testing.T) { } } -func TestRestoreInfo_RestoreResourceStateProtoText(t *testing.T) { +func TestSchedulePolicyUpdateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_RestoreResourceState(popr, true) + p := NewPopulatedSchedulePolicyUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RestoreInfo_RestoreResourceState{} + msg := &SchedulePolicyUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -17993,12 +19217,12 @@ func TestRestoreInfo_RestoreResourceStateProtoText(t *testing.T) { } } -func TestRestoreInfo_RestoreResourceStateProtoCompactText(t *testing.T) { +func TestSchedulePolicyUpdateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_RestoreResourceState(popr, true) + p := NewPopulatedSchedulePolicyUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RestoreInfo_RestoreResourceState{} + msg := &SchedulePolicyUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18007,12 +19231,12 @@ func TestRestoreInfo_RestoreResourceStateProtoCompactText(t *testing.T) { } } -func TestRestoreInfo_RestoredResourceProtoText(t *testing.T) { +func TestSchedulePolicyEnumerateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_RestoredResource(popr, true) + p := NewPopulatedSchedulePolicyEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RestoreInfo_RestoredResource{} + msg := &SchedulePolicyEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18021,12 +19245,12 @@ func TestRestoreInfo_RestoredResourceProtoText(t *testing.T) { } } -func TestRestoreInfo_RestoredResourceProtoCompactText(t *testing.T) { +func TestSchedulePolicyEnumerateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_RestoredResource(popr, true) + p := NewPopulatedSchedulePolicyEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RestoreInfo_RestoredResource{} + msg := &SchedulePolicyEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18035,12 +19259,12 @@ func TestRestoreInfo_RestoredResourceProtoCompactText(t *testing.T) { } } -func TestRestoreInfo_VolumeProtoText(t *testing.T) { +func TestSchedulePolicyEnumerateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_Volume(popr, true) + p := NewPopulatedSchedulePolicyEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RestoreInfo_Volume{} + msg := &SchedulePolicyEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18049,12 +19273,12 @@ func TestRestoreInfo_VolumeProtoText(t *testing.T) { } } -func TestRestoreInfo_VolumeProtoCompactText(t *testing.T) { +func TestSchedulePolicyEnumerateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_Volume(popr, true) + p := NewPopulatedSchedulePolicyEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RestoreInfo_Volume{} + msg := &SchedulePolicyEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18063,12 +19287,12 @@ func TestRestoreInfo_VolumeProtoCompactText(t *testing.T) { } } -func TestRestoreInfo_StatusInfoProtoText(t *testing.T) { +func TestSchedulePolicyInspectRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_StatusInfo(popr, true) + p := NewPopulatedSchedulePolicyInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RestoreInfo_StatusInfo{} + msg := &SchedulePolicyInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18077,12 +19301,12 @@ func TestRestoreInfo_StatusInfoProtoText(t *testing.T) { } } -func TestRestoreInfo_StatusInfoProtoCompactText(t *testing.T) { +func TestSchedulePolicyInspectRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreInfo_StatusInfo(popr, true) + p := NewPopulatedSchedulePolicyInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RestoreInfo_StatusInfo{} + msg := &SchedulePolicyInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18091,12 +19315,12 @@ func TestRestoreInfo_StatusInfoProtoCompactText(t *testing.T) { } } -func TestRestoreObjectProtoText(t *testing.T) { +func TestSchedulePolicyInspectResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreObject(popr, true) + p := NewPopulatedSchedulePolicyInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &RestoreObject{} + msg := &SchedulePolicyInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18105,12 +19329,12 @@ func TestRestoreObjectProtoText(t *testing.T) { } } -func TestRestoreObjectProtoCompactText(t *testing.T) { +func TestSchedulePolicyInspectResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedRestoreObject(popr, true) + p := NewPopulatedSchedulePolicyInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &RestoreObject{} + msg := &SchedulePolicyInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18119,12 +19343,12 @@ func TestRestoreObjectProtoCompactText(t *testing.T) { } } -func TestHealthStatusRequestProtoText(t *testing.T) { +func TestSchedulePolicyDeleteRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedHealthStatusRequest(popr, true) + p := NewPopulatedSchedulePolicyDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &HealthStatusRequest{} + msg := &SchedulePolicyDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18133,12 +19357,12 @@ func TestHealthStatusRequestProtoText(t *testing.T) { } } -func TestHealthStatusRequestProtoCompactText(t *testing.T) { +func TestSchedulePolicyDeleteRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedHealthStatusRequest(popr, true) + p := NewPopulatedSchedulePolicyDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &HealthStatusRequest{} + msg := &SchedulePolicyDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18147,12 +19371,12 @@ func TestHealthStatusRequestProtoCompactText(t *testing.T) { } } -func TestHealthStatusResponseProtoText(t *testing.T) { +func TestSchedulePolicyDeleteResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedHealthStatusResponse(popr, true) + p := NewPopulatedSchedulePolicyDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &HealthStatusResponse{} + msg := &SchedulePolicyDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18161,12 +19385,12 @@ func TestHealthStatusResponseProtoText(t *testing.T) { } } -func TestHealthStatusResponseProtoCompactText(t *testing.T) { +func TestSchedulePolicyDeleteResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedHealthStatusResponse(popr, true) + p := NewPopulatedSchedulePolicyDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &HealthStatusResponse{} + msg := &SchedulePolicyDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18175,12 +19399,12 @@ func TestHealthStatusResponseProtoCompactText(t *testing.T) { } } -func TestTimeRangeProtoText(t *testing.T) { +func TestSchedulePolicyOwnershipUpdateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedTimeRange(popr, true) + p := NewPopulatedSchedulePolicyOwnershipUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &TimeRange{} + msg := &SchedulePolicyOwnershipUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18189,12 +19413,12 @@ func TestTimeRangeProtoText(t *testing.T) { } } -func TestTimeRangeProtoCompactText(t *testing.T) { +func TestSchedulePolicyOwnershipUpdateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedTimeRange(popr, true) + p := NewPopulatedSchedulePolicyOwnershipUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &TimeRange{} + msg := &SchedulePolicyOwnershipUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18203,12 +19427,12 @@ func TestTimeRangeProtoCompactText(t *testing.T) { } } -func TestEnumerateOptionsProtoText(t *testing.T) { +func TestSchedulePolicyOwnershipUpdateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedEnumerateOptions(popr, true) + p := NewPopulatedSchedulePolicyOwnershipUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &EnumerateOptions{} + msg := &SchedulePolicyOwnershipUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18217,12 +19441,12 @@ func TestEnumerateOptionsProtoText(t *testing.T) { } } -func TestEnumerateOptionsProtoCompactText(t *testing.T) { +func TestSchedulePolicyOwnershipUpdateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedEnumerateOptions(popr, true) + p := NewPopulatedSchedulePolicyOwnershipUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &EnumerateOptions{} + msg := &SchedulePolicyOwnershipUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18231,12 +19455,12 @@ func TestEnumerateOptionsProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyCreateRequestProtoText(t *testing.T) { +func TestBackupScheduleCreateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyCreateRequest(popr, true) + p := NewPopulatedBackupScheduleCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyCreateRequest{} + msg := &BackupScheduleCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18245,12 +19469,12 @@ func TestSchedulePolicyCreateRequestProtoText(t *testing.T) { } } -func TestSchedulePolicyCreateRequestProtoCompactText(t *testing.T) { +func TestBackupScheduleCreateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyCreateRequest(popr, true) + p := NewPopulatedBackupScheduleCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyCreateRequest{} + msg := &BackupScheduleCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18259,12 +19483,12 @@ func TestSchedulePolicyCreateRequestProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyCreateResponseProtoText(t *testing.T) { +func TestBackupScheduleCreateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyCreateResponse(popr, true) + p := NewPopulatedBackupScheduleCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyCreateResponse{} + msg := &BackupScheduleCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18273,12 +19497,12 @@ func TestSchedulePolicyCreateResponseProtoText(t *testing.T) { } } -func TestSchedulePolicyCreateResponseProtoCompactText(t *testing.T) { +func TestBackupScheduleCreateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyCreateResponse(popr, true) + p := NewPopulatedBackupScheduleCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyCreateResponse{} + msg := &BackupScheduleCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18287,12 +19511,12 @@ func TestSchedulePolicyCreateResponseProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyUpdateRequestProtoText(t *testing.T) { +func TestBackupScheduleUpdateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyUpdateRequest(popr, true) + p := NewPopulatedBackupScheduleUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyUpdateRequest{} + msg := &BackupScheduleUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18301,12 +19525,12 @@ func TestSchedulePolicyUpdateRequestProtoText(t *testing.T) { } } -func TestSchedulePolicyUpdateRequestProtoCompactText(t *testing.T) { +func TestBackupScheduleUpdateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyUpdateRequest(popr, true) + p := NewPopulatedBackupScheduleUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyUpdateRequest{} + msg := &BackupScheduleUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18315,12 +19539,12 @@ func TestSchedulePolicyUpdateRequestProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyUpdateResponseProtoText(t *testing.T) { +func TestBackupScheduleUpdateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyUpdateResponse(popr, true) + p := NewPopulatedBackupScheduleUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyUpdateResponse{} + msg := &BackupScheduleUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18329,12 +19553,12 @@ func TestSchedulePolicyUpdateResponseProtoText(t *testing.T) { } } -func TestSchedulePolicyUpdateResponseProtoCompactText(t *testing.T) { +func TestBackupScheduleUpdateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyUpdateResponse(popr, true) + p := NewPopulatedBackupScheduleUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyUpdateResponse{} + msg := &BackupScheduleUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18343,12 +19567,12 @@ func TestSchedulePolicyUpdateResponseProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyEnumerateRequestProtoText(t *testing.T) { +func TestBackupScheduleEnumerateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyEnumerateRequest(popr, true) + p := NewPopulatedBackupScheduleEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyEnumerateRequest{} + msg := &BackupScheduleEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18357,12 +19581,12 @@ func TestSchedulePolicyEnumerateRequestProtoText(t *testing.T) { } } -func TestSchedulePolicyEnumerateRequestProtoCompactText(t *testing.T) { +func TestBackupScheduleEnumerateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyEnumerateRequest(popr, true) + p := NewPopulatedBackupScheduleEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyEnumerateRequest{} + msg := &BackupScheduleEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18371,12 +19595,12 @@ func TestSchedulePolicyEnumerateRequestProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyEnumerateResponseProtoText(t *testing.T) { +func TestBackupScheduleEnumerateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyEnumerateResponse(popr, true) + p := NewPopulatedBackupScheduleEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyEnumerateResponse{} + msg := &BackupScheduleEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18385,12 +19609,12 @@ func TestSchedulePolicyEnumerateResponseProtoText(t *testing.T) { } } -func TestSchedulePolicyEnumerateResponseProtoCompactText(t *testing.T) { +func TestBackupScheduleEnumerateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyEnumerateResponse(popr, true) + p := NewPopulatedBackupScheduleEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyEnumerateResponse{} + msg := &BackupScheduleEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18399,12 +19623,12 @@ func TestSchedulePolicyEnumerateResponseProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyInspectRequestProtoText(t *testing.T) { +func TestBackupScheduleInspectRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInspectRequest(popr, true) + p := NewPopulatedBackupScheduleInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyInspectRequest{} + msg := &BackupScheduleInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18413,12 +19637,12 @@ func TestSchedulePolicyInspectRequestProtoText(t *testing.T) { } } -func TestSchedulePolicyInspectRequestProtoCompactText(t *testing.T) { +func TestBackupScheduleInspectRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInspectRequest(popr, true) + p := NewPopulatedBackupScheduleInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyInspectRequest{} + msg := &BackupScheduleInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18427,12 +19651,12 @@ func TestSchedulePolicyInspectRequestProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyInspectResponseProtoText(t *testing.T) { +func TestBackupScheduleInspectResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInspectResponse(popr, true) + p := NewPopulatedBackupScheduleInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyInspectResponse{} + msg := &BackupScheduleInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18441,12 +19665,12 @@ func TestSchedulePolicyInspectResponseProtoText(t *testing.T) { } } -func TestSchedulePolicyInspectResponseProtoCompactText(t *testing.T) { +func TestBackupScheduleInspectResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyInspectResponse(popr, true) + p := NewPopulatedBackupScheduleInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyInspectResponse{} + msg := &BackupScheduleInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18455,12 +19679,12 @@ func TestSchedulePolicyInspectResponseProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyDeleteRequestProtoText(t *testing.T) { +func TestBackupScheduleDeleteRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyDeleteRequest(popr, true) + p := NewPopulatedBackupScheduleDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyDeleteRequest{} + msg := &BackupScheduleDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18469,12 +19693,12 @@ func TestSchedulePolicyDeleteRequestProtoText(t *testing.T) { } } -func TestSchedulePolicyDeleteRequestProtoCompactText(t *testing.T) { +func TestBackupScheduleDeleteRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyDeleteRequest(popr, true) + p := NewPopulatedBackupScheduleDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyDeleteRequest{} + msg := &BackupScheduleDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18483,12 +19707,12 @@ func TestSchedulePolicyDeleteRequestProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyDeleteResponseProtoText(t *testing.T) { +func TestBackupScheduleDeleteResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyDeleteResponse(popr, true) + p := NewPopulatedBackupScheduleDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyDeleteResponse{} + msg := &BackupScheduleDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18497,12 +19721,12 @@ func TestSchedulePolicyDeleteResponseProtoText(t *testing.T) { } } -func TestSchedulePolicyDeleteResponseProtoCompactText(t *testing.T) { +func TestBackupScheduleDeleteResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyDeleteResponse(popr, true) + p := NewPopulatedBackupScheduleDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyDeleteResponse{} + msg := &BackupScheduleDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18511,12 +19735,12 @@ func TestSchedulePolicyDeleteResponseProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyOwnershipUpdateRequestProtoText(t *testing.T) { +func TestClusterBackupShareUpdateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyOwnershipUpdateRequest(popr, true) + p := NewPopulatedClusterBackupShareUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyOwnershipUpdateRequest{} + msg := &ClusterBackupShareUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18525,12 +19749,12 @@ func TestSchedulePolicyOwnershipUpdateRequestProtoText(t *testing.T) { } } -func TestSchedulePolicyOwnershipUpdateRequestProtoCompactText(t *testing.T) { +func TestClusterBackupShareUpdateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyOwnershipUpdateRequest(popr, true) + p := NewPopulatedClusterBackupShareUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyOwnershipUpdateRequest{} + msg := &ClusterBackupShareUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18539,12 +19763,12 @@ func TestSchedulePolicyOwnershipUpdateRequestProtoCompactText(t *testing.T) { } } -func TestSchedulePolicyOwnershipUpdateResponseProtoText(t *testing.T) { +func TestClusterBackupShareUpdateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyOwnershipUpdateResponse(popr, true) + p := NewPopulatedClusterBackupShareUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &SchedulePolicyOwnershipUpdateResponse{} + msg := &ClusterBackupShareUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18553,12 +19777,12 @@ func TestSchedulePolicyOwnershipUpdateResponseProtoText(t *testing.T) { } } -func TestSchedulePolicyOwnershipUpdateResponseProtoCompactText(t *testing.T) { +func TestClusterBackupShareUpdateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedSchedulePolicyOwnershipUpdateResponse(popr, true) + p := NewPopulatedClusterBackupShareUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &SchedulePolicyOwnershipUpdateResponse{} + msg := &ClusterBackupShareUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18567,12 +19791,12 @@ func TestSchedulePolicyOwnershipUpdateResponseProtoCompactText(t *testing.T) { } } -func TestBackupScheduleCreateRequestProtoText(t *testing.T) { +func TestClusterCreateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleCreateRequest(popr, true) + p := NewPopulatedClusterCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleCreateRequest{} + msg := &ClusterCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18581,12 +19805,12 @@ func TestBackupScheduleCreateRequestProtoText(t *testing.T) { } } -func TestBackupScheduleCreateRequestProtoCompactText(t *testing.T) { +func TestClusterCreateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleCreateRequest(popr, true) + p := NewPopulatedClusterCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleCreateRequest{} + msg := &ClusterCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18595,12 +19819,12 @@ func TestBackupScheduleCreateRequestProtoCompactText(t *testing.T) { } } -func TestBackupScheduleCreateResponseProtoText(t *testing.T) { +func TestClusterCreateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleCreateResponse(popr, true) + p := NewPopulatedClusterCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleCreateResponse{} + msg := &ClusterCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18609,12 +19833,12 @@ func TestBackupScheduleCreateResponseProtoText(t *testing.T) { } } -func TestBackupScheduleCreateResponseProtoCompactText(t *testing.T) { +func TestClusterCreateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleCreateResponse(popr, true) + p := NewPopulatedClusterCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleCreateResponse{} + msg := &ClusterCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18623,12 +19847,12 @@ func TestBackupScheduleCreateResponseProtoCompactText(t *testing.T) { } } -func TestBackupScheduleUpdateRequestProtoText(t *testing.T) { +func TestClusterUpdateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleUpdateRequest(popr, true) + p := NewPopulatedClusterUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleUpdateRequest{} + msg := &ClusterUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18637,12 +19861,12 @@ func TestBackupScheduleUpdateRequestProtoText(t *testing.T) { } } -func TestBackupScheduleUpdateRequestProtoCompactText(t *testing.T) { +func TestClusterUpdateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleUpdateRequest(popr, true) + p := NewPopulatedClusterUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleUpdateRequest{} + msg := &ClusterUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18651,12 +19875,12 @@ func TestBackupScheduleUpdateRequestProtoCompactText(t *testing.T) { } } -func TestBackupScheduleUpdateResponseProtoText(t *testing.T) { +func TestClusterUpdateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleUpdateResponse(popr, true) + p := NewPopulatedClusterUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleUpdateResponse{} + msg := &ClusterUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18665,12 +19889,12 @@ func TestBackupScheduleUpdateResponseProtoText(t *testing.T) { } } -func TestBackupScheduleUpdateResponseProtoCompactText(t *testing.T) { +func TestClusterUpdateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleUpdateResponse(popr, true) + p := NewPopulatedClusterUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleUpdateResponse{} + msg := &ClusterUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18679,12 +19903,12 @@ func TestBackupScheduleUpdateResponseProtoCompactText(t *testing.T) { } } -func TestBackupScheduleEnumerateRequestProtoText(t *testing.T) { +func TestClusterEnumerateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleEnumerateRequest(popr, true) + p := NewPopulatedClusterEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleEnumerateRequest{} + msg := &ClusterEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18693,12 +19917,12 @@ func TestBackupScheduleEnumerateRequestProtoText(t *testing.T) { } } -func TestBackupScheduleEnumerateRequestProtoCompactText(t *testing.T) { +func TestClusterEnumerateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleEnumerateRequest(popr, true) + p := NewPopulatedClusterEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleEnumerateRequest{} + msg := &ClusterEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18707,12 +19931,12 @@ func TestBackupScheduleEnumerateRequestProtoCompactText(t *testing.T) { } } -func TestBackupScheduleEnumerateResponseProtoText(t *testing.T) { +func TestClusterEnumerateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleEnumerateResponse(popr, true) + p := NewPopulatedClusterEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleEnumerateResponse{} + msg := &ClusterEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18721,12 +19945,12 @@ func TestBackupScheduleEnumerateResponseProtoText(t *testing.T) { } } -func TestBackupScheduleEnumerateResponseProtoCompactText(t *testing.T) { +func TestClusterEnumerateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleEnumerateResponse(popr, true) + p := NewPopulatedClusterEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleEnumerateResponse{} + msg := &ClusterEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18735,12 +19959,12 @@ func TestBackupScheduleEnumerateResponseProtoCompactText(t *testing.T) { } } -func TestBackupScheduleInspectRequestProtoText(t *testing.T) { +func TestClusterInspectRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInspectRequest(popr, true) + p := NewPopulatedClusterInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleInspectRequest{} + msg := &ClusterInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18749,12 +19973,12 @@ func TestBackupScheduleInspectRequestProtoText(t *testing.T) { } } -func TestBackupScheduleInspectRequestProtoCompactText(t *testing.T) { +func TestClusterInspectRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInspectRequest(popr, true) + p := NewPopulatedClusterInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleInspectRequest{} + msg := &ClusterInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18763,12 +19987,12 @@ func TestBackupScheduleInspectRequestProtoCompactText(t *testing.T) { } } -func TestBackupScheduleInspectResponseProtoText(t *testing.T) { +func TestClusterInspectResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInspectResponse(popr, true) + p := NewPopulatedClusterInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleInspectResponse{} + msg := &ClusterInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18777,12 +20001,12 @@ func TestBackupScheduleInspectResponseProtoText(t *testing.T) { } } -func TestBackupScheduleInspectResponseProtoCompactText(t *testing.T) { +func TestClusterInspectResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleInspectResponse(popr, true) + p := NewPopulatedClusterInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleInspectResponse{} + msg := &ClusterInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18791,12 +20015,12 @@ func TestBackupScheduleInspectResponseProtoCompactText(t *testing.T) { } } -func TestBackupScheduleDeleteRequestProtoText(t *testing.T) { +func TestClusterDeleteRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleDeleteRequest(popr, true) + p := NewPopulatedClusterDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleDeleteRequest{} + msg := &ClusterDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18805,12 +20029,12 @@ func TestBackupScheduleDeleteRequestProtoText(t *testing.T) { } } -func TestBackupScheduleDeleteRequestProtoCompactText(t *testing.T) { +func TestClusterDeleteRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleDeleteRequest(popr, true) + p := NewPopulatedClusterDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleDeleteRequest{} + msg := &ClusterDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18819,12 +20043,12 @@ func TestBackupScheduleDeleteRequestProtoCompactText(t *testing.T) { } } -func TestBackupScheduleDeleteResponseProtoText(t *testing.T) { +func TestClusterDeleteResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleDeleteResponse(popr, true) + p := NewPopulatedClusterDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &BackupScheduleDeleteResponse{} + msg := &ClusterDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18833,12 +20057,12 @@ func TestBackupScheduleDeleteResponseProtoText(t *testing.T) { } } -func TestBackupScheduleDeleteResponseProtoCompactText(t *testing.T) { +func TestClusterDeleteResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedBackupScheduleDeleteResponse(popr, true) + p := NewPopulatedClusterDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &BackupScheduleDeleteResponse{} + msg := &ClusterDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18847,12 +20071,12 @@ func TestBackupScheduleDeleteResponseProtoCompactText(t *testing.T) { } } -func TestClusterBackupShareUpdateRequestProtoText(t *testing.T) { +func TestCloudCredentialCreateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterBackupShareUpdateRequest(popr, true) + p := NewPopulatedCloudCredentialCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterBackupShareUpdateRequest{} + msg := &CloudCredentialCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18861,12 +20085,12 @@ func TestClusterBackupShareUpdateRequestProtoText(t *testing.T) { } } -func TestClusterBackupShareUpdateRequestProtoCompactText(t *testing.T) { +func TestCloudCredentialCreateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterBackupShareUpdateRequest(popr, true) + p := NewPopulatedCloudCredentialCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterBackupShareUpdateRequest{} + msg := &CloudCredentialCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18875,12 +20099,12 @@ func TestClusterBackupShareUpdateRequestProtoCompactText(t *testing.T) { } } -func TestClusterBackupShareUpdateResponseProtoText(t *testing.T) { +func TestCloudCredentialCreateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterBackupShareUpdateResponse(popr, true) + p := NewPopulatedCloudCredentialCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterBackupShareUpdateResponse{} + msg := &CloudCredentialCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18889,12 +20113,12 @@ func TestClusterBackupShareUpdateResponseProtoText(t *testing.T) { } } -func TestClusterBackupShareUpdateResponseProtoCompactText(t *testing.T) { +func TestCloudCredentialCreateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterBackupShareUpdateResponse(popr, true) + p := NewPopulatedCloudCredentialCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterBackupShareUpdateResponse{} + msg := &CloudCredentialCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18903,12 +20127,12 @@ func TestClusterBackupShareUpdateResponseProtoCompactText(t *testing.T) { } } -func TestClusterCreateRequestProtoText(t *testing.T) { +func TestCloudCredentialUpdateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterCreateRequest(popr, true) + p := NewPopulatedCloudCredentialUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterCreateRequest{} + msg := &CloudCredentialUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18917,12 +20141,12 @@ func TestClusterCreateRequestProtoText(t *testing.T) { } } -func TestClusterCreateRequestProtoCompactText(t *testing.T) { +func TestCloudCredentialUpdateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterCreateRequest(popr, true) + p := NewPopulatedCloudCredentialUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterCreateRequest{} + msg := &CloudCredentialUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18931,12 +20155,12 @@ func TestClusterCreateRequestProtoCompactText(t *testing.T) { } } -func TestClusterCreateResponseProtoText(t *testing.T) { +func TestCloudCredentialUpdateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterCreateResponse(popr, true) + p := NewPopulatedCloudCredentialUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterCreateResponse{} + msg := &CloudCredentialUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18945,12 +20169,12 @@ func TestClusterCreateResponseProtoText(t *testing.T) { } } -func TestClusterCreateResponseProtoCompactText(t *testing.T) { +func TestCloudCredentialUpdateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterCreateResponse(popr, true) + p := NewPopulatedCloudCredentialUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterCreateResponse{} + msg := &CloudCredentialUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18959,12 +20183,12 @@ func TestClusterCreateResponseProtoCompactText(t *testing.T) { } } -func TestClusterUpdateRequestProtoText(t *testing.T) { +func TestCloudCredentialEnumerateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterUpdateRequest(popr, true) + p := NewPopulatedCloudCredentialEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterUpdateRequest{} + msg := &CloudCredentialEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18973,12 +20197,12 @@ func TestClusterUpdateRequestProtoText(t *testing.T) { } } -func TestClusterUpdateRequestProtoCompactText(t *testing.T) { +func TestCloudCredentialEnumerateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterUpdateRequest(popr, true) + p := NewPopulatedCloudCredentialEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterUpdateRequest{} + msg := &CloudCredentialEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -18987,12 +20211,12 @@ func TestClusterUpdateRequestProtoCompactText(t *testing.T) { } } -func TestClusterUpdateResponseProtoText(t *testing.T) { +func TestCloudCredentialEnumerateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterUpdateResponse(popr, true) + p := NewPopulatedCloudCredentialEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterUpdateResponse{} + msg := &CloudCredentialEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19001,12 +20225,12 @@ func TestClusterUpdateResponseProtoText(t *testing.T) { } } -func TestClusterUpdateResponseProtoCompactText(t *testing.T) { +func TestCloudCredentialEnumerateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterUpdateResponse(popr, true) + p := NewPopulatedCloudCredentialEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterUpdateResponse{} + msg := &CloudCredentialEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19015,12 +20239,12 @@ func TestClusterUpdateResponseProtoCompactText(t *testing.T) { } } -func TestClusterEnumerateRequestProtoText(t *testing.T) { +func TestCloudCredentialInspectRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterEnumerateRequest(popr, true) + p := NewPopulatedCloudCredentialInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterEnumerateRequest{} + msg := &CloudCredentialInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19029,12 +20253,12 @@ func TestClusterEnumerateRequestProtoText(t *testing.T) { } } -func TestClusterEnumerateRequestProtoCompactText(t *testing.T) { +func TestCloudCredentialInspectRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterEnumerateRequest(popr, true) + p := NewPopulatedCloudCredentialInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterEnumerateRequest{} + msg := &CloudCredentialInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19043,12 +20267,12 @@ func TestClusterEnumerateRequestProtoCompactText(t *testing.T) { } } -func TestClusterEnumerateResponseProtoText(t *testing.T) { +func TestCloudCredentialInspectResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterEnumerateResponse(popr, true) + p := NewPopulatedCloudCredentialInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterEnumerateResponse{} + msg := &CloudCredentialInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19057,12 +20281,12 @@ func TestClusterEnumerateResponseProtoText(t *testing.T) { } } -func TestClusterEnumerateResponseProtoCompactText(t *testing.T) { +func TestCloudCredentialInspectResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterEnumerateResponse(popr, true) + p := NewPopulatedCloudCredentialInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterEnumerateResponse{} + msg := &CloudCredentialInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19071,12 +20295,12 @@ func TestClusterEnumerateResponseProtoCompactText(t *testing.T) { } } -func TestClusterInspectRequestProtoText(t *testing.T) { +func TestCloudCredentialDeleteRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInspectRequest(popr, true) + p := NewPopulatedCloudCredentialDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterInspectRequest{} + msg := &CloudCredentialDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19085,12 +20309,12 @@ func TestClusterInspectRequestProtoText(t *testing.T) { } } -func TestClusterInspectRequestProtoCompactText(t *testing.T) { +func TestCloudCredentialDeleteRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInspectRequest(popr, true) + p := NewPopulatedCloudCredentialDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterInspectRequest{} + msg := &CloudCredentialDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19099,12 +20323,12 @@ func TestClusterInspectRequestProtoCompactText(t *testing.T) { } } -func TestClusterInspectResponseProtoText(t *testing.T) { +func TestCloudCredentialDeleteResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInspectResponse(popr, true) + p := NewPopulatedCloudCredentialDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterInspectResponse{} + msg := &CloudCredentialDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19113,12 +20337,12 @@ func TestClusterInspectResponseProtoText(t *testing.T) { } } -func TestClusterInspectResponseProtoCompactText(t *testing.T) { +func TestCloudCredentialDeleteResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterInspectResponse(popr, true) + p := NewPopulatedCloudCredentialDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterInspectResponse{} + msg := &CloudCredentialDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19127,12 +20351,12 @@ func TestClusterInspectResponseProtoCompactText(t *testing.T) { } } -func TestClusterDeleteRequestProtoText(t *testing.T) { +func TestCloudCredentialOwnershipUpdateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterDeleteRequest(popr, true) + p := NewPopulatedCloudCredentialOwnershipUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterDeleteRequest{} + msg := &CloudCredentialOwnershipUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19141,12 +20365,12 @@ func TestClusterDeleteRequestProtoText(t *testing.T) { } } -func TestClusterDeleteRequestProtoCompactText(t *testing.T) { +func TestCloudCredentialOwnershipUpdateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterDeleteRequest(popr, true) + p := NewPopulatedCloudCredentialOwnershipUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterDeleteRequest{} + msg := &CloudCredentialOwnershipUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19155,12 +20379,12 @@ func TestClusterDeleteRequestProtoCompactText(t *testing.T) { } } -func TestClusterDeleteResponseProtoText(t *testing.T) { +func TestCloudCredentialOwnershipUpdateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterDeleteResponse(popr, true) + p := NewPopulatedCloudCredentialOwnershipUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ClusterDeleteResponse{} + msg := &CloudCredentialOwnershipUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19169,12 +20393,12 @@ func TestClusterDeleteResponseProtoText(t *testing.T) { } } -func TestClusterDeleteResponseProtoCompactText(t *testing.T) { +func TestCloudCredentialOwnershipUpdateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedClusterDeleteResponse(popr, true) + p := NewPopulatedCloudCredentialOwnershipUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ClusterDeleteResponse{} + msg := &CloudCredentialOwnershipUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19183,12 +20407,12 @@ func TestClusterDeleteResponseProtoCompactText(t *testing.T) { } } -func TestCloudCredentialCreateRequestProtoText(t *testing.T) { +func TestEmailConfigProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialCreateRequest(popr, true) + p := NewPopulatedEmailConfig(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialCreateRequest{} + msg := &EmailConfig{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19197,12 +20421,12 @@ func TestCloudCredentialCreateRequestProtoText(t *testing.T) { } } -func TestCloudCredentialCreateRequestProtoCompactText(t *testing.T) { +func TestEmailConfigProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialCreateRequest(popr, true) + p := NewPopulatedEmailConfig(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialCreateRequest{} + msg := &EmailConfig{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19211,12 +20435,12 @@ func TestCloudCredentialCreateRequestProtoCompactText(t *testing.T) { } } -func TestCloudCredentialCreateResponseProtoText(t *testing.T) { +func TestReceiverInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialCreateResponse(popr, true) + p := NewPopulatedReceiverInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialCreateResponse{} + msg := &ReceiverInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19225,12 +20449,12 @@ func TestCloudCredentialCreateResponseProtoText(t *testing.T) { } } -func TestCloudCredentialCreateResponseProtoCompactText(t *testing.T) { +func TestReceiverInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialCreateResponse(popr, true) + p := NewPopulatedReceiverInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialCreateResponse{} + msg := &ReceiverInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19239,12 +20463,12 @@ func TestCloudCredentialCreateResponseProtoCompactText(t *testing.T) { } } -func TestCloudCredentialUpdateRequestProtoText(t *testing.T) { +func TestReceiverObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialUpdateRequest(popr, true) + p := NewPopulatedReceiverObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialUpdateRequest{} + msg := &ReceiverObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19253,12 +20477,12 @@ func TestCloudCredentialUpdateRequestProtoText(t *testing.T) { } } -func TestCloudCredentialUpdateRequestProtoCompactText(t *testing.T) { +func TestReceiverObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialUpdateRequest(popr, true) + p := NewPopulatedReceiverObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialUpdateRequest{} + msg := &ReceiverObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19267,12 +20491,12 @@ func TestCloudCredentialUpdateRequestProtoCompactText(t *testing.T) { } } -func TestCloudCredentialUpdateResponseProtoText(t *testing.T) { +func TestReceiverCreateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialUpdateResponse(popr, true) + p := NewPopulatedReceiverCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialUpdateResponse{} + msg := &ReceiverCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19281,12 +20505,12 @@ func TestCloudCredentialUpdateResponseProtoText(t *testing.T) { } } -func TestCloudCredentialUpdateResponseProtoCompactText(t *testing.T) { +func TestReceiverCreateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialUpdateResponse(popr, true) + p := NewPopulatedReceiverCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialUpdateResponse{} + msg := &ReceiverCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19295,12 +20519,12 @@ func TestCloudCredentialUpdateResponseProtoCompactText(t *testing.T) { } } -func TestCloudCredentialEnumerateRequestProtoText(t *testing.T) { +func TestReceiverCreateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialEnumerateRequest(popr, true) + p := NewPopulatedReceiverCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialEnumerateRequest{} + msg := &ReceiverCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19309,12 +20533,12 @@ func TestCloudCredentialEnumerateRequestProtoText(t *testing.T) { } } -func TestCloudCredentialEnumerateRequestProtoCompactText(t *testing.T) { +func TestReceiverCreateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialEnumerateRequest(popr, true) + p := NewPopulatedReceiverCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialEnumerateRequest{} + msg := &ReceiverCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19323,12 +20547,12 @@ func TestCloudCredentialEnumerateRequestProtoCompactText(t *testing.T) { } } -func TestCloudCredentialEnumerateResponseProtoText(t *testing.T) { +func TestReceiverEnumerateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialEnumerateResponse(popr, true) + p := NewPopulatedReceiverEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialEnumerateResponse{} + msg := &ReceiverEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19337,12 +20561,12 @@ func TestCloudCredentialEnumerateResponseProtoText(t *testing.T) { } } -func TestCloudCredentialEnumerateResponseProtoCompactText(t *testing.T) { +func TestReceiverEnumerateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialEnumerateResponse(popr, true) + p := NewPopulatedReceiverEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialEnumerateResponse{} + msg := &ReceiverEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19351,12 +20575,12 @@ func TestCloudCredentialEnumerateResponseProtoCompactText(t *testing.T) { } } -func TestCloudCredentialInspectRequestProtoText(t *testing.T) { +func TestReceiverEnumerateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialInspectRequest(popr, true) + p := NewPopulatedReceiverEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialInspectRequest{} + msg := &ReceiverEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19365,12 +20589,12 @@ func TestCloudCredentialInspectRequestProtoText(t *testing.T) { } } -func TestCloudCredentialInspectRequestProtoCompactText(t *testing.T) { +func TestReceiverEnumerateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialInspectRequest(popr, true) + p := NewPopulatedReceiverEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialInspectRequest{} + msg := &ReceiverEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19379,12 +20603,12 @@ func TestCloudCredentialInspectRequestProtoCompactText(t *testing.T) { } } -func TestCloudCredentialInspectResponseProtoText(t *testing.T) { +func TestReceiverInspectRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialInspectResponse(popr, true) + p := NewPopulatedReceiverInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialInspectResponse{} + msg := &ReceiverInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19393,12 +20617,12 @@ func TestCloudCredentialInspectResponseProtoText(t *testing.T) { } } -func TestCloudCredentialInspectResponseProtoCompactText(t *testing.T) { +func TestReceiverInspectRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialInspectResponse(popr, true) + p := NewPopulatedReceiverInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialInspectResponse{} + msg := &ReceiverInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19407,12 +20631,12 @@ func TestCloudCredentialInspectResponseProtoCompactText(t *testing.T) { } } -func TestCloudCredentialDeleteRequestProtoText(t *testing.T) { +func TestReceiverInspectResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialDeleteRequest(popr, true) + p := NewPopulatedReceiverInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialDeleteRequest{} + msg := &ReceiverInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19421,12 +20645,12 @@ func TestCloudCredentialDeleteRequestProtoText(t *testing.T) { } } -func TestCloudCredentialDeleteRequestProtoCompactText(t *testing.T) { +func TestReceiverInspectResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialDeleteRequest(popr, true) + p := NewPopulatedReceiverInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialDeleteRequest{} + msg := &ReceiverInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19435,12 +20659,12 @@ func TestCloudCredentialDeleteRequestProtoCompactText(t *testing.T) { } } -func TestCloudCredentialDeleteResponseProtoText(t *testing.T) { +func TestReceiverUpdateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialDeleteResponse(popr, true) + p := NewPopulatedReceiverUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialDeleteResponse{} + msg := &ReceiverUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19449,12 +20673,12 @@ func TestCloudCredentialDeleteResponseProtoText(t *testing.T) { } } -func TestCloudCredentialDeleteResponseProtoCompactText(t *testing.T) { +func TestReceiverUpdateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialDeleteResponse(popr, true) + p := NewPopulatedReceiverUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialDeleteResponse{} + msg := &ReceiverUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19463,12 +20687,12 @@ func TestCloudCredentialDeleteResponseProtoCompactText(t *testing.T) { } } -func TestCloudCredentialOwnershipUpdateRequestProtoText(t *testing.T) { +func TestReceiverUpdateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialOwnershipUpdateRequest(popr, true) + p := NewPopulatedReceiverUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialOwnershipUpdateRequest{} + msg := &ReceiverUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19477,12 +20701,12 @@ func TestCloudCredentialOwnershipUpdateRequestProtoText(t *testing.T) { } } -func TestCloudCredentialOwnershipUpdateRequestProtoCompactText(t *testing.T) { +func TestReceiverUpdateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialOwnershipUpdateRequest(popr, true) + p := NewPopulatedReceiverUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialOwnershipUpdateRequest{} + msg := &ReceiverUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19491,12 +20715,12 @@ func TestCloudCredentialOwnershipUpdateRequestProtoCompactText(t *testing.T) { } } -func TestCloudCredentialOwnershipUpdateResponseProtoText(t *testing.T) { +func TestReceiverDeleteRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialOwnershipUpdateResponse(popr, true) + p := NewPopulatedReceiverDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &CloudCredentialOwnershipUpdateResponse{} + msg := &ReceiverDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19505,12 +20729,12 @@ func TestCloudCredentialOwnershipUpdateResponseProtoText(t *testing.T) { } } -func TestCloudCredentialOwnershipUpdateResponseProtoCompactText(t *testing.T) { +func TestReceiverDeleteRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedCloudCredentialOwnershipUpdateResponse(popr, true) + p := NewPopulatedReceiverDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &CloudCredentialOwnershipUpdateResponse{} + msg := &ReceiverDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19519,12 +20743,12 @@ func TestCloudCredentialOwnershipUpdateResponseProtoCompactText(t *testing.T) { } } -func TestEmailConfigProtoText(t *testing.T) { +func TestReceiverDeleteResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedEmailConfig(popr, true) + p := NewPopulatedReceiverDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &EmailConfig{} + msg := &ReceiverDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19533,12 +20757,12 @@ func TestEmailConfigProtoText(t *testing.T) { } } -func TestEmailConfigProtoCompactText(t *testing.T) { +func TestReceiverDeleteResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedEmailConfig(popr, true) + p := NewPopulatedReceiverDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &EmailConfig{} + msg := &ReceiverDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19547,12 +20771,12 @@ func TestEmailConfigProtoCompactText(t *testing.T) { } } -func TestReceiverInfoProtoText(t *testing.T) { +func TestRecipientObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverInfo(popr, true) + p := NewPopulatedRecipientObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverInfo{} + msg := &RecipientObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19561,12 +20785,12 @@ func TestReceiverInfoProtoText(t *testing.T) { } } -func TestReceiverInfoProtoCompactText(t *testing.T) { +func TestRecipientObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverInfo(popr, true) + p := NewPopulatedRecipientObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverInfo{} + msg := &RecipientObject{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19575,12 +20799,12 @@ func TestReceiverInfoProtoCompactText(t *testing.T) { } } -func TestReceiverObjectProtoText(t *testing.T) { +func TestRecipientInfoProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverObject(popr, true) + p := NewPopulatedRecipientInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverObject{} + msg := &RecipientInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19589,12 +20813,12 @@ func TestReceiverObjectProtoText(t *testing.T) { } } -func TestReceiverObjectProtoCompactText(t *testing.T) { +func TestRecipientInfoProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverObject(popr, true) + p := NewPopulatedRecipientInfo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverObject{} + msg := &RecipientInfo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19603,12 +20827,12 @@ func TestReceiverObjectProtoCompactText(t *testing.T) { } } -func TestReceiverCreateRequestProtoText(t *testing.T) { +func TestRecipientCreateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverCreateRequest(popr, true) + p := NewPopulatedRecipientCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverCreateRequest{} + msg := &RecipientCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19617,12 +20841,12 @@ func TestReceiverCreateRequestProtoText(t *testing.T) { } } -func TestReceiverCreateRequestProtoCompactText(t *testing.T) { +func TestRecipientCreateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverCreateRequest(popr, true) + p := NewPopulatedRecipientCreateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverCreateRequest{} + msg := &RecipientCreateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19631,12 +20855,12 @@ func TestReceiverCreateRequestProtoCompactText(t *testing.T) { } } -func TestReceiverCreateResponseProtoText(t *testing.T) { +func TestRecipientCreateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverCreateResponse(popr, true) + p := NewPopulatedRecipientCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverCreateResponse{} + msg := &RecipientCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19645,12 +20869,12 @@ func TestReceiverCreateResponseProtoText(t *testing.T) { } } -func TestReceiverCreateResponseProtoCompactText(t *testing.T) { +func TestRecipientCreateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverCreateResponse(popr, true) + p := NewPopulatedRecipientCreateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverCreateResponse{} + msg := &RecipientCreateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19659,12 +20883,12 @@ func TestReceiverCreateResponseProtoCompactText(t *testing.T) { } } -func TestReceiverEnumerateRequestProtoText(t *testing.T) { +func TestRecipientEnumerateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverEnumerateRequest(popr, true) + p := NewPopulatedRecipientEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverEnumerateRequest{} + msg := &RecipientEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19673,12 +20897,12 @@ func TestReceiverEnumerateRequestProtoText(t *testing.T) { } } -func TestReceiverEnumerateRequestProtoCompactText(t *testing.T) { +func TestRecipientEnumerateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverEnumerateRequest(popr, true) + p := NewPopulatedRecipientEnumerateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverEnumerateRequest{} + msg := &RecipientEnumerateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19687,12 +20911,12 @@ func TestReceiverEnumerateRequestProtoCompactText(t *testing.T) { } } -func TestReceiverEnumerateResponseProtoText(t *testing.T) { +func TestRecipientEnumerateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverEnumerateResponse(popr, true) + p := NewPopulatedRecipientEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverEnumerateResponse{} + msg := &RecipientEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19701,12 +20925,12 @@ func TestReceiverEnumerateResponseProtoText(t *testing.T) { } } -func TestReceiverEnumerateResponseProtoCompactText(t *testing.T) { +func TestRecipientEnumerateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverEnumerateResponse(popr, true) + p := NewPopulatedRecipientEnumerateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverEnumerateResponse{} + msg := &RecipientEnumerateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19715,12 +20939,12 @@ func TestReceiverEnumerateResponseProtoCompactText(t *testing.T) { } } -func TestReceiverInspectRequestProtoText(t *testing.T) { +func TestRecipientInspectRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverInspectRequest(popr, true) + p := NewPopulatedRecipientInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverInspectRequest{} + msg := &RecipientInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19729,12 +20953,12 @@ func TestReceiverInspectRequestProtoText(t *testing.T) { } } -func TestReceiverInspectRequestProtoCompactText(t *testing.T) { +func TestRecipientInspectRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverInspectRequest(popr, true) + p := NewPopulatedRecipientInspectRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverInspectRequest{} + msg := &RecipientInspectRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19743,12 +20967,12 @@ func TestReceiverInspectRequestProtoCompactText(t *testing.T) { } } -func TestReceiverInspectResponseProtoText(t *testing.T) { +func TestRecipientInspectResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverInspectResponse(popr, true) + p := NewPopulatedRecipientInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverInspectResponse{} + msg := &RecipientInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19757,12 +20981,12 @@ func TestReceiverInspectResponseProtoText(t *testing.T) { } } -func TestReceiverInspectResponseProtoCompactText(t *testing.T) { +func TestRecipientInspectResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverInspectResponse(popr, true) + p := NewPopulatedRecipientInspectResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverInspectResponse{} + msg := &RecipientInspectResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19771,12 +20995,12 @@ func TestReceiverInspectResponseProtoCompactText(t *testing.T) { } } -func TestReceiverUpdateRequestProtoText(t *testing.T) { +func TestRecipientUpdateRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverUpdateRequest(popr, true) + p := NewPopulatedRecipientUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverUpdateRequest{} + msg := &RecipientUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19785,12 +21009,12 @@ func TestReceiverUpdateRequestProtoText(t *testing.T) { } } -func TestReceiverUpdateRequestProtoCompactText(t *testing.T) { +func TestRecipientUpdateRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverUpdateRequest(popr, true) + p := NewPopulatedRecipientUpdateRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverUpdateRequest{} + msg := &RecipientUpdateRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19799,12 +21023,12 @@ func TestReceiverUpdateRequestProtoCompactText(t *testing.T) { } } -func TestReceiverUpdateResponseProtoText(t *testing.T) { +func TestRecipientUpdateResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverUpdateResponse(popr, true) + p := NewPopulatedRecipientUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverUpdateResponse{} + msg := &RecipientUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19813,12 +21037,12 @@ func TestReceiverUpdateResponseProtoText(t *testing.T) { } } -func TestReceiverUpdateResponseProtoCompactText(t *testing.T) { +func TestRecipientUpdateResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverUpdateResponse(popr, true) + p := NewPopulatedRecipientUpdateResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverUpdateResponse{} + msg := &RecipientUpdateResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19827,12 +21051,12 @@ func TestReceiverUpdateResponseProtoCompactText(t *testing.T) { } } -func TestReceiverDeleteRequestProtoText(t *testing.T) { +func TestRecipientDeleteRequestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverDeleteRequest(popr, true) + p := NewPopulatedRecipientDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverDeleteRequest{} + msg := &RecipientDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19841,12 +21065,12 @@ func TestReceiverDeleteRequestProtoText(t *testing.T) { } } -func TestReceiverDeleteRequestProtoCompactText(t *testing.T) { +func TestRecipientDeleteRequestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverDeleteRequest(popr, true) + p := NewPopulatedRecipientDeleteRequest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverDeleteRequest{} + msg := &RecipientDeleteRequest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19855,12 +21079,12 @@ func TestReceiverDeleteRequestProtoCompactText(t *testing.T) { } } -func TestReceiverDeleteResponseProtoText(t *testing.T) { +func TestRecipientDeleteResponseProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverDeleteResponse(popr, true) + p := NewPopulatedRecipientDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) - msg := &ReceiverDeleteResponse{} + msg := &RecipientDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -19869,12 +21093,12 @@ func TestReceiverDeleteResponseProtoText(t *testing.T) { } } -func TestReceiverDeleteResponseProtoCompactText(t *testing.T) { +func TestRecipientDeleteResponseProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) - p := NewPopulatedReceiverDeleteResponse(popr, true) + p := NewPopulatedRecipientDeleteResponse(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) - msg := &ReceiverDeleteResponse{} + msg := &RecipientDeleteResponse{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } @@ -25539,6 +26763,270 @@ func TestReceiverDeleteResponseSize(t *testing.T) { } } +func TestRecipientObjectSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientObject(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientInfoSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientInfo(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientCreateRequestSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientCreateRequest(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientCreateResponseSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientCreateResponse(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientEnumerateRequestSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientEnumerateRequest(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientEnumerateResponseSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientEnumerateResponse(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientInspectRequestSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientInspectRequest(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientInspectResponseSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientInspectResponse(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientUpdateRequestSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientUpdateRequest(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientUpdateResponseSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientUpdateResponse(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientDeleteRequestSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientDeleteRequest(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + +func TestRecipientDeleteResponseSize(t *testing.T) { + seed := time.Now().UnixNano() + popr := math_rand.New(math_rand.NewSource(seed)) + p := NewPopulatedRecipientDeleteResponse(popr, true) + size2 := github_com_gogo_protobuf_proto.Size(p) + dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) + if err != nil { + t.Fatalf("seed = %d, err = %v", seed, err) + } + size := p.Size() + if len(dAtA) != size { + t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) + } + if size2 != size { + t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) + } + size3 := github_com_gogo_protobuf_proto.Size(p) + if size3 != size { + t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) + } +} + func TestBackupLocationCreateRequestSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed))